/* ============================================================
   Appartement Ausblick – Global Stylesheet
   Design: Alpine Elegance · Teal · Wood · White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --c-white:        #FAFAFA;
  --c-warm:         #F5F0EB;
  --c-teal:         #3A9B9B;
  --c-teal-dark:    #2C7A7A;
  --c-teal-light:   #5BBCBC;
  --c-teal-bg:      #EEF7F7;
  --c-brown:        #8C6A44;
  --c-brown-light:  #B8956A;
  --c-dark:         #1A1A1A;
  --c-mid:          #4A4A4A;
  --c-light-gray:   #E8E4DF;
  --c-border:       rgba(58,155,155,0.15);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.16);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:  1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--c-white);
  color: var(--c-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  line-height: 1.25;
  color: var(--c-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--c-mid); font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--warm { background: var(--c-warm); }
.section--teal-bg { background: var(--c-teal-bg); }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-teal);
  color: #fff;
  box-shadow: 0 4px 15px rgba(58,155,155,0.35);
}
.btn-primary:hover {
  background: var(--c-teal-dark);
  box-shadow: 0 6px 20px rgba(58,155,155,0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-teal);
  border: 2px solid var(--c-teal);
}
.btn-outline:hover {
  background: var(--c-teal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--c-teal-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--c-warm);
  transform: translateY(-2px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250,250,250,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav.scrolled .nav__logo { color: var(--c-dark); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--c-teal-light);
  transition: width 0.3s ease;
}

.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--c-mid); }
.nav.scrolled .nav__links a:hover { color: var(--c-teal); }

.nav__cta { margin-left: auto; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--c-dark); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-light-gray);
  padding: 1rem 0;
}

.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-dark);
  border-bottom: 1px solid var(--c-light-gray);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--c-teal); background: var(--c-teal-bg); }

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

/* Hero has two bg layers — summer (default) and winter */
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.4s ease;
}
.hero__bg--winter { opacity: 0; }
.hero.winter .hero__bg--summer { opacity: 0; }
.hero.winter .hero__bg--winter { opacity: 1; }

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.55) 0%,
    rgba(44,122,122,0.30) 60%,
    rgba(26,26,26,0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero__badge .stars { color: #FFD700; font-size: 0.9rem; }

.hero__title {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
}

/* ── Highlights Bar ── */
.highlights {
  background: var(--c-dark);
  padding: 2rem 0;
}

.highlights__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
}

.highlight-item__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(58,155,155,0.2);
  border: 1px solid rgba(58,155,155,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.highlight-item__text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--ff-heading);
}
.highlight-item__text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── About Section ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.about__image:hover img { transform: scale(1.04); }

.about__image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--c-teal);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
  opacity: 0.3;
}

.about__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  background: rgba(250,250,250,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about__badge .score {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-teal-dark);
  line-height: 1;
}
.about__badge .score-label {
  font-size: 0.72rem;
  color: var(--c-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.about__text h2 { margin-bottom: 1rem; }
.about__text p { margin-bottom: 1.5rem; }

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--c-mid);
}

.about__feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--c-teal);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Gallery ── */
.gallery__header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--c-light-gray);
}

.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(5) { grid-column: span 2; }
.gallery__item:nth-child(9) { grid-column: span 2; }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__item:hover .gallery__overlay {
  background: rgba(26,26,26,0.3);
}

.gallery__overlay span {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay span {
  opacity: 1;
  transform: scale(1);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  width: 50px; height: 50px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__prev { left: -70px; }
.lightbox__next { right: -70px; }

/* ── Direct Booking CTA ── */
.booking {
  background: linear-gradient(135deg, var(--c-teal-dark) 0%, var(--c-teal) 60%, var(--c-teal-light) 100%);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.booking::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.booking__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.booking__inner h2 { color: #fff; margin-bottom: 0.5rem; }

.booking__tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
  font-style: italic;
  font-family: var(--ff-heading);
}

.booking__desc {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.booking__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.booking__phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  width: 100%;
  max-width: 380px;
  text-decoration: none;
  transition: var(--transition);
}

.booking__phone:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.booking__phone .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.booking__phone .details strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--ff-heading);
  letter-spacing: 0.02em;
}

.booking__phone .details span {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}

.booking__personal-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ── Reviews ── */
.reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score-big {
  font-family: var(--ff-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--c-teal);
  line-height: 1;
}

.score-details { color: var(--c-mid); }
.score-details .stars { color: #F0A500; font-size: 1.1rem; }
.score-details p { font-size: 0.85rem; margin-top: 0.25rem; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-light-gray);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__quote {
  font-size: 2.5rem;
  color: var(--c-teal-light);
  line-height: 0.8;
  margin-bottom: 0.75rem;
  font-family: var(--ff-heading);
}

.review-card__text {
  font-size: 0.92rem;
  color: var(--c-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-card__name { font-weight: 600; font-size: 0.9rem; }
.review-card__country { font-size: 0.78rem; color: var(--c-mid); }

.review-card__stars {
  position: absolute;
  top: 1.75rem; right: 1.75rem;
  color: #F0A500;
  font-size: 0.8rem;
}

/* ── Location ── */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
  border: 3px solid var(--c-border);
}

.location__map iframe {
  width: 100%; height: 100%;
  border: none;
}

.location__info h2 { margin-bottom: 1rem; }
.location__info p { margin-bottom: 1.5rem; }

.location__address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--c-teal-bg);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--c-teal);
}

