/* ============================================
   Grand Lake Getaway — Warm Cabin Simple
   Photo-forward, organic, inviting
   Fonts: Playfair Display + Nunito
   Palette: warm cream, deep brown, forest, amber
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Nunito:wght@300;400;500;600&display=swap');

:root {
  --brown:       #3D2B1F;
  --brown-mid:   #5C3D2E;
  --brown-light: #8B6550;
  --amber:       #C17F3A;
  --amber-light: #D4974E;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EAE0;
  --warm-white:  #FDFAF6;
  --sand:        #E8DDD0;
  --forest:      #2D4A32;
  --text:        #2A1F17;
  --text-mid:    #5A4A3A;
  --text-light:  #96836F;
  --section-pad: 100px;
  --max-w:       1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(61,43,31,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown); }
.nav-cta-btn {
  background: var(--amber) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta-btn:hover { background: var(--amber-light) !important; }

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

/* Warm gradient overlay — lighter at top, darker at bottom */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,20,10,0.15) 0%,
    rgba(30,20,10,0.35) 50%,
    rgba(30,20,10,0.62) 100%
  );
}

/* Fallback when no image */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2d3a28 0%, #3d2b1f 50%, #1a2516 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0 24px;
}

/* Pill tag above headline */
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  display: inline-block;
  background: var(--amber);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-hero:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* ===========================
   QUICK STATS BAR
   =========================== */
.stats-bar {
  background: var(--brown);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ===========================
   SECTION BASICS
   =========================== */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 16px;
  font-weight: 400;
}
.section-lead {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.8;
  max-width: 560px;
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}
.tag {
  padding: 6px 14px;
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown-mid);
}

.about-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 500px;
  box-shadow: 12px 12px 0 var(--cream-dark);
}
/* Fallback gradient when no image -->*/
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d3a28, #3d2b1f);
  z-index: 0;
}
.about-photo img { position: relative; z-index: 1; }

/* Floating badge on photo */
.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--brown);
  color: white;
  padding: 18px 22px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.about-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--amber-light);
  line-height: 1;
}
.about-badge-lbl {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.gallery-intro {
  max-width: var(--max-w);
  margin: 0 auto 40px;
  padding: 0 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 200px;
  gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--sand);
}
.g-item:first-child { grid-row: span 2; }
.g-item img {
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.93);
}
.g-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20,12,6,0.97);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  animation: lbfade 0.2s ease;
}
@keyframes lbfade {
  from { opacity:0; transform:scale(0.97); }
  to   { opacity:1; transform:scale(1); }
}
.lb-close {
  position: fixed; top: 20px; right: 26px;
  color: rgba(255,255,255,0.55); font-size: 2rem;
  cursor: pointer; font-family: sans-serif; font-weight: 200;
  transition: color 0.2s; z-index: 1001; line-height: 1;
}
.lb-close:hover { color: white; }
.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem;
  border-radius: 4px;
  transition: background 0.2s; z-index: 1001;
}
.lb-btn:hover { background: rgba(255,255,255,0.18); color: white; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-count {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.35); font-size: 0.7rem; z-index: 1001;
}

/* ===========================
   AMENITIES
   =========================== */
.amenities {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.amenity-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 28px 22px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.amenity-card:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(193,127,58,0.12);
  transform: translateY(-2px);
}
.amenity-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
}
.amenity-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.amenity-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   THINGS TO DO
   =========================== */
.explore {
  padding: var(--section-pad) 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.explore::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-rmnp.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.explore .section-tag { color: var(--amber-light); }
.explore .section-title { color: white; }

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.explore-col {
  padding: 40px 36px;
  background: rgba(0,0,0,0.15);
}
.explore-col:first-child {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.explore-col h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.explore-col ul { list-style: none; }
.explore-col li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.explore-col li:hover { color: rgba(255,255,255,0.95); }
.explore-col li::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--amber);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ===========================
   AVAILABILITY
   =========================== */
.availability {
  padding: var(--section-pad) 0;
  background: var(--cream);
  text-align: center;
}
.availability .section-title,
.availability .section-tag { text-align: center; }
.avail-note {
  color: var(--text-mid);
  margin-bottom: 40px;
  font-size: 0.95rem;
}
.cal-placeholder {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 72px 40px;
  color: var(--text-light);
  font-size: 1rem;
}
.cal-placeholder a {
  color: var(--brown);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   FAQS
   =========================== */
.faqs {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.faq-list {
  margin-top: 48px;
  max-width: 720px;
}
.faq-item {
  border-bottom: 1px solid var(--sand);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q:hover { color: var(--amber); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: var(--section-pad) 0;
  background: var(--brown);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-rmnp.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.contact .section-tag { color: var(--amber-light); }
.contact .section-title { color: white; }
.contact .section-lead { color: rgba(255,255,255,0.6); margin: 0 auto 40px; }

.booking-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,255,255,0.12);
}
.booking-form input[type="date"] { color-scheme: dark; }
.booking-form textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.btn-submit {
  background: var(--amber);
  color: white;
  border: none;
  padding: 15px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--amber-light); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #231510;
  color: white;
  padding: 60px 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
}
.footer-brand p {
  color: rgba(255,255,255,0.36);
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber-light); }
.footer-bottom {
  padding: 20px 40px;
  text-align: center;
  color: rgba(255,255,255,0.18);
  font-size: 0.72rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .section-wrap { padding: 0 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { height: 300px; order: -1; box-shadow: none; }
  .about-badge { left: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; grid-auto-rows: 200px; padding: 0 20px; }
  .g-item:first-child { grid-row: span 1; }
  .gallery-intro { padding: 0 20px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: 1fr; }
  .explore-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; padding: 0 16px; }
  .amenities-grid { grid-template-columns: 1fr; }
}