html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #2D5A27; /* Deep Forest Green */
  --primary-light: #4A7C43;
  --secondary-color: #D97706; /* Warm Amber/Terracotta */
  --bg-color: #FDFBF7; /* Creamy White */
  --surface-color: #FFFFFF;
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --text-light: #F9FAFB;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--primary-color);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography Helpers */
.display-text {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: center;
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  text-align: center;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
}

.text-center { text-align: center; }
.text-lead { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-xl) 0;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--surface-color);
  color: var(--surface-color);
}

.btn-outline:hover {
  background: var(--surface-color);
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 var(--spacing-sm);
  max-width: 900px;
}

.hero-tagline {
  font-size: 1.25rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  display: block;
  font-weight: 300;
}

/* Booking Widget */
.booking-widget {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) auto;
  gap: 1.5rem;
  align-items: end;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  padding: 0.75rem;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  color: var(--text-main);
  background: #F9FAFB;
}

.form-input:focus {
  outline: 2px solid var(--primary-color);
  border-color: transparent;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(45, 90, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Spanning classes for mosaic layout */
.col-span-2 { grid-column: span 2; }
.row-span-2 { grid-row: span 2; }

/* Rooms/Offer Section */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.room-card {
  background: var(--surface-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.room-image {
  height: 250px;
  position: relative;
}

.room-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--surface-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.room-content {
  padding: 2rem;
}

.room-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.room-features {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background-color: #1F2937;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  opacity: 0.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.5;
}

/* Utilities */
.hidden-mobile {
  display: block;
}

@media (max-width: 768px) {
  .display-text { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .booking-widget {
    margin: 1rem;
    grid-template-columns: 1fr;
  }
  .hidden-mobile { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .col-span-2, .row-span-2 { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 250px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
}
