/* ==========================================================================
   H&H Motor Lodge — mountain lodge theme
   Palette: deep pine #15221b · warm cream #f3eee1 · rust #a8542c
            brand maroon #7d2a26 (from the H&H sign) · amber #d9a441
   Fonts:   Fraunces (display) · Open Sans (body/UI)
   ========================================================================== */

:root {
  --navy: #15221b;                     /* deep pine (kept var name) */
  --navy-70: rgba(21, 34, 27, 0.72);
  --cream: #f3eee1;
  --cream-soft: #d9d2bf;
  --maroon: #a8542c;                   /* rust — buttons & accents */
  --maroon-hover: #c1662f;
  --brand-maroon: #7d2a26;             /* H&H sign color — logo badge */
  --amber: #d9a441;
  --olive-46: rgba(96, 105, 79, 0.46);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background-color: var(--navy);
  color: var(--cream);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: currentColor; text-decoration: none; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background-color: var(--navy-70);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background-color: var(--navy);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.header-row {
  max-width: 1920px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}
.logo:hover { opacity: 1; }

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--brand-maroon);
  border: 2px solid var(--brand-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--cream);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 24px;
  color: var(--cream);
  transition: color 0.3s ease;
}

.main-nav a:hover { color: var(--maroon-hover); }

.header-right { display: flex; align-items: center; gap: 16px; }

/* BOOK — small outlined pill (Argo .button-1) */
.button-1 {
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border: 1px solid var(--cream);
  border-radius: 5px;
  color: var(--cream);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.button-1:hover { background-color: var(--cream); color: var(--navy); }

/* Big red CTA (Argo .button-2) */
.button-2 {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 5px;
  background-color: var(--maroon);
  color: var(--cream);
  transition: background-color 0.3s ease;
}
.button-2:hover { background-color: var(--maroon-hover); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 360px) {
  .logo-text { font-size: 15px; letter-spacing: 2px; }
  .header-row { padding: 10px 14px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background-color: var(--navy);
    display: none;
    padding: 12px 0 20px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 24px; font-size: 14px; }
}

/* ---------- Sections ---------- */

.section { padding: 0 20px; }

.section-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.heading-style {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.1;
  font-size: clamp(28px, 5vw, 54px);
  color: var(--cream);
}

.subheading-style {
  font-family: 'Fraunces', serif;
  font-weight: 200;
  line-height: 1.4;
  font-size: clamp(18px, 2.5vw, 24px);
  max-width: 600px;
  color: var(--cream);
}

.paragraph-style {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream);
  max-width: 720px;
  width: 90%;
}

.text-shadow { text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 140px 20px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 14, 10, 0.45), rgba(8, 14, 10, 0.2) 55%, rgba(21, 34, 27, 0.55));
}

/* Layered mountain ridgeline blending the hero photo into the page */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0 110L0 74L200 30L390 72L560 18L740 64L920 34L1120 78L1290 44L1440 70L1440 110Z' fill='%2324382c' opacity='0.75'/%3E%3Cpath d='M0 110L0 88L170 52L360 86L540 40L760 84L930 56L1140 92L1320 64L1440 86L1440 110Z' fill='%2315221b'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-top: -60px;
}

.hero-sub { max-width: none; }

.hero.hero-short { min-height: 62vh; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-pills a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--cream);
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.hero-pills a:hover { background-color: var(--cream); color: var(--navy); }

/* ---------- Welcome / intro block ---------- */

.intro-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 100px 0;
  width: 100%;
}

/* ---------- Two-image showcase ("discover NATURE") ---------- */

.showcase-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 100px auto 50px;
  width: 70%;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 20px 40px;
  padding: 0 40px 80px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .showcase-head { width: 100%; }
  .showcase-grid { grid-template-columns: 1fr; padding: 0 10px 60px; }
}

/* ---------- Testimonials ---------- */

.testimonials-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 50px auto 25px;
  width: 70%;
}

.slider {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 25px auto 60px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 70px 30px;
}

.stars {
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 6px;
}

