/* ============================================
   ANTICA CANTINA - DARK & ELEGANT THEME
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-bg: #0f0f0f;
    --color-bg-alt: #1a1a1a;
    --color-bg-card: #1e1e1e;
    --color-text: #f5f0e8;
    --color-text-muted: #a8a096;
    --color-gold: #c9a96e;
    --color-gold-light: #dfc699;
    --color-wine: #8d2424;
    --color-wine-light: #a83232;
    --color-accent: #c9a96e;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --container-width: 1200px;
    --nav-height: 80px;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

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

::selection {
    background: var(--color-gold);
    color: var(--color-bg);
}

::-moz-selection {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* --- Mobile Quick-Links --- */
.mobile-quick-links {
    display: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
}

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

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

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

/* --- Page Fade-In --- */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.btn:hover {
    color: var(--color-bg);
}

.btn:hover::before {
    left: 0;
}

.btn-cta {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 16px 40px;
    font-size: 0.9rem;
    background: var(--color-gold);
    color: var(--color-bg);
    border: 2px solid var(--color-gold);
}

.btn-submit::before {
    background: var(--color-gold-light);
}

.btn-submit:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    transition: all var(--transition-smooth);
    height: var(--nav-height);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-logo:hover {
    color: var(--color-gold-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

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

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

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

/* --- Hamburger Menu --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* --- Hero Logo Block (full-width band) --- */
.hero-logo-block {
    margin-bottom: 2.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    display: block;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border: none;
    border-top: 1px solid rgba(201, 169, 110, 0.3);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.logo-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4em;
    line-height: 1;
    margin: 0.5rem 0;
}

.logo-antica {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.logo-cantina {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.8rem;
    margin-bottom: 1rem;
}

.logo-decorative-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 auto;
}

.hero-logo {
    max-width: 280px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: rgba(245, 240, 232, 0.9);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.85);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.8rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 1rem auto 0;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.85);
    margin-top: 1rem;
}

/* ============================================
   ABOUT / BENVENUTO SECTION
   ============================================ */
.about {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-text p:first-child::first-letter {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    color: var(--color-gold);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center center;
    border: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

/* ============================================
   SPEISEKARTE SECTION
   ============================================ */
.speisekarte {
    background: var(--color-bg-alt);
}

.tab-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid #333;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.tab-btn.active {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeInMenu 0.4s ease;
}

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

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

.menu-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #2a2a2a;
    transition: background var(--transition-fast);
}

.menu-item:hover {
    background: rgba(201, 169, 110, 0.04);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--color-text);
    font-weight: 400;
}

.menu-item-price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
    font-style: italic;
}

.menu-note {
    text-align: center;
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
    padding: 1.5rem;
    border-top: 1px solid #2a2a2a;
}

.menu-section-heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    text-align: center;
    margin: 2.5rem 0 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tab-panel > .menu-section-heading:first-child {
    margin-top: 0;
}

.menu-subheading {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-gold);
    text-align: center;
    margin: 1.5rem 0 0.5rem;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* MITNEHMEN — eigene Sektion mit Info-Block */
.mitnehmen {
    background: var(--color-bg);
}

.mitnehmen-info {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border: 1px solid #2a2a2a;
    background: rgba(201, 169, 110, 0.04);
}

.mitnehmen-intro {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.mitnehmen-meta p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0.4rem 0;
}

.mitnehmen-meta strong {
    color: var(--color-text);
    font-weight: 700;
}

.mitnehmen-meta a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 700;
}

.mitnehmen-meta a:hover {
    text-decoration: underline;
}

/* ============================================
   GALERIE SECTION
   ============================================ */
