/* ============================================
   Waldblick Frauenwald — Style
   Modern Luxury Vacation Rental
   ============================================ */

/* --- Self-hosted Fonts --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Custom Properties --- */
:root {
  --color-dark: #0f0f0f;
  --color-dark-alt: #1a1a1a;
  --color-gold: #c9a96e;
  --color-gold-light: #d4ba8a;
  --color-gold-dark: #b8960b;
  --color-white: #ffffff;
  --color-off-white: #f8f5f0;
  --color-gray: #888888;
  --color-gray-light: #e0ddd8;
  --color-text: #333333;
  --color-text-light: #666666;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 80px;
  --container-max: 1200px;
  --section-padding: 100px;
  --radius: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.2);
}

.nav-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 1001;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-gold);
  color: var(--color-dark) !important;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  background: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  align-self: center;
}

.lang-btn {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 5px;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lang-btn:hover {
  color: rgba(255,255,255,0.9);
}

.lang-btn.active {
  color: var(--color-gold);
  font-weight: 700;
}

.lang-divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem;
  user-select: none;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
}

.badge-icon {
  font-size: 1.1rem;
}

/* --- Lucide Icon Defaults --- */
.lucide {
  color: var(--color-gold);
  stroke-width: 1.5;
}

.badge-icon .lucide {
  width: 18px;
  height: 18px;
}

.highlight-icon .lucide {
  width: 22px;
  height: 22px;
}

.amenity-icon .lucide,
.activity-icon .lucide {
  width: 28px;
  height: 28px;
}

.contact-icon .lucide {
  width: 20px;
  height: 20px;
}

.logo-icon .lucide {
  width: 22px;
  height: 22px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   FACTS STRIP
   ============================================ */
.facts-strip {
  background: var(--color-dark);
  padding: 40px 0;
}

.facts-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 40px;
}

.fact-number {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
  letter-spacing: 1px;
}

.fact-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.fact-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
}

.about-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about-content .section-tag,
.about-content .section-title {
  text-align: left;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.85;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--color-off-white);
  border-radius: var(--radius);
  transition: var(--transition);
}

.highlight:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.highlight span:last-child {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-dark);
}

/* ============================================
   GALLERY
   ============================================ */
#gallery {
  background: var(--color-off-white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  border-radius: 50px;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.filter-btn.active {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery item hidden state for filtering */
.gallery-item.hidden {
  display: none;
}

/* Span variations for visual interest */
.gallery-item:nth-child(1) {
  grid-column: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--color-white);
  cursor: pointer;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--color-white);
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.1);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.amenity-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.amenity-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.amenity-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.amenity-card li {
  font-size: 0.9rem;
  color: var(--color-text-light);
  padding-left: 20px;
  position: relative;
}

.amenity-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ============================================
   ACTIVITIES
   ============================================ */
#activities {
  background: var(--color-off-white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.activity-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--color-gray-light);
  transition: var(--transition);
}

.activity-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.activity-card .amenity-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.activity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.activity-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.activities-distance {
  max-width: 800px;
  margin: 0 auto;
}

.activities-distance h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 32px;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.distance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-light);
}

.distance-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
  letter-spacing: 1px;
}

.distance-label {
  font-size: 0.88rem;
  color: var(--color-text);
}

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

.faq-item {
  border-bottom: 1px solid var(--color-gray-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-gray-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
  background: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-tag,
.contact-info .section-title {
  text-align: left;
}

.contact-info > p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail h4,
.contact-detail strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.contact-detail p,
.contact-detail a,
.contact-detail > div > span {
  font-size: 1.05rem;
  color: var(--color-dark);
  display: block;
}

.contact-detail a:hover {
  color: var(--color-gold);
}

.contact-detail > div > span {
  word-break: break-word;
}

.contact-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 8px;
}

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

.contact-form-wrap {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius);
  background: var(--color-off-white);
  color: var(--color-text);
  font-size: 0.875rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-top: 12px;
}

/* Booking Success Message */
.booking-success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.booking-success-inner {
  text-align: center;
  padding: 48px 32px;
}

.booking-success-icon {
  display: block;
  margin-bottom: 20px;
}

.booking-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.booking-success p {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto 28px;
}

.booking-success .btn {
  font-size: 0.9rem;
}

