/* Venediger Lodge - Website Copy */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark: #1a1a1a;
  --darker: #111;
  --gold: #c8a96e;
  --light: #f5f2ee;
  --text: #333;
  --white: #fff;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── NAVIGATION ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 38px;
  filter: brightness(0) invert(1);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}

nav > ul > li {
  position: relative;
}

nav > ul > li > a {
  display: block;
  padding: 0 1.1rem;
  height: 64px;
  line-height: 64px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav > ul > li > a:hover { color: var(--gold); }

/* dropdown */
nav ul li ul {
  display: none;
  position: absolute;
  top: 64px; left: 0;
  background: var(--darker);
  min-width: 200px;
  list-style: none;
  padding: 0.5rem 0;
  border-top: 2px solid var(--gold);
}

nav ul li:hover ul { display: block; }

nav ul li ul li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: #ccc;
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 0.2s, background 0.2s;
}

nav ul li ul li a:hover {
  color: var(--white);
  background: rgba(200,169,110,0.15);
}

/* header CTAs */
.header-cta {
  display: flex;
  gap: 0.7rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: #b8944a;
  border-color: #b8944a;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 2rem;
}

.hero-content .tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 8rem 2rem 4rem;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

/* ── SECTIONS ── */
.section {
  padding: 5rem 2rem;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── INTRO TEXT ── */
.intro-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 2rem;
}

.intro-block h2 { margin-bottom: 1.5rem; }

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-grid-2 { grid-template-columns: 1fr 1fr; }
.photo-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.photo-grid-masonry {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.photo-grid img, .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-item {
  overflow: hidden;
  border-radius: 2px;
}

.photo-item img {
  transition: transform 0.5s ease;
}

.photo-item:hover img { transform: scale(1.04); }

.photo-tall { aspect-ratio: 3/4; }
.photo-wide { aspect-ratio: 4/3; }
.photo-sq   { aspect-ratio: 1/1; }

/* ── TWO-COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.two-col img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

/* ── OFFERS / CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.card-meta {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.25rem 0.7rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #e0ddd8;
  padding: 1.5rem 0;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 0.7rem;
  color: var(--dark);
}

/* ── CONTACT / INFO STRIP ── */
.info-strip {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.info-strip p { opacity: 0.8; margin: 0.2rem 0; }

/* ── SPA PRICES ── */
.price-list { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}

.section-dark .price-list li { border-bottom-color: rgba(255,255,255,0.1); }

/* ── INCLUSIONS LIST ── */
.inclusion-group {
  margin-bottom: 2.5rem;
}

.inclusion-group h3 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,169,110,0.3);
}

.inclusion-group ul {
  list-style: none;
}

.inclusion-group ul li {
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.inclusion-group ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ── FOOTER ── */
footer {
  background: var(--darker);
  color: #aaa;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #333;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(0.7);
  margin-bottom: 1.5rem;
  display: block;
}

.footer-section h4 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.4rem; }
.footer-section ul li a, .footer-section a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-section ul li a:hover, .footer-section a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: #666;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { display: none; }
  .header-cta { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col img { height: 300px; }
  .photo-grid-2, .photo-grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: #f0ece6;
  padding: 0.8rem 2rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: #888;
}

.breadcrumb a { color: #888; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

/* ── SPECIALS ── */
.highlight-box {
  background: rgba(200,169,110,0.1);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 3px 3px 0;
}

.offer-detail {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.offer-detail h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.offer-dates {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ── MAP placeholder ── */
.map-embed {
  width: 100%;
  height: 400px;
  background: #e8e4de;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
}