.galerie {
    background: var(--color-bg);
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: 4px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 14px);
    margin: 0 7px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: brightness(0.85) saturate(1.1) sepia(0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide:hover img {
    filter: brightness(1) saturate(1.1) sepia(0);
    transform: scale(1.03);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.carousel-prev {
    left: -8px;
}

.carousel-next {
    right: -8px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ============================================
   RESERVIERUNG SECTION
   ============================================ */
.reservierung {
    background: var(--color-bg-alt);
}

.reservierung-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: stretch;
}

/* Phone CTA — hidden on desktop, shown on mobile */
.reservation-phone-cta {
    display: none;
    text-align: center;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.phone-cta-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 12px;
}

.btn-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-phone-cta:hover {
    background: #d4a84a;
    transform: translateY(-1px);
}

.btn-phone-cta svg {
    flex-shrink: 0;
}

.phone-cta-divider {
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid #333;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a096' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

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

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

/* --- Reservierung Info --- */
.reservierung-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}

.info-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border: 1px solid #2a2a2a;
    border-radius: 2px;
    flex: 1;
}

.info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.info-highlight {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-phone-btn {
    display: inline-flex !important;
    margin-top: 12px;
    font-size: 1.1rem;
}

.opening-hours {
    list-style: none;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.opening-hours li:last-child {
    border-bottom: none;
}

.opening-hours li span {
    color: var(--color-text);
    font-weight: 700;
    min-width: 100px;
}

.opening-hours .ruhetag {
    color: var(--color-wine-light);
}

.info-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-text-muted);
}

/* --- Form Message --- */
.form-message {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 2px;
    margin-top: 0.5rem;
}

.form-message.success {
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid var(--color-gold);
    color: var(--color-gold-light);
}

.form-message.error {
    background: rgba(141, 36, 36, 0.15);
    border: 1px solid var(--color-wine-light);
    color: var(--color-wine-light);
}

/* --- Active Nav Link --- */
.nav-link.active {
    color: var(--color-gold);
}

.nav-link.active::after {
    width: 100%;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--color-bg-alt);
}

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

.testimonial-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border: 1px solid #2a2a2a;
    border-top: 2px solid var(--color-gold);
    text-align: center;
}

.testimonial-stars {
    font-size: 1.1rem;
    color: #e8a900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.testimonials-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.testimonials-link:hover {
    color: var(--color-gold-light);
}

/* ============================================
   GOOGLE REVIEWS BADGE
   ============================================ */
.google-reviews-badge {
    background: var(--color-bg-card);
    padding: 1.5rem;
    border: 1px solid #2a2a2a;
    text-align: center;
    margin-top: 1rem;
}

.google-reviews-badge h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.3rem;
    color: #e8a900;
    letter-spacing: 2px;
}

.rating-stars .star-half {
    display: inline-block;
    position: relative;
    color: #555;
}

.rating-stars .star-half::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #e8a900;
    clip-path: inset(0 50% 0 0);
}

.rating-number {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

.rating-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.btn-review-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

.btn-review-link:hover {
    color: var(--color-gold-light);
}

/* ============================================
   KONTAKT SECTION
   ============================================ */
.kontakt {
    background: var(--color-bg);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.kontakt-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 4px;
}

.kontakt-item h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}

.kontakt-item p {
    color: var(--color-text);
    line-height: 1.6;
}

.kontakt-item a {
    color: var(--color-gold);
    transition: color var(--transition-fast);
}

.kontakt-item a:hover {
    color: var(--color-gold-light);
}

.kontakt-map iframe {
    width: 100%;
    height: 450px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    filter: brightness(0.85) contrast(1.1) saturate(0);
    transition: filter var(--transition-smooth);
}

.kontakt-map iframe:hover {
    filter: brightness(0.9) contrast(1.05) saturate(0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a0a0a;
    padding: 4rem 0 0;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1a1a1a;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--color-text-muted);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-impressum {
    color: var(--color-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
    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: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

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

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    cursor: default;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 2.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10000;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 2.8rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    padding: 16px;
    z-index: 10000;
}

.lightbox-arrow:hover {
    opacity: 1;
}

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

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: var(--color-bg-card);
    border-top: 1px solid rgba(201, 169, 110, 0.3);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    padding: 20px 24px;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    flex: 1;
}

.cookie-text a {
    color: var(--color-gold);
    font-weight: 700;
}

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

.cookie-btn {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--color-gold);
    color: var(--color-bg);
    border: 2px solid var(--color-gold);
}

.cookie-btn-accept:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-text-muted);
    border: 2px solid #333;
}

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

/* Map Placeholder */
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 450px;
    background: var(--color-bg-alt);
    border: 1px solid #2a2a2a;
    text-align: center;
    padding: 40px;
    color: var(--color-text-muted);
}

.map-placeholder p {
    margin-bottom: 16px;
}

.map-placeholder a {
    color: var(--color-gold);
    font-weight: 700;
}

/* ============================================
   LEGAL PAGES (Impressum/Datenschutz)
   ============================================ */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.4rem;
    color: var(--color-gold);
    margin-bottom: 2.5rem;
}

.legal-content h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin-top: 1rem;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

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

.legal-content a {
    color: var(--color-gold);
    font-weight: 700;
}

