/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #2C3E2D;
  background: #F9F7F2;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Lora', serif; line-height: 1.25; color: #1A3A2A; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D6A4F;
  background: #E8F5E9;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: #5A7D60; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-cta { background: #2D6A4F; color: #fff; border-color: #2D6A4F; }
.btn-cta:hover { background: #1B4332; border-color: #1B4332; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,0.3); }
.btn-outline { background: transparent; color: #2D6A4F; border-color: #2D6A4F; }
.btn-outline:hover { background: #2D6A4F; color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #2D6A4F; border-color: #fff; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: #2D6A4F; transform: translateY(-2px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem; }
.btn-icon { flex-shrink: 0; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,106,79,0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 600; color: #1A3A2A; }
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a:not(.btn) { padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.9375rem; color: #2C3E2D; transition: all 0.2s ease; }
.main-nav a:not(.btn):hover { background: #E8F5E9; color: #2D6A4F; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 24px; height: 2px; background: #2D6A4F; border-radius: 2px; transition: all 0.3s ease; position: absolute; left: 10px; }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; top: 8px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero { padding: 120px 0 80px; background: linear-gradient(135deg, #F9F7F2 0%, #E8F5E9 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-tag { display: inline-block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #2D6A4F; background: rgba(45,106,79,0.1); padding: 8px 18px; border-radius: 50px; margin-bottom: 20px; }
.hero-title { font-size: clamp(2rem, 4.5vw, 3.25rem); color: #1A3A2A; margin-bottom: 20px; line-height: 1.15; }
.hero-title em { font-style: italic; color: #2D6A4F; }
.hero-desc { font-size: 1.125rem; color: #5A7D60; margin-bottom: 32px; max-width: 480px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-features { display: flex; gap: 24px; flex-wrap: wrap; }
.hf-item { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; color: #2C3E2D; }
.hf-icon { flex-shrink: 0; }
.hero-image { position: relative; }
.hero-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.hero-img-main img { width: 100%; height: 400px; object-fit: cover; }
.hero-img-accent {
  position: absolute;
  bottom: -32px;
  left: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  border: 4px solid #F9F7F2;
}
.hero-img-accent img { width: 100%; height: 180px; object-fit: cover; }

/* ===== ROOMS ===== */
.rooms { padding: 96px 0; background: #fff; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 32px; }
.room-card { border-radius: 20px; overflow: hidden; background: #F9F7F2; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.room-img { overflow: hidden; }
.room-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 24px; }
.room-body h3 { font-size: 1.375rem; margin-bottom: 8px; }
.room-body p { font-size: 0.9375rem; color: #5A7D60; margin-bottom: 16px; line-height: 1.7; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.room-amenities li { display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 700; color: #2D6A4F; }

/* ===== ABOUT ===== */
.about { padding: 96px 0; background: #F9F7F2; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  border: 4px solid #F9F7F2;
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p { font-size: 1.0625rem; color: #5A7D60; margin-bottom: 16px; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.stat { display: flex; align-items: center; gap: 10px; background: #fff; padding: 16px 20px; border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.stat-number { font-size: 1.25rem; color: #2D6A4F; }
.stat-label { font-weight: 700; font-size: 0.9rem; color: #2C3E2D; }

/* ===== LOCATION ===== */
.location { padding: 96px 0; background: #fff; }
.location-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: stretch; }
.map-container { border-radius: 20px; overflow: hidden; min-height: 400px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.location-info { display: flex; flex-direction: column; gap: 16px; }
.info-card { display: flex; align-items: flex-start; gap: 16px; background: #F9F7F2; padding: 24px; border-radius: 16px; transition: all 0.3s ease; }
.info-card:hover { background: #E8F5E9; transform: translateX(4px); }
.info-icon { flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.info-card h4 { font-family: 'Nunito', sans-serif; font-size: 0.8125rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #2D6A4F; margin-bottom: 4px; }
.info-card p { font-size: 0.9375rem; color: #2C3E2D; line-height: 1.6; }
.info-card a { color: #2D6A4F; font-weight: 700; }
.info-card a:hover { text-decoration: underline; }

/* ===== CTA ===== */
.cta { padding: 96px 0; background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%); }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; }
.cta-desc { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; background: #F9F7F2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { font-size: 1.0625rem; color: #5A7D60; margin-bottom: 32px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.cd-item { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; color: #2C3E2D; }
.cd-item svg { flex-shrink: 0; }
.cd-item a { color: #2D6A4F; font-weight: 700; }
.cd-item a:hover { text-decoration: underline; }

/* Form */
.contact-form { background: #fff; padding: 40px; border-radius: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.875rem; color: #2C3E2D; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E0E8E0;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
  color: #2C3E2D;
  background: #F9F7F2;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: #2D6A4F; background: #fff; box-shadow: 0 0 0 4px rgba(45,106,79,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9FB8A4; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { text-align: center; padding: 16px; background: #E8F5E9; color: #2D6A4F; border-radius: 12px; font-weight: 700; margin-top: 16px; }

/* ===== FOOTER ===== */
.footer { background: #1A3A2A; padding: 48px 0 32px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 8px; line-height: 1.7; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.7); font-weight: 600; font-size: 0.9375rem; transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.8125rem; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .map-container { min-height: 300px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(249,247,242,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid rgba(45,106,79,0.1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a:not(.btn) { display: block; padding: 12px 16px; }
  .hero { padding: 100px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-img-main img { height: 280px; }
  .hero-img-accent { left: 16px; bottom: -20px; }
  .hero-img-accent img { height: 140px; }
  .hero-features { gap: 16px; }
  .rooms { padding: 64px 0; }
  .rooms-grid { grid-template-columns: 1fr; }
  .about { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-main img { height: 320px; }
  .about-img-float { right: 0; bottom: -16px; }
  .location { padding: 64px 0; }
  .cta { padding: 64px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
  .rooms-note { font-size: 0.875rem; }
}
