/* ========================================
   Pleasant Valley Lodge & Cabins
   Styled after Bellevue X cabin theme
   Fonts: Spinnaker (headings), Open Sans (body)
   ======================================== */

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

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --color-primary: #01B295;        /* Teal-green — Bellevue accent */
  --color-primary-hover: #019A80;
  --color-warm: #D4A853;           /* Warm gold */
  --color-warm-hover: #c49643;
  --color-background: #FFFFFF;
  --color-background-alt: #F8F6F2; /* Warm light cream */
  --color-dark: #151515;           /* Near-black */
  --color-dark-mid: #333333;
  --color-text: #4A4A4A;
  --color-text-light: #707070;     /* Bellevue shadow tone */
  --color-border: #E8E4DD;
  --color-highlight: #F4F4F4;

  --font-heading: 'Spinnaker', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary-hover); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  background: rgba(21, 21, 21, 0.95);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--color-primary) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-size: 0.8rem !important;
}

.nav-cta:hover { background: var(--color-primary-hover) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ========================================
   Hero — Full-width Background Image
   ======================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--color-warm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ========================================
   Platform Bar
   ======================================== */
.social-proof {
  background: var(--color-dark);
  padding: 18px 0;
}

.social-proof .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-proof-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.social-proof-item {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.social-proof-item:hover { color: #fff; }

/* ========================================
   Section Titles
   ======================================== */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   Cabin Sections — Feature Layout
   ======================================== */
.cabin-section {
  padding: 80px 0;
}

.cabin-section-alt {
  background: var(--color-background-alt);
}

.cabin-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.cabin-feature-reverse {
  grid-template-columns: 1fr 1.2fr;
}

.cabin-feature-reverse .cabin-hero-image {
  order: 2;
}

.cabin-feature-reverse .cabin-info {
  order: 1;
}

.cabin-hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.cabin-hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.cabin-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cabin-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.cabin-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

.cabin-price small {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--color-text-light);
}

.cabin-info > p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.cabin-amenities {
  list-style: none;
  margin-bottom: 24px;
}

.cabin-amenities li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text);
}

.cabin-amenities li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ========================================
   Slideshow
   ======================================== */
.slideshow {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.slideshow-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.slideshow-small .slide img {
  aspect-ratio: 4/3;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.slide-prev:hover,
.slide-next:hover {
  background: rgba(0,0,0,0.7);
}

.slide-prev { left: 12px; }
.slide-next { right: 12px; }

.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.slide-dot.active {
  background: #fff;
}

.slideshow-wide .slide img {
  aspect-ratio: 21/9;
}

/* Hide dots if too many on small screens */
@media (max-width: 480px) {
  .slide-dots { gap: 5px; }
  .slide-dot { width: 8px; height: 8px; }
}

/* ========================================
   Property / Amenities Section
   ======================================== */
.property-section {
  padding: 80px 0;
  background: var(--color-background-alt);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.amenity-item {
  display: flex;
  gap: 20px;
  align-items: start;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.amenity-image {
  flex-shrink: 0;
  width: 160px;
  border-radius: 6px;
  overflow: hidden;
}

.amenity-image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.amenity-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.amenity-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
  padding: 80px 0;
}

/* ========================================
   About Section
   ======================================== */
.about {
  padding: 100px 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--color-text);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-tagline {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 8px;
}

/* ========================================
   Events Section
   ======================================== */
.events-section {
  padding: 80px 0;
  background: var(--color-background-alt);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-dark);
  margin: 24px 24px 12px;
}

.event-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 24px 28px;
}

/* ========================================
   Contact / CTA Section
   ======================================== */
.final-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.8);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-primary {
  background: var(--color-warm);
  color: var(--color-dark);
}

.final-cta .btn-primary:hover {
  background: var(--color-warm-hover);
}

.contact-info {
  margin-top: 36px;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--color-warm);
  font-weight: 600;
}

.contact-location {
  margin-top: 8px;
  opacity: 0.6;
  font-size: 0.95rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}

.footer .container {
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 24px;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav a:hover { color: #fff; }

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .cabin-feature {
    grid-template-columns: 1fr;
  }

  .cabin-feature-reverse .cabin-hero-image { order: 0; }
  .cabin-feature-reverse .cabin-info { order: 0; }

  .amenity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero h1 { font-size: 2.6rem; }
  .hero-inner { padding: 60px 0; }

  .events-grid { grid-template-columns: 1fr; }

  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image { max-width: 500px; margin: 0 auto; }

  .social-proof .container { gap: 24px; }

  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(21, 21, 21, 0.98);
    padding: 20px;
    gap: 16px;
  }
  .nav-toggle { display: block; }

  .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .section-title { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
}