.legal-back {
    display: inline-block;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gold);
}

.legal-back:hover {
    color: var(--color-gold-light);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 2rem;
}

.error-code {
    font-family: var(--font-serif);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: -20px;
}

.error-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.error-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 400px;
}

/* ============================================
   MOBILE NAVIGATION OVERLAY
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
}

/* ============================================
   RESPONSIVE: TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .about-grid {
        gap: 3rem;
    }

    .gallery-grid {
        gap: 1rem;
    }

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

    .reservation-phone-cta {
        display: block;
    }

    .kontakt-grid {
        gap: 3rem;
    }

    .footer-grid {
        gap: 2rem;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .hero {
        background-attachment: scroll;
    }

    .logo-antica,
    .logo-cantina {
        font-size: 3.2rem;
    }

    .logo-tagline {
        font-size: 0.75rem;
        letter-spacing: 5px;
    }

    .hero-logo-block {
        padding: 2rem 1.5rem;
    }

    .hero-logo {
        max-width: 220px;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

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

    /* Menu */
    .tab-navigation {
        gap: 0.4rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0 1rem 0.75rem;
        margin-left: -1rem;
        margin-right: -1rem;
        scrollbar-width: thin;
        scrollbar-color: var(--color-gold) transparent;
    }

    .tab-navigation::-webkit-scrollbar {
        height: 3px;
    }

    .tab-navigation::-webkit-scrollbar-thumb {
        background: var(--color-gold);
    }

    .tab-btn {
        padding: 8px 14px;
        font-size: 0.65rem;
        letter-spacing: 1px;
        flex-shrink: 0;
        white-space: nowrap;
    }

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

    .menu-item {
        padding: 1rem 0.5rem;
    }

    .menu-section-heading {
        font-size: 1.25rem;
        margin: 2rem 0 0.75rem;
    }

    .menu-subheading {
        font-size: 0.95rem;
        margin: 1.2rem 0 0.4rem;
    }

    .mitnehmen-info {
        padding: 1rem;
    }

    .mitnehmen-meta p {
        font-size: 0.85rem;
    }

    /* Gallery carousel — 1 slide on mobile */
    .carousel-slide {
        flex: 0 0 calc(100% - 14px);
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .carousel-prev {
        left: 4px;
    }

    .carousel-next {
        right: 4px;
    }

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

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

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

    .kontakt-map iframe {
        height: 350px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cookie Banner */
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

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

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

    /* Lightbox */
    .lightbox-arrow {
        font-size: 2rem;
        padding: 12px;
    }

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

    /* Slimmer navbar on mobile */
    .navbar {
        height: 50px;
    }

    .nav-logo {
        font-size: 1.3rem;
        transition: opacity 0.3s ease;
    }

    .nav-toggle span {
        width: 24px;
    }

    /* Hide navbar logo on mobile when not scrolled */
    .navbar:not(.scrolled) .nav-logo {
        opacity: 0;
        pointer-events: none;
    }

    .navbar.scrolled .nav-logo {
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile Quick-Links */
    .mobile-quick-links {
        display: flex;
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        z-index: 999;
        gap: 0;
        background: var(--color-bg);
        border-bottom: 1px solid #2a2a2a;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(-100%);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .mobile-quick-links.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .quick-link {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 8px;
        font-family: var(--font-sans);
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--color-gold);
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .quick-link:first-child {
        border-right: 1px solid #2a2a2a;
    }

    .quick-link:hover,
    .quick-link:active {
        background: rgba(201, 169, 110, 0.08);
        color: var(--color-gold-light);
    }

    .quick-link-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    html {
        scroll-padding-top: 90px;
    }

    /* Mobile font adjustments */
    .about-text p {
        font-size: 0.95rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .menu-item-name {
        font-size: 0.95rem;
    }

    .menu-item-desc {
        font-size: 0.8rem;
    }

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

    .footer-brand p {
        max-width: none;
    }

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

/* ============================================
   RESPONSIVE: SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .logo-antica,
    .logo-cantina {
        font-size: 2.4rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .hero-logo-block {
        padding: 1.8rem 1rem;
    }

    .hero-logo {
        max-width: 180px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.75rem;
    }

    .about-text p:first-child::first-letter {
        font-size: 2.8rem;
    }

    .gallery-item {
        flex: 0 0 85vw;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-phone-btn {
        font-size: 1rem;
    }

    .kontakt-map iframe {
        height: 280px;
    }
}