/* -----------------------------
   CSS Variables & Settings
----------------------------- */
:root {
  /* Colors */
  --color-primary: #2d5a27;
  --color-primary-light: #3e7b36;
  --color-primary-dark: #1f3e1b;
  --color-secondary: #d4a373;
  --color-text-dark: #333333;
  --color-text-light: #666666;
  --color-bg-body: #fdfdfc;
  --color-bg-light: #f4f6f4;
  --color-white: #ffffff;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

/* -----------------------------
   Base Resets
----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--color-bg-light); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

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

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

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

/* -----------------------------
   Navigation
----------------------------- */
.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.glass-nav.scrolled .brand-logo { 
  color: var(--color-text-dark); 
  text-shadow: none;
}
.glass-nav.scrolled .nav-links a { 
  color: var(--color-text-dark); 
  text-shadow: none;
}
.glass-nav.scrolled .btn-primary-outline { 
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.brand-icon {
  color: var(--color-primary);
}

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

.nav-links a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.nav-links a:not(.btn-primary-outline):hover {
  color: var(--color-secondary);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-white);
  cursor: pointer;
}

.glass-nav.scrolled .mobile-menu-toggle {
  color: var(--color-text-dark);
}


/* -----------------------------
   Hero Section
----------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../assets/images/hero.jpg') center/cover no-repeat;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0,0,0,0.8);
}

.hero-content p {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* -----------------------------
   Sections Standard
----------------------------- */
section {
  padding: var(--space-xl) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-header {
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}


/* -----------------------------
   About Section
----------------------------- */
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-md);
  z-index: 1;
}

/* -----------------------------
   Services Section
----------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

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

.service-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

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

/* -----------------------------
   Reviews Section
----------------------------- */
.review-card {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.review-text {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  line-height: 1.8;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  font-size: 3rem;
  color: var(--color-primary);
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* -----------------------------
   Contact Section
----------------------------- */
.contact-details {
  margin-top: 2rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-details i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 0.2rem;
}

.contact-details strong {
  display: block;
  color: var(--color-text-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-form {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e1e1e1;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* -----------------------------
   Footer
----------------------------- */
.site-footer {
  background-color: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
}

/* -----------------------------
   Animations & Responsive
----------------------------- */

/* Simple Scroll Reveal Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  animation: fadeInUp 1s cubic-bezier(0.5, 0, 0, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* simple mobile hide for now, could add JS toggle */
  }
  .mobile-menu-toggle {
    display: block;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

/* -----------------------------
   Gallery Section
----------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
  transform: scale(1.03);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

/* -----------------------------
   Map & Affiliates
----------------------------- */
.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.affiliates-section {
  padding: 3rem 0;
  border-top: 1px solid #e1e1e1;
}

.affiliates-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.affiliates-logos img {
  max-width: 150px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.affiliates-logos a:hover img {
  opacity: 1;
}

/* -----------------------------
   Rooms Section
----------------------------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.room-image {
  position: relative;
}

.room-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.price-tag {
  position: absolute;
  top: 1rem;
  left: 0;
  background-color: #f39c12; /* Matches the orange tag */
  color: var(--color-white);
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.room-info {
  padding: 1.5rem;
  text-align: center;
}

.room-info h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-text-dark);
}

@media (max-width: 992px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}
