/* === VARIABLEN === */
:root {
    --teal:        #1A9BB8;
    --teal-dark:   #0D7A94;
    --teal-deep:   #0a5f75;
    --gold:        #D4952E;
    --gold-light:  #F0C040;
    --cream:       #FAFAF7;
    --white:       #ffffff;
    --gray-light:  #F5F5F3;
    --gray:        #8A8A88;
    --dark:        #2D2D2D;
    --font-head:   'Playfair Display', Georgia, serif;
    --font-body:   'Inter', system-ui, sans-serif;
    --shadow:      0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
    --radius:      14px;
    --ease:        0.3s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--cream);
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === CONTAINER === */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,155,184,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.8);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--white);
}
.btn-hero-white {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--white);
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.btn-hero-white:hover {
    background: var(--cream);
    border-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-hero-gold {
    background: var(--gold);
    color: #1a1a1a;
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.btn-hero-gold:hover {
    background: #c4831e;
    border-color: #c4831e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,149,46,0.4);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 0;
    background: rgba(10, 42, 53, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0.75rem 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
/* Desktop nav-menu: stays inside navbar, normal flex */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Mobile overlay: separate element, direct child of body */
.mobile-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    background: rgba(10, 63, 77, 0.97);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}
.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-overlay a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.mobile-overlay a:hover { color: var(--gold); }
.mobile-overlay .mobile-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.mobile-overlay .mobile-dropdown-sub {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.mobile-overlay .mobile-dropdown-sub.open { display: flex; }
.mobile-overlay .mobile-dropdown-sub a {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
}
.mobile-overlay .mobile-dropdown-sub a:hover { color: #fff; }

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.92);
    transition: color var(--ease);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--ease);
    border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--dark); }
.navbar.scrolled .nav-link:hover { color: var(--teal); }

/* === DROPDOWN === */
.nav-item { position: relative; }
.nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-item .nav-link .dropdown-arrow {
    font-size: 0.65rem;
    transition: transform var(--ease);
}
.nav-item.open .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 180px;
    overflow: hidden;
    z-index: 100;
}
.nav-item.open .dropdown-menu { display: block; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    transition: background var(--ease), color var(--ease);
    border-bottom: 1px solid #f0f0ee;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: #f5f9fb; color: var(--teal); }
.dropdown-menu a .badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dropdown-menu a .badge-dot.teal { background: var(--teal); }
.dropdown-menu a .badge-dot.gold { background: var(--gold); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: all var(--ease);
    border-radius: 2px;
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* === MÖWEN === */
.seagulls {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
/* wrapper handles horizontal flight + vertical bobbing */
.sw {
    position: absolute;
    opacity: 0;
    animation: fly linear infinite;
}
/* svg handles wing flap independently */
.seagull {
    display: block;
    animation: flap ease-in-out infinite;
}

/* 7 Möwen – Delays so verteilt, dass immer 2+ gleichzeitig sichtbar */
.s1 { width: 42px; top: 13%; animation-duration: 22s; animation-delay:   0s; }
.s2 { width: 26px; top: 19%; animation-duration: 29s; animation-delay:  -8s; }
.s3 { width: 50px; top: 70%; animation-duration: 18s; animation-delay: -12s; }
.s4 { width: 22px; top: 78%; animation-duration: 34s; animation-delay:  -3s; }
.s5 { width: 34px; top: 60%; animation-duration: 25s; animation-delay: -19s; }
.s6 { width: 30px; top: 33%; animation-duration: 21s; animation-delay:  -6s; }
.s7 { width: 18px; top: 45%; animation-duration: 27s; animation-delay: -16s; }

.s1 .seagull { animation-duration: 3.2s; animation-delay:   0s; }
.s2 .seagull { animation-duration: 4.0s; animation-delay: -1.2s; }
.s3 .seagull { animation-duration: 2.8s; animation-delay: -0.6s; }
.s4 .seagull { animation-duration: 4.5s; animation-delay: -2.0s; }
.s5 .seagull { animation-duration: 3.6s; animation-delay: -1.0s; }
.s6 .seagull { animation-duration: 3.0s; animation-delay: -0.8s; }
.s7 .seagull { animation-duration: 4.2s; animation-delay: -1.8s; }

@keyframes fly {
    0%   { transform: translateX(-80px) translateY(0px);  opacity: 0; }
    3%   { opacity: 0.32; }
    50%  { transform: translateX(50vw)  translateY(-14px); opacity: 0.32; }
    97%  { opacity: 0.32; }
    100% { transform: translateX(110vw) translateY(5px);  opacity: 0; }
}
@keyframes flap {
    0%, 100% { transform: scaleY(1); }
    50%       { transform: scaleY(0.78); }
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(145deg, #0a3d4d 0%, #0a5f75 30%, #1A9BB8 65%, #0D7A94 100%);
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(212,149,46,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
/* Animated wave at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 2rem 1.5rem;
}
.hero-logo {
    width: 380px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.1rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-content h1 span { color: var(--gold-light); }
.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.55);
    font-size: 1.25rem;
    animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

/* === SECTIONS GENERAL === */
.section { padding: 5.5rem 0; }

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 4rem;
}
.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 56px; height: 3px;
    background: var(--gold);
    margin: 0.7rem auto 0;
    border-radius: 2px;
}
.section-header.light h2 { color: var(--white); }
.section-header p { color: var(--gray); font-size: 1.05rem; }
.section-header.light p { color: rgba(255,255,255,0.78); }

/* === ZIMMER === */
.zimmer-section { background: var(--cream); }

.zimmer-tagline {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--teal-dark);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.zimmer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
    background: var(--white);
    transition: box-shadow var(--ease);
    position: relative;
    cursor: pointer;
}
.zimmer-card .card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.zimmer-card .btn {
    position: relative;
    z-index: 2;
}
.zimmer-card:hover { box-shadow: var(--shadow-lg); }
.zimmer-card:last-child { margin-bottom: 0; }

.zimmer-card.reverse {
    direction: rtl;
}
.zimmer-card.reverse > * { direction: ltr; }

.zimmer-gallery {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}
.zimmer-gallery img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.zimmer-card:hover .zimmer-gallery img { transform: scale(1.05); }

.zimmer-name-badge {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    color: var(--white);
    letter-spacing: 0.04em;
    box-shadow: 0 2px 14px rgba(0,0,0,0.25);
}
.badge-koje { background: var(--teal); }
.badge-koi  { background: var(--gold); }

.btn-koi {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-koi:hover {
    background: #c4831e;
    border-color: #c4831e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,149,46,0.4);
}

.zimmer-details {
    padding: 3rem 3rem 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.zimmer-card.reverse .zimmer-details {
    padding: 3rem 3.5rem 3rem 3rem;
}

.zimmer-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.4rem;
}
#koi .zimmer-label { color: var(--gold); }
.zimmer-details h3 {
    font-family: var(--font-head);
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.1;
}
.zimmer-desc {
    color: var(--gray);
    margin-bottom: 1.75rem;
    line-height: 1.8;
    font-size: 0.97rem;
}
.amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1.2rem;
    margin-bottom: 2rem;
}
.amenities li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--dark);
}
.amenities li i {
    color: var(--teal);
    width: 15px;
    font-size: 0.82rem;
    flex-shrink: 0;
}

/* === AUSSTATTUNG === */
.ausstattung-section {
    background: linear-gradient(145deg, #0a3d4d 0%, #0a5f75 35%, #1A9BB8 100%);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--ease);
    backdrop-filter: blur(6px);
}
.feature-card:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.feature-card i {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: block;
}
.feature-card h4 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* === BEWERTUNGEN === */
.bewertungen-section { background: var(--gray-light); }

.bewertung-score-banner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem 1.8rem;
    max-width: 420px;
    margin: 0 auto 3rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.score-badge-large {
    background: #003580;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.4rem 0.9rem;
    flex-shrink: 0;
    font-family: var(--font-body);
}
.score-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.score-info strong {
    font-size: 1.05rem;
    color: var(--dark);
}
.score-info span {
    font-size: 0.82rem;
    color: var(--gray);
}
.booking-brand {
    color: #003580;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.review-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--ease), box-shadow var(--ease);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.review-score {
    background: #003580;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    flex-shrink: 0;
    font-family: var(--font-body);
}
.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.review-meta strong {
    color: var(--dark);
    font-size: 0.95rem;
}
.review-meta span {
    color: var(--gray);
    font-size: 0.78rem;
}
.review-headline {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.92rem;
    margin: 0;
}
.review-text {
    color: #4a4a4a;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}
.reviews-source {
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.reviews-source i { color: #003580; }

/* === LAGE === */
.lage-section {
    background: var(--gray-light);
    padding: 3.5rem 0;
}
.lage-banner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: var(--white);
    border-radius: 18px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.wappen-img {
    width: 110px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.lage-text h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.6rem;
}
.lage-text p {
    color: #4a4a4a;
    line-height: 1.75;
    font-size: 0.95rem;
}
.wappen-footer {
    height: 22px;
    vertical-align: middle;
    margin-left: 0.4rem;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
.wappen-footer-brand {
    height: 52px;
    width: auto;
    margin-top: 1rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    opacity: 0.85;
}

/* === BUCHEN === */
.buchen-section { background: var(--gray-light); }
.booking-widget {
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 420px;
}
.widget-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 300px;
    color: var(--gray);
    text-align: center;
    padding: 3rem;
}
.widget-placeholder i {
    font-size: 3rem;
    color: var(--teal);
    opacity: 0.35;
}
.widget-placeholder p { font-size: 1.1rem; font-weight: 500; }
.widget-placeholder small { font-size: 0.82rem; opacity: 0.55; }

/* === BUCHUNGS-GRID === */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.booking-room {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.booking-room-label {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    padding: 0.65rem 1.5rem;
    letter-spacing: 0.04em;
}
.booking-room iframe {
    display: block;
    border: none;
    width: 100% !important;
}
.booking-room .smallDevices { display: none; }
.booking-room .bigDevices   { display: block; }

@media (max-width: 860px) {
    .booking-grid { grid-template-columns: 1fr; }
    .booking-room .smallDevices { display: block; }
    .booking-room .bigDevices   { display: none; }
}

/* === FOOTER === */
.footer {
    background: #161616;
    color: rgba(255,255,255,0.68);
    padding: 4.5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    height: 62px;
    width: auto;
    margin-bottom: 1.1rem;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.75;
}
.footer-contact h4,
.footer-legal h4 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
}
.footer-contact i { color: var(--teal); width: 15px; margin-top: 4px; flex-shrink: 0; }
.footer-contact a,
.footer-legal a { color: rgba(255,255,255,0.68); transition: color var(--ease); }
.footer-contact a:hover,
.footer-legal a:hover { color: var(--teal); }
.footer-legal ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-legal li a { font-size: 0.88rem; }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    transition: all var(--ease);
}
.social-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--teal); }

/* === RESPONSIVE: TABLET === */
@media (max-width: 960px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .zimmer-card,
    .zimmer-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .zimmer-gallery { min-height: 360px; }
    .zimmer-details,
    .zimmer-card.reverse .zimmer-details { padding: 2.5rem 2rem; }
}

/* === RESPONSIVE: MOBILE === */
@media (max-width: 640px) {
    .section { padding: 4rem 0; }

    .nav-menu { display: none; }
    .hamburger { display: flex; }

    .hero-logo { width: 220px; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .zimmer-gallery { min-height: 280px; }
    .zimmer-details,
    .zimmer-card.reverse .zimmer-details { padding: 2rem 1.5rem; }
    .amenities { grid-template-columns: 1fr; }

    .features-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .lage-banner { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1.5rem; }
    .wappen-img { width: 80px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
