/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #2C1A0E; background: #FAF7F2; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --brown: #8B5A3C;
  --brown-dark: #6B3F24;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --cream: #FAF7F2;
  --sand: #F0E8D6;
  --text: #2C1A0E;
  --text-light: #7A5C3E;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(139,90,60,0.12);
  --shadow-lg: 0 12px 48px rgba(139,90,60,0.18);
}

/* ─── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--brown-dark); margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 600px; margin: 0 auto 3rem; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.25s; border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--brown); color: var(--white); border-color: var(--brown); }
.btn-primary:hover { background: var(--brown-dark); border-color: var(--brown-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--text); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-outline-brown { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-outline-brown:hover { background: var(--brown); color: var(--white); }

/* ─── Navigation ────────────────────────────────────────────────────────── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; transition: all 0.35s; }
.navbar.scrolled { background: rgba(250,247,242,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(44,26,14,0.1); padding: 0.75rem 2rem; }
.navbar-logo img { height: 52px; }
.navbar-logo .logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 600; }
.navbar.scrolled .logo-text { color: var(--brown-dark); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { padding: 0.5rem 0.9rem; border-radius: 6px; font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.9); transition: all 0.2s; }
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.15); color: var(--white); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { background: var(--sand); color: var(--brown); }
.nav-book { background: var(--gold) !important; color: var(--text) !important; font-weight: 700 !important; border-radius: 6px; }
.nav-book:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.navbar.scrolled .hamburger span { background: var(--brown); }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(44,26,14,0.72) 0%, rgba(44,26,14,0.35) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 1; padding: 0 2rem; max-width: 680px; margin-left: clamp(1rem, 6vw, 8rem); }
.hero-tag { display: inline-block; background: var(--gold); color: var(--text); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 4px; margin-bottom: 1.25rem; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.1; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.1em; }
.hero-scroll span { width: 1px; height: 48px; background: rgba(255,255,255,0.4); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(0.7)} 50%{opacity:1;transform:scaleY(1)} }

/* ─── Stats Bar ─────────────────────────────────────────────────────────── */
.stats-bar { background: var(--brown); color: var(--white); padding: 1.5rem 2rem; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }

/* ─── Sections ──────────────────────────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-center { text-align: center; }
.container { max-width: 1100px; margin: 0 auto; }

/* ─── Features Grid ─────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); transition: transform 0.25s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; background: var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; }
.feature-card h3 { font-size: 1.05rem; color: var(--brown-dark); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-light); }

/* ─── Room Cards ────────────────────────────────────────────────────────── */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.room-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card-img { position: relative; height: 240px; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-badge { position: absolute; top: 1rem; left: 1rem; background: var(--brown); color: var(--white); font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.room-card-body { padding: 1.5rem; }
.room-card-body h3 { font-size: 1.25rem; color: var(--brown-dark); margin-bottom: 0.4rem; }
.room-card-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.25rem; }
.room-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.25rem; }
.room-price .from { font-size: 0.78rem; color: var(--text-light); }
.room-price .amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--brown); font-weight: 700; }
.room-price .per { font-size: 0.78rem; color: var(--text-light); }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.amenity-tag { background: var(--sand); color: var(--brown-dark); font-size: 0.75rem; padding: 0.25rem 0.6rem; border-radius: 4px; }

