/* ================================================
   LA STELLA - Italienisches Restaurant
   Warmes, einladendes Design
   ================================================ */

/* --- Custom Properties --- */
:root {
    /* Farben */
    --bg-light: #faf7f2;
    --bg-dark: #1a1410;
    --color-primary: #c45d3e;
    --color-primary-hover: #a84d33;
    --color-olive: #5a6e3c;
    --color-gold: #d4a853;
    --color-text: #2c2318;
    --color-text-light: #faf7f2;
    --color-text-muted: #7a6e62;
    --color-border: #e0d5c7;
    --color-border-dark: #3a3025;

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-width: 1200px;

    /* Transition */
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--color-primary-hover);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* --- Sektions-Header --- */
.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section__label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.section__label--light {
    color: var(--color-gold);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.section__title--light {
    color: var(--color-text-light);
}

.section__line {
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto;
}

.section__line--gold {
    background: var(--color-gold);
}

/* --- Dunkle Sektionen --- */
.dark-section {
    background-color: var(--bg-dark);
    color: var(--color-text-light);
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(250, 247, 242, 0.85);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color var(--transition);
    position: relative;
}

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

.nav__link:hover,
.nav__link.active {
    color: var(--color-gold);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-text-light);
    transition: transform var(--transition), opacity var(--transition);
}

.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 {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero.webp') center/cover no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 20, 16, 0.4) 0%,
        rgba(26, 20, 16, 0.2) 40%,
        rgba(26, 20, 16, 0.6) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 0 1.5rem;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(250, 247, 242, 0.8);
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 247, 242, 0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-text-light);
}

.btn--primary:hover {
    background: var(--color-primary-hover);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 93, 62, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(250, 247, 242, 0.4);
}

.btn--outline:hover {
    background: rgba(250, 247, 242, 0.1);
    border-color: var(--color-text-light);
    color: var(--color-text-light);
}

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

/* ================================================
   WILLKOMMEN
   ================================================ */
.willkommen__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.willkommen__text .section__label {
    text-align: left;
}

.willkommen__text .section__title {
    text-align: left;
}

.willkommen__text .section__line {
    margin: 0 0 2rem 0;
}

.willkommen__desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.willkommen__quote {
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--color-gold);
    background: rgba(212, 168, 83, 0.05);
}

.willkommen__quote p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.willkommen__quote cite {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: normal;
}