.location__address .icon { font-size: 1.4rem; margin-top: 0.1rem; }
.location__address p { margin: 0; font-weight: 500; color: var(--c-dark); }
.location__address span { font-size: 0.85rem; color: var(--c-mid); }

.location__distances {
  display: grid;
  gap: 0.75rem;
}

.distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-light-gray);
  font-size: 0.9rem;
}

.distance-item__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-mid);
}

.distance-item__label .icon { font-size: 1.1rem; }

.distance-item__km {
  font-weight: 600;
  color: var(--c-teal-dark);
  font-family: var(--ff-heading);
}

/* ── Footer ── */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
  position: relative;
}

/* Wood texture footer background */
.footer--wood {
  background-image: url('images/style_trennstreifen.webp');
  background-size: cover;
  background-position: center;
}
.footer--wood::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(35, 18, 8, 0.83);
  pointer-events: none;
}
.footer--wood .container { position: relative; z-index: 1; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer__logo {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer__links h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--c-teal-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__rating .stars { color: #F0A500; }

/* ── Animations ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
/* ── Tablet (≤960px) ── */
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image { max-width: 560px; margin: 0 auto; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map { height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(9) { grid-column: span 2; }

  /* Compact nav on tablet */
  .nav__links { gap: 1.25rem; }
  .nav__links a { font-size: 0.82rem; }
}

/* ── Small tablet (≤760px) ── */
@media (max-width: 760px) {
  /* Nav: hide secondary links, keep logo + Buchen */
  .nav__links li:not(:last-child) { display: none; }

  .reviews__header { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .lightbox__prev { left: -45px; }
  .lightbox__next { right: -45px; }
}

/* ── Mobile (≤540px) ── */
@media (max-width: 540px) {
  /* Nav: fully hidden on mobile */
  .nav { display: none; }

  /* Hero content centered on mobile */
  .hero__content { text-align: center; }
  .season-toggle { margin-left: auto; margin-right: auto; }
  .hero__badge { justify-content: center; }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  .hero__cta .btn {
    width: auto;
    min-width: 180px;
    justify-content: center;
  }
  .hero__subtitle { font-size: 1rem; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(9) { grid-column: span 1; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .booking__phone { padding: 1rem 1.25rem; max-width: 100%; }
  .booking__phone .details strong { font-size: 1.1rem; }

  .lightbox__prev { left: 5px; }
  .lightbox__next { right: 5px; }
  .lightbox__content { max-width: 100vw; }
  .lightbox__content img { max-height: 80vh; }
}

/* ── Sub-pages (Impressum, Datenschutz) ── */
.subpage-hero {
  background: linear-gradient(135deg, var(--c-dark) 0%, #2C3A3A 100%);
  padding: 7rem 0 3.5rem;
  color: #fff;
}

.subpage-hero h1 { color: #fff; }
.subpage-hero p { color: rgba(255,255,255,0.65); margin-top: 0.5rem; }

.subpage-content {
  padding: 4rem 0;
}

.subpage-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--c-teal-dark);
  border-bottom: 2px solid var(--c-teal-bg);
  padding-bottom: 0.5rem;
}

.subpage-content h2:first-of-type { margin-top: 0; }

.subpage-content p,
.subpage-content li {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: var(--c-mid);
}

.subpage-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.subpage-content a { color: var(--c-teal); text-decoration: underline; }

.subpage-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,250,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 0;
}

/* ── 404 Page ── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-warm) 0%, var(--c-teal-bg) 100%);
  text-align: center;
  padding: 2rem;
}

.page-404__inner { max-width: 500px; }

.page-404__number {
  font-family: var(--ff-heading);
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 700;
  color: var(--c-teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.page-404 h2 { margin-bottom: 1rem; }
.page-404 p { margin-bottom: 2rem; }

/* ── Season Toggle (Sommer / Winter) ── */
.season-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 1.25rem;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.25);
}
.season-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.season-btn.active {
  background: rgba(255,255,255,0.92);
  color: var(--c-teal-dark);
  font-weight: 600;
}
.season-btn:hover:not(.active) {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ── Wood Separator Band ── */
.wood-separator {
  width: 100%;
  height: 70px;
  background-image: url('images/style_trennstreifen.webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.28;
  filter: brightness(1.25) saturate(0.85);
  pointer-events: none;
}

/* ── Language Switch (fixed floating) ── */
.lang-switch {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: inline-flex;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
}
.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-mid);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.lang-btn.active {
  background: var(--c-teal);
  color: #fff;
  font-weight: 600;
}
.lang-btn:hover:not(.active) {
  background: var(--c-light-gray);
  color: var(--c-dark);
}

/* ── About Badge: smaller on mobile ── */
@media (max-width: 540px) {
  .about__badge {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem 0.8rem;
  }
  .about__badge .score {
    font-size: 1.3rem;
  }
  .about__badge .score-label {
    font-size: 0.6rem;
  }
}