.testimonial-text {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--cream);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream);
  font-size: 30px;
  font-family: 'Fraunces', serif;
  cursor: pointer;
  padding: 10px 14px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.slider-arrow:hover { opacity: 1; }
.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }

@media (max-width: 600px) {
  .slide { padding: 10px 44px 30px; }
  .testimonials-head { width: 100%; }
}

/* ---------- CTA ---------- */

.cta-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 150px 20px 150px;
}

/* Faint ridgeline silhouette above the closing call-to-action */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 90L220 30L430 70L640 18L860 62L1080 28L1290 66L1440 40L1440 90Z' fill='%231d2f24'/%3E%3C/svg%3E") top / 100% 100% no-repeat;
}

.cta-section .button-2 { margin-top: 25px; }

@media (max-width: 767px) {
  .cta-section { padding: 60px 20px 75px; }
}

/* ---------- Rooms (Stay page) ---------- */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.room-card {
  background: rgba(239, 244, 247, 0.05);
  border: 1px solid rgba(239, 244, 247, 0.12);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

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

.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.room-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--cream);
}

.room-meta {
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--cream-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.room-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
}

.room-price { font-size: 13px; color: var(--cream-soft); }
.room-price strong {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--cream);
  display: block;
}

/* ---------- Amenities ---------- */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 90px;
}

.amenity { text-align: center; }

.amenity h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--cream);
}

.amenity h4::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--maroon);
  margin: 9px auto 0;
}

.amenity p { font-size: 14px; line-height: 1.7; color: var(--cream-soft); }

/* ---------- Gallery (Grounds & Views) ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

/* ---------- Explore cards ---------- */

.explore-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 40px;
  text-align: left;
}

.explore-feature img { border-radius: 6px; }

.explore-feature .heading-style { font-size: clamp(26px, 3.5vw, 40px); }
.explore-feature .paragraph-style { width: 100%; margin-top: 16px; }

@media (max-width: 860px) {
  .explore-feature { grid-template-columns: 1fr; text-align: center; }
  .explore-feature .paragraph-style { margin-left: auto; margin-right: auto; }
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px 80px;
  text-align: left;
}

.explore-card {
  background: rgba(239, 244, 247, 0.05);
  border: 1px solid rgba(239, 244, 247, 0.12);
  border-radius: 6px;
  padding: 28px;
}

.explore-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 6px;
}

.explore-card .distance {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}

.explore-card p { font-size: 14px; line-height: 1.7; color: var(--cream-soft); }

/* ---------- Footer ---------- */

.site-footer {
  background-image: linear-gradient(var(--navy), var(--olive-46));
  padding: 50px 40px 25px;
}

.footer-inner { max-width: 1920px; margin: 0 auto; }

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  padding: 25px 0;
}

.footer-col { flex: 1 1 200px; }

.footer-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--cream);
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-soft);
}

.footer-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: none;
  stroke: var(--cream-soft);
  stroke-width: 1.5;
}

.footer-item a { transition: color 0.3s ease; }
.footer-item a:hover { color: var(--maroon-hover); }

.footer-link {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 10px 0;
  color: var(--cream-soft);
  transition: color 0.3s ease;
}
.footer-link:hover { color: var(--maroon-hover); }

.social-row { display: flex; gap: 25px; }

.social-row a { transition: transform 0.3s ease, color 0.3s ease; }
.social-row a:hover { transform: translateY(-3px); color: var(--maroon-hover); }

.social-row svg { width: 22px; height: 22px; fill: currentColor; }

.footer-bottom {
  background-image: linear-gradient(var(--olive-46), var(--navy));
  padding: 25px 40px 35px;
}

.footer-bottom-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--cream-soft);
}

.footer-bottom-inner a { transition: color 0.3s ease; }
.footer-bottom-inner a:hover { color: var(--maroon-hover); }

.footer-bottom-links { display: flex; gap: 25px; }

@media (max-width: 767px) {
  .footer-columns { flex-direction: column; text-align: center; }
  .footer-item { justify-content: center; }
  .social-row { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