/* Platzhalter-Bilder */
.placeholder-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-img span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.placeholder-img--warm {
    background: linear-gradient(135deg, #8b6e4e, #c49a6c, #a07850);
}

.placeholder-img--food1 {
    background: linear-gradient(135deg, #c45d3e, #d4a853, #c45d3e);
}

.placeholder-img--food2 {
    background: linear-gradient(135deg, #d4a853, #8b6e4e, #c49a6c);
}

.placeholder-img--interior1 {
    background: linear-gradient(135deg, #5a6e3c, #8b6e4e, #3a4a25);
}

.placeholder-img--food3 {
    background: linear-gradient(135deg, #a84d33, #d4a853, #c45d3e);
}

.placeholder-img--interior2 {
    background: linear-gradient(135deg, #8b6e4e, #5a6e3c, #c49a6c);
}

.placeholder-img--food4 {
    background: linear-gradient(135deg, #c49a6c, #c45d3e, #d4a853);
}

/* ================================================
   SPEISEKARTE
   ================================================ */
.menu-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menu-nav__btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border-dark);
    color: rgba(250, 247, 242, 0.7);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.menu-nav__btn:hover,
.menu-nav__btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
}

.menu-category.hidden {
    display: none;
}

.menu-category__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.menu-category__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.menu-divider {
    width: 120px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.menu-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(250, 247, 242, 0.08);
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.3rem;
}

.menu-item__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.menu-item__price {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    white-space: nowrap;
}

.menu-item__price small {
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.7;
}

.menu-item__desc {
    font-size: 0.88rem;
    color: rgba(250, 247, 242, 0.55);
    line-height: 1.5;
}

.menu-item__tags {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.4rem;
}

.tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

.tag--v {
    background: var(--color-olive);
    color: #fff;
}

.tag--gf {
    background: var(--color-gold);
    color: var(--bg-dark);
}

.menu-legend {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* ================================================
   GALERIE
   ================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item__overlay span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    border: 1px solid rgba(250, 247, 242, 0.5);
    padding: 0.5rem 1.2rem;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    max-width: 80vw;
    max-height: 80vh;
}

.lightbox__content img {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
    line-height: 1;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity var(--transition);
    padding: 1rem;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
}

.lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(250, 247, 242, 0.5);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* ================================================
   RESERVIERUNG
   ================================================ */
.reservation-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 93, 62, 0.1);
}

.form-input::placeholder {
    color: #bbb;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6e62' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-top: 0.3rem;
    min-height: 1.2em;
}

.form-input.error {
    border-color: var(--color-primary);
}

.form-success {
    display: none;
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(90, 110, 60, 0.1);
    border: 1px solid var(--color-olive);
    color: var(--color-olive);
    font-weight: 700;
    text-align: center;
}

.form-success.visible {
    display: block;
}

/* Reservierungs-Info */
.reservation-info {
    padding: 2rem;
    background: rgba(212, 168, 83, 0.05);
    border: 1px solid var(--color-border);
}

.reservation-info__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.reservation-info__text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.reservation-info__phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.reservation-info__phone svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.reservation-info__phone a {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
}

.reservation-info__phone a:hover {
    color: var(--color-primary);
}

.reservation-info__hours {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.reservation-info__hours strong {
    color: var(--color-text);
}

/* ================================================
   KONTAKT / OEFFNUNGSZEITEN
   ================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-hours__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

/* Oeffnungszeiten-Tabelle */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.hours-table td {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(250, 247, 242, 0.08);
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 700;
    color: var(--color-text-light);
    width: 45%;
}

.hours-table td:last-child {
    color: rgba(250, 247, 242, 0.65);
    text-align: right;
}

.hours-table tr:first-child td:last-child {
    color: var(--color-primary);
    font-style: italic;
}

/* Kontaktdaten */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details__item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.contact-details__item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-details__item span,
.contact-details__item a {
    color: rgba(250, 247, 242, 0.75);
}

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

/* Google Maps */
.contact-map {
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: #120e0a;
    color: rgba(250, 247, 242, 0.6);
    padding: 4rem 0 1.5rem;
}

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

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer__hours p,
.footer__contact p {
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer__contact a {
    color: rgba(250, 247, 242, 0.6);
}

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

.footer__social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(250, 247, 242, 0.15);
    border-radius: 50%;
    color: rgba(250, 247, 242, 0.6);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 247, 242, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer__credit a {
    color: var(--color-gold);
}

.footer__credit a:hover {
    color: var(--color-primary);
}

/* ================================================
   KUNDENSTIMMEN
   ================================================ */
.kundenstimmen {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    padding: 2rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(196, 93, 62, 0.1);
}

.review-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.12;
    position: absolute;
    top: 0.2rem;
    right: 1.5rem;
    line-height: 1;
}

.review-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    quotes: none;
    border: none;
    padding: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.review-source {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* Bewertungs-Zusammenfassung */
.reviews-summary {
    text-align: center;
}

.reviews-summary__label {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.reviews-summary__scores {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 1.5rem 3rem;
}

.reviews-summary__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.reviews-summary__score {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.reviews-summary__stars {
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.reviews-summary__platform {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.reviews-summary__divider {
    width: 1px;
    height: 60px;
    background: var(--color-border);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* --- Mobile (bis 768px) --- */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    /* Navigation Mobile */
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(26, 20, 16, 0.98);
        backdrop-filter: blur(10px);
        transition: right var(--transition);
        padding: 5rem 2rem 2rem;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(250, 247, 242, 0.08);
    }

    .nav__link::after {
        display: none;
    }

    /* Willkommen */
    .willkommen__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .willkommen__text .section__label,
    .willkommen__text .section__title {
        text-align: center;
    }

    .willkommen__text .section__line {
        margin: 0 auto 2rem auto;
    }

    /* Speisekarte */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-nav__btn {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }

    /* Galerie */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Reservierung */
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    /* Kontakt */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Lightbox */
    .lightbox__content img {
        max-width: 95vw;
    }

    .lightbox__prev { left: 0.3rem; }
    .lightbox__next { right: 0.3rem; }
}

/* --- Tablet (769px - 1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .willkommen__grid {
        gap: 2.5rem;
    }

    .menu-grid {
        gap: 1.5rem;
    }

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

    .reservation-grid {
        gap: 2.5rem;
    }
}

/* --- Kleine Bildschirme (max 480px) --- */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hours-table td:last-child {
        font-size: 0.82rem;
    }
}

/* --- Kundenstimmen Responsive --- */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-summary__scores {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    .reviews-summary__divider {
        width: 50px;
        height: 1px;
    }
}