/* ─── Gallery ───────────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 220px); gap: 0.75rem; margin-top: 3rem; }
.gallery-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }

/* ─── Testimonial ───────────────────────────────────────────────────────── */
.testimonial-section { background: var(--brown-dark); color: var(--white); padding: 5rem 2rem; text-align: center; }
.testimonial-section .section-title { color: var(--white); }
.testimonials-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 3rem auto 0; }
.testimonial-card { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2rem; text-align: left; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.92rem; line-height: 1.7; opacity: 0.9; margin-bottom: 1.25rem; }
.testimonial-card .author { font-weight: 600; font-size: 0.85rem; color: var(--gold-light); }
.testimonial-card .origin { font-size: 0.78rem; opacity: 0.6; }

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
.cta-banner { position: relative; padding: 6rem 2rem; text-align: center; overflow: hidden; }
.cta-banner .bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner .bg::after { content: ''; position: absolute; inset: 0; background: rgba(44,26,14,0.65); }
.cta-banner .content { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 2rem; }
.cta-banner .actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── Page Hero (inner pages) ───────────────────────────────────────────── */
.page-hero { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; margin-top: 0; }
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bg::after { content: ''; position: absolute; inset: 0; background: rgba(44,26,14,0.60); }
.page-hero .content { position: relative; z-index: 1; padding-top: 80px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ─── Forms ─────────────────────────────────────────────────────────────── */
.form-wrap { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { padding: 0.75rem 1rem; border: 1.5px solid #E8DDD4; border-radius: var(--radius); font-family: inherit; font-size: 0.9rem; color: var(--text); background: var(--cream); transition: border-color 0.2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brown); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { background: #D1FAE5; border: 1px solid #6EE7B7; border-radius: var(--radius); padding: 1rem 1.5rem; color: #065F46; margin-bottom: 1.5rem; font-weight: 500; }
.form-error { background: #FEE2E2; border: 1px solid #FCA5A5; border-radius: var(--radius); padding: 1rem 1.5rem; color: #991B1B; margin-bottom: 1.5rem; font-weight: 500; }

/* ─── Contact Layout ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-size: 1.3rem; color: var(--brown-dark); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; background: var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--text-light); }
.contact-item a:hover { color: var(--brown); }
.map-embed { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; height: 260px; border: 0; }

/* ─── Facilities ────────────────────────────────────────────────────────── */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.facility-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.facility-card-img { height: 200px; overflow: hidden; }
.facility-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.facility-card:hover .facility-card-img img { transform: scale(1.05); }
.facility-card-body { padding: 1.5rem; }
.facility-card-body h3 { font-size: 1.1rem; color: var(--brown-dark); margin-bottom: 0.5rem; }
.facility-card-body p { font-size: 0.88rem; color: var(--text-light); }

/* ─── Dining ────────────────────────────────────────────────────────────── */
.dining-hero-text { max-width: 680px; }
.dining-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.dining-feature { padding: 1.5rem; border-radius: var(--radius); background: var(--sand); }
.dining-feature h3 { font-size: 1rem; color: var(--brown-dark); margin-bottom: 0.4rem; }
.dining-feature p { font-size: 0.87rem; color: var(--text-light); }

/* ─── Footer ────────────────────────────────────────────────────────────── */
footer { background: #1A0D06; color: rgba(255,255,255,0.8); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 48px; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.9); }
.footer-brand p { font-size: 0.87rem; opacity: 0.7; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: background 0.2s; }
.social-link:hover { background: var(--gold); color: var(--text); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.87rem; opacity: 0.75; margin-bottom: 0.6rem; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--gold-light); }
.footer-col p { font-size: 0.87rem; opacity: 0.75; margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; opacity: 0.5; }

/* ─── Pricing Table ─────────────────────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.price-table th { background: var(--brown); color: var(--white); padding: 0.75rem 1rem; text-align: left; font-size: 0.85rem; font-weight: 600; }
.price-table td { padding: 0.75rem 1rem; font-size: 0.88rem; border-bottom: 1px solid #EDE4D8; }
.price-table tr:nth-child(even) td { background: var(--sand); }
.price-table tr:hover td { background: #E8D9C8; }
.price-peak { color: var(--brown); font-weight: 600; }
.price-season-tag { display: inline-block; font-size: 0.7rem; padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 600; }
.tag-peak { background: #FEF3C7; color: #92400E; }
.tag-low { background: #D1FAE5; color: #065F46; }

/* ─── Whatsapp Float ────────────────────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; height: 220px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(26,13,6,0.97); flex-direction: column; justify-content: center; align-items: center; gap: 0.5rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; padding: 0.75rem 2rem; color: var(--white) !important; }
  .hamburger { display: flex; z-index: 1001; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .hero-content { margin-left: 0; }
  .stats-inner { flex-direction: row; justify-content: space-evenly; }
}