/* --- Consent Checkbox --- */
.form-consent {
  margin-bottom: 16px;
}

.form-group.form-consent label.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-gray);
  line-height: 1.55;
  cursor: pointer;
  margin-bottom: 0;
}

.form-group.form-consent input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  padding: 0;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
  cursor: pointer;
  border-radius: 3px;
}

.consent-label a {
  color: var(--color-gold);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .about-grid {
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .distance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --nav-height: 68px;
  }

  /* Navigation Mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .lang-switcher {
    margin-top: 8px;
  }

  .lang-btn {
    font-size: 1rem;
    padding: 8px 12px;
  }

  .lang-divider {
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 16px;
  }

  /* Nav toggle animation */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    min-height: 600px;
  }

  .hero-badges {
    gap: 16px;
  }

  .hero-scroll {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-secondary {
    right: -16px;
    bottom: -24px;
    width: 160px;
  }

  .about-img-secondary img {
    height: 120px;
  }

  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info .section-tag,
  .contact-info .section-title {
    text-align: center;
  }

  .contact-info > p {
    text-align: center;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Facts */
  .facts-grid {
    flex-direction: column;
    gap: 16px;
  }

  .fact-divider {
    width: 40px;
    height: 1px;
  }

  .fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding: 8px 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-brand .nav-logo {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

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

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

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

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 9998;
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cookie-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  flex: 1;
}

.cookie-text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-text a:hover {
  color: var(--color-gold-light);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}

/* Footer Legal Links */
.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--color-gold);
}

/* ============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================ */
.legal-page {
  padding-top: calc(var(--nav-height) + 60px);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--color-gold-dark);
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  list-style: disc;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 4px;
}

.legal-content em {
  color: var(--color-gray);
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 20px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}


/* ── Extras fix ──────────────────────────────── */

/* ── Extras & Price ──────────────────────────── */
.extras-section { margin-top: .5rem; }
.extras-list { display: flex; flex-direction: column; gap: .5rem; }

.extra-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .6rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: 8px;
  padding: .65rem 1rem;
}
.extra-item .extra-checkbox {
  accent-color: #c9a96e;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px !important;
  flex: 0 0 18px !important;
  margin: 0;
  padding: 0 !important;
  cursor: pointer;
}
.extra-text {
  cursor: pointer;
  font-size: .95rem;
  flex: 1;
  min-width: 0;
}
.extra-price { color: #c9a96e; font-weight: 600; white-space: nowrap; }
.extra-billing-hint { display:inline-block;margin-left:.4rem;font-size:.78rem;color:#888;font-weight:400;font-style:italic; }
.extra-qty-wrap {
  display: flex;
  align-items: center;
  gap: .4rem;
  width: 100%;
  padding-left: 28px;
}
.extra-qty-label { font-size: .82rem; color: #888; white-space: nowrap; }
.extra-qty-wrap input.extra-qty {
  width: 52px !important;
  max-width: 52px !important;
  min-width: 52px;
  flex: 0 0 52px !important;
  padding: .25rem .35rem;
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 4px;
  background: rgba(255,255,255,.05);
  color: inherit;
  text-align: center;
  font-size: .85rem;
  -moz-appearance: textfield;
}
.extra-qty::-webkit-outer-spin-button,
.extra-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-summary { background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.25); border-radius: 10px; padding: 1.25rem; margin: 1rem 0; }
.price-summary h4 { margin: 0 0 .75rem; font-size: 1rem; color: #c9a96e; }
.price-lines { display: flex; flex-direction: column; gap: .4rem; }
.price-line { display: flex; justify-content: space-between; font-size: .95rem; padding: .25rem 0; border-bottom: 1px solid rgba(201,169,110,.1); }
.price-total { display: flex; justify-content: space-between; font-size: 1.05rem; padding-top: .75rem; margin-top: .5rem; border-top: 2px solid rgba(201,169,110,.3); }
.price-note { font-size: .8rem; color: #888; margin-top: .75rem; font-style: italic; }
.calendar-price { margin-top: .5rem; color: #c9a96e; font-size: 1.05rem; }
.price-per-night { font-size: .85rem; color: #888; font-weight: normal; }

/* Amenities section image - responsive */
.amenities-image img { transition: box-shadow 0.3s ease; }
@media (max-width: 768px) {
  .amenities-image img { width: 90% !important; }
}
