/* Core resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Susanna's Homestay Theme - Warm & Rustic */
:root {
  --primary-color: #8B4513;
  --secondary-color: #D2691E;
  --accent-color: #CD853F;
  --warm-beige: #F5E6D3;
  --text-dark: #3E2723;
  --text-light: #6D4C41;
  --white: #ffffff;
  --light-bg: #FBF8F3;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(251,248,243,0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 20px rgba(62,39,35,0.1);
}

.logo a {
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,69,19,0.8), rgba(210,105,30,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-highlights span {
  background: rgba(245,230,211,0.9);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Quick Info */
.quick-info {
  padding: 5rem 0;
  background: var(--white);
}

.welcome-text {
  text-align: center;
  margin-bottom: 3rem;
}

.welcome-text h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.welcome-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--light-bg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139,69,19,0.1);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.info-item h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.info-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Features */
.features {
  padding: 5rem 0;
  background: var(--light-bg);
}

.features-content {
  max-width: 800px;
  margin: 0 auto;
}

.features-text h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(139,69,19,0.05);
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-details h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-details p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Gallery */
.gallery {
  padding: 5rem 0;
  background: var(--white);
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139,69,19,0.1);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-item.large img {
  height: 350px;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(62,39,35,0.9));
  color: var(--warm-beige);
  padding: 2rem 1rem 1rem;
  font-weight: 600;
}

/* What's Included */
.included {
  padding: 5rem 0;
  background: var(--light-bg);
}

.included h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.included-category {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(139,69,19,0.08);
}

.included-category h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.included-category ul {
  list-style: none;
}

.included-category li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.included-category li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Booking */
.booking {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.booking-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 600px;
  margin: 0 auto;
}

.booking-card h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.booking-card > p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.booking-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(139,69,19,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139,69,19,0.6);
  background: #A0522D;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.booking-note {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  font-style: italic;
}

/* Sticky Book button */
.book-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(205,133,63,0.6);
  z-index: 50;
  transition: all 0.3s;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(205,133,63,0.8);
  background: #DEB887;
}

/* Enhanced Footer with Map */
footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
  display: grid;
  gap: 3rem;
  margin-bottom: 2rem;
}

@media(min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3,
.map-section h3 {
  color: #ffb703;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #ff6b6b;
  text-decoration-thickness: 2px;
}

.contact-info p {
  margin: 0.6rem 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.contact-info p:first-of-type {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.contact-info a {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #ffb703;
  text-decoration: underline;
}

.contact-info a[href^="tel:"] {
  font-size: 1.2rem;
  color: #ffb703;
}

.contact-info a[href^="mailto:"] {
  font-size: 1.1rem;
  color: #4ecdc4;
}

/* Address Styling */
.address-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.address-section h4 {
  color: #ffb703;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

address {
  font-style: normal;
  line-height: 1.6;
  color: #ecf0f1;
  font-size: 0.95rem;
}

/* Map Section */
.map-section {
  display: flex;
  flex-direction: column;
}

.map-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  position: relative;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

.directions-link {
  display: block;
  background: #ff6b6b;
  color: white;
  text-align: center;
  padding: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.directions-link:hover {
  background: #e63946;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #bdc3c7;
}

.powered-by {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.powered-by strong {
  color: #ffb703;
}

.powered-by a {
  color: #bdc3c7;
  text-decoration: none;
}

.powered-by a:hover {
  text-decoration: underline;
  color: #4ecdc4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-container iframe {
    height: 250px;
  }
}

/* Susanna's Homestay Review Styling */
.reviews-section {
  background: var(--light-bg);
}

.reviews-section h2 {
  color: var(--text-dark);
}

.add-review-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.review-card {
  border-left: 4px solid var(--accent-color);
}

.review-card:hover {
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
}

.review-submit-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
