@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:wght@300;400;500&family=Raleway:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --forest:    #1a2e24;
  --pine:      #2d4a38;
  --lake:      #1d5f7c;
  --lake-mid:  #2a7a9e;
  --gold:      #c9a84c;
  --cream:     #f4ede0;
  --bark:      #7a5c3e;
  --stone:     #3d3530;
  --text-dark: #1e1a16;
  --text-mid:  #4a3f35;
  --text-light:#f4ede0;
  --nav-h:     80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 3rem;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(26, 46, 36, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-logo img { height: 56px; width: auto; transition: opacity 0.3s; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links a {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* =============================================
   HERO / SLIDESHOW
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slideshow { width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active { opacity: 1; }

.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,46,36,0.65) 0%,
    rgba(26,46,36,0.2) 60%,
    rgba(29,95,124,0.35) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 13%;
  left: 7%;
  z-index: 10;
  color: #fff;
  max-width: 680px;
}

.hero-content .section-label { color: var(--gold); }

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  margin-bottom: 1.2rem;
  line-height: 1.05;
}

.hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 480px;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s, color 0.35s, transform 0.2s;
}

.btn:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--gold);
  color: var(--forest);
}

.btn-solid:hover {
  background: transparent;
  color: var(--gold);
}

.slide-dots {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 20;
  display: flex;
  gap: 0.6rem;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* =============================================
   SECTION — Feature Strip (Home)
   ============================================= */
.feature-strip {
  background: var(--forest);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  padding: 2.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: background 0.35s;
}

.feature-item:last-child { border-right: none; }

.feature-item:hover { background: rgba(201,168,76,0.08); }

.feature-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }

.feature-item h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.5rem; }

.feature-item p { color: rgba(244,237,224,0.7); font-size: 0.875rem; line-height: 1.6; }

/* =============================================
   WELCOME SECTION (Home)
   ============================================= */
.welcome-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.welcome-image { position: relative; overflow: hidden; }

.welcome-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }

.welcome-image:hover img { transform: scale(1.03); }

.welcome-text {
  background: var(--stone);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--cream); margin-bottom: 1.5rem; }

.welcome-text p {
  color: rgba(244,237,224,0.78);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.welcome-text .btn { margin-top: 1.5rem; }

/* =============================================
   PAGE HERO (Interior pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 7% 5rem;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,36,0.85) 0%, rgba(26,46,36,0.2) 70%);
}

.page-hero-content { position: relative; z-index: 2; color: #fff; }

.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--forest); color: rgba(244,237,224,0.7); padding: 4rem 8% 2rem; }

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

.footer-brand img { height: 60px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 300px;
  font-family: 'Cormorant Garamond', serif;
}

.footer-col h4 {
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.55rem; font-size: 0.9rem; }

.footer-col ul li a {
  color: rgba(244,237,224,0.65);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(244,237,224,0.4);
}

/* =============================================
   CSS TRANSITIONS — hover reveals
   ============================================= */
.img-reveal { position: relative; overflow: hidden; }

.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
}

.img-reveal:hover::after { opacity: 0.18; }


.about-intro p,
.values-section > p,
.location-text p,
.season-section > p,
.activities-intro p {
  max-width: 640px;   
  margin: 0 auto 1.5rem; 
  text-align: center; 
}

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  .site-nav { padding: 0 2rem; }
  .welcome-section { grid-template-columns: 1fr; }
  .welcome-image { height: 380px; }
  .welcome-text { padding: 4rem 2.5rem; }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  :root { --nav-h: 66px; }
  .site-nav { padding: 0 1.2rem; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(26,46,36,0.98);
    padding: 1.5rem 2rem;
  }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open a { display: block; padding: 0.9rem 0; }
  .nav-toggle { display: flex; }
  .hero-content { left: 5%; bottom: 10%; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-item:last-child { border-bottom: none; }
  .welcome-text { padding: 3rem 1.5rem; }
}
