/* ===== Local Fonts (DSGVO-konform) ===== */
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
    --blue-dark: #0f2b4c;
    --blue: #1a365d;
    --blue-light: #2a4a7f;
    --gold: #c8a951;
    --gold-light: #e0c878;
    --olive: #6b7c3e;
    --cream: #faf8f2;
    --cream-dark: #f0ede4;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --red-muted: #8b3a3a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 50px -10px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-sm: 8px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15, 43, 76, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
    background: rgba(15, 43, 76, 0.98);
    box-shadow: var(--shadow-lg);
}
.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color .2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: transform .3s, opacity .3s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 40%, #1e3a5f 60%, #0f2b4c 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200, 169, 81, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(42, 74, 127, 0.15) 0%, transparent 60%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 17.5 L55 42.5 L30 55 L5 42.5 L5 17.5 Z' fill='none' stroke='rgba(200,169,81,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}
.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.hero-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    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%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all .25s;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: var(--gold);
    color: var(--blue-dark);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 169, 81, 0.4);
}
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}
.btn-full { width: 100%; }

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
}
.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 6rem 0;
    background: var(--white);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.menu-tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    transition: all .2s;
}
.menu-tab:hover {
    color: var(--blue);
    border-color: var(--blue);
}
.menu-tab.active {
    background: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-dark);
}

.menu-category { display: none; }
.menu-category.active { display: block; animation: fadeIn .3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.category-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream-dark);
}
.category-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--blue-dark);
}
.category-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
}

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

.menu-item {
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--cream-dark);
    transition: all .2s;
    background: var(--white);
}
.menu-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}
.menu-item.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(200,169,81,0.03) 0%, rgba(200,169,81,0.08) 100%);
}
.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}
.menu-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    min-width: 1.5rem;
}
.menu-item h4 {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}
.menu-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
}
.menu-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-left: 2.25rem;
}
.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.pizza-extras {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
}
.pizza-extras h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--blue-dark);
}
.pizza-extras p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== Hours Section ===== */
.hours-section {
    padding: 6rem 0;
    background: var(--cream);
}
.hours-card {
    max-width: 550px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hours-grid {
    padding: 2rem;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--cream-dark);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day {
    font-weight: 600;
    color: var(--gray-800);
}
.hours-row .time {
    font-weight: 500;
    color: var(--blue);
}
.hours-row.closed .day { color: var(--gray-400); }
.hours-row.closed .time {
    color: var(--red-muted);
    font-style: italic;
}
.hours-note {
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: var(--white);
    text-align: center;
}
.hours-note p {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 10px;
    color: var(--blue);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.2rem;
}
.contact-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}
.contact-item a {
    color: var(--blue);
    font-weight: 600;
}
.contact-item a:hover { color: var(--gold); }

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: var(--cream-dark);
    border-radius: var(--radius);
    text-align: center;
    color: var(--gray-600);
}
.map-consent-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}
.map-consent-content svg { color: var(--blue); }
.map-consent-content p {
    font-size: 0.9rem;
    max-width: 280px;
}

/* ===== Footer ===== */
.footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 1.5rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a {
    font-size: 0.9rem;
    transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== Legal Pages ===== */
.legal-section {
    padding: 8rem 0 4rem;
    background: var(--white);
    min-height: 80vh;
}
.legal-section h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
}
.legal-note {
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.legal-section h2 {
    font-size: 1.15rem;
    color: var(--blue-dark);
    margin: 2rem 0 0.5rem;
}
.legal-section p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.legal-section a {
    color: var(--blue);
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--blue-dark);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-120%);
        transition: transform .3s;
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .menu-tabs {
        gap: 0.35rem;
    }
    .menu-tab {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .menu-item-header {
        flex-wrap: wrap;
    }
    .menu-price {
        width: 100%;
        margin-left: 2.25rem;
    }
}
