/* =========================
   GRUNDEINSTELLUNGEN
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111111;
    color: #ffffff;
}

section {
    scroll-margin-top: 100px;
}

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

button {
    font: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #d99a35;
    outline-offset: 4px;
}


/* =========================
   GEMEINSAME ELEMENTE
========================= */

.section-label {
    display: block;
    margin-bottom: 12px;

    color: #b97818;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-header {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-header h2 {
    margin-bottom: 18px;

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
}

.section-header p {
    max-width: 600px;

    color: #5d5d5d;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-block;

    padding: 16px 27px;

    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;

    transition:
        transform 0.25s,
        background 0.25s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: #d99a35;
    color: #111111;
}

.btn-primary:hover {
    background: #efad43;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);

    color: #ffffff;

    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.45)
        );
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px 7%;

    transition:
        background 0.3s ease,
        padding 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar.scrolled {
    padding: 16px 7%;

    background: rgba(15, 15, 15, 0.94);

    backdrop-filter: blur(12px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);
}

.logo {
    font-size: 26px;
    font-weight: 800;

    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 32px;

    list-style: none;
}

.nav-links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition:
        opacity 0.3s,
        color 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-links a.active {
    color: #d99a35;
}

.nav-actions {
    display: flex;
    align-items: center;

    gap: 14px;
}

.nav-button {
    padding: 13px 22px;

    background: #d99a35;
    color: #111111;

    text-decoration: none;

    border-radius: 999px;

    font-weight: 700;

    transition:
        transform 0.25s,
        background 0.25s;
}

.nav-button:hover {
    transform: translateY(-2px);

    background: #efad43;
}

.menu-toggle {
    display: none;

    background: transparent;
    border: none;

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 5;

    width: 90%;
    max-width: 750px;

    margin: auto 7%;

    padding-bottom: 80px;

    animation: heroFadeIn 0.9s ease forwards;
}

.hero-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #d99a35;

    font-size: 16px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-content h1 {
    max-width: 900px;

    margin-bottom: 28px;

    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.95;
}

.hero-content p {
    max-width: 600px;

    margin-bottom: 35px;

    color: #dddddd;

    font-size: 19px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


/* =========================
   SPEZIALITÄTEN
========================= */

.specialties {
    padding: 110px 7%;

    background: #f5f0e8;
    color: #171717;
}

.specialty-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.specialty-card {
    overflow: hidden;

    padding: 22px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.07);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.specialty-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}

.specialty-card img {
    width: 100%;
    height: 220px;

    object-fit: cover;

    border-radius: 14px;

    margin-bottom: 22px;
}

.specialty-card h3 {
    margin-bottom: 15px;

    font-size: 26px;
}

.specialty-card p {
    margin-bottom: 24px;

    color: #666666;

    line-height: 1.6;
}

.specialty-card a {
    margin-top: auto;

    color: #b97818;

    font-weight: 800;

    text-decoration: none;
}


/* =========================
   GALERIE
========================= */

.gallery {
    padding: 110px 7%;

    background: #ebe3d7;
    color: #171717;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 280px);

    gap: 20px;
}

.gallery-item {
    overflow: hidden;

    border-radius: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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

.gallery-large {
    grid-row: span 2;
}


/* =========================
   SPEISEKARTEN-VORSCHAU
========================= */

.menu-section {
    padding: 110px 7%;

    background: #151515;
    color: #ffffff;
}

.menu-header {
    margin-bottom: 50px;
}

.menu-section .section-header p {
    color: #bdbdbd;
}

.menu-list {
    max-width: 900px;

    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 24px;

    padding: 28px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-image {
    width: 90px;
    height: 90px;

    object-fit: cover;

    border-radius: 14px;

    flex-shrink: 0;
}

.menu-item-content {
    flex: 1;
}

.menu-item h3 {
    margin-bottom: 8px;

    font-size: 24px;
}

.menu-item p {
    color: #aaaaaa;

    line-height: 1.5;
}

.menu-price {
    color: #d99a35;

    font-size: 22px;
    font-weight: 800;

    white-space: nowrap;
}

.menu-action {
    margin-top: 40px;
}


/* =========================
   KONTAKT + ÖFFNUNGSZEITEN
========================= */

.contact-section {
    padding: 110px 7%;

    background: #efe7db;
    color: #171717;
}

.contact-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;
}

.contact-info h2 {
    margin: 12px 0 22px;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;
}

.contact-intro {
    max-width: 600px;

    margin-bottom: 40px;

    color: #666666;

    font-size: 18px;
    line-height: 1.7;
}

.contact-card {
    padding: 26px 0;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    margin-bottom: 10px;

    font-size: 22px;
}

.contact-card p {
    margin-bottom: 12px;

    color: #666666;

    line-height: 1.6;
}

.contact-link {
    color: #b97818;

    text-decoration: none;

    font-weight: 800;
}

.contact-link:hover {
    text-decoration: underline;
}


/* Öffnungszeiten */

.opening-hours {
    padding: 40px;

    background: #1d1d1d;
    color: #ffffff;

    border-radius: 22px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);
}

.hours-list {
    margin-top: 28px;
}

.hours-row {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

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

.hours-row span {
    color: #cfcfcf;
}

.hours-row strong {
    white-space: nowrap;
}

.closed {
    color: #d99a35;
}


/* =========================
   STANDORT / KARTE
========================= */

.location-section {
    padding: 110px 7%;

    background: #f5f0e8;
    color: #171717;
}

.location-header {
    max-width: 700px;

    margin-bottom: 40px;
}

.location-header h2 {
    margin: 12px 0 18px;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;
}

.location-header p {
    color: #666666;

    font-size: 18px;
    line-height: 1.7;
}

.location-action {
    margin-top: 30px;
}


/* =========================
   GOOGLE MAPS EINWILLIGUNG
========================= */

.map-container {
    overflow: hidden;

    position: relative;

    width: 100%;
    height: 480px;

    background: #ded5c8;

    border-radius: 24px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.12);
}

.map-container iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

.map-consent {
    width: 100%;
    height: 100%;

    padding: 40px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.map-icon {
    display: block;

    margin-bottom: 20px;

    font-size: 45px;
}

.map-consent h3 {
    margin-bottom: 12px;

    font-size: 28px;
}

.map-consent p {
    max-width: 500px;

    margin-bottom: 25px;

    color: #666666;

    font-size: 16px;
    line-height: 1.6;
}

.map-external-link {
    margin-top: 20px;

    color: #8f601b;

    font-weight: 700;

    text-decoration: none;
}

.map-external-link:hover {
    text-decoration: underline;
}


/* =========================
   ÜBER UNS
========================= */

.about {
    padding: 110px 7%;

    background: #151515;

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 70px;

    align-items: center;
}

.about-content {
    max-width: 700px;
}

.about-content h2 {
    margin-bottom: 25px;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;
}

.about-content p {
    margin-bottom: 20px;

    color: #cfcfcf;

    font-size: 18px;
    line-height: 1.8;
}

.about-content .btn {
    margin-top: 15px;
}

.about-box {
    padding: 40px;

    background: #202020;

    border-radius: 22px;

    display: flex;
    flex-direction: column;

    gap: 25px;
}

.about-stat {
    padding-bottom: 25px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.about-stat:last-child {
    padding-bottom: 0;

    border-bottom: none;
}

.about-stat strong {
    display: block;

    margin-bottom: 6px;

    color: #d99a35;

    font-size: 26px;
}

.about-stat span {
    color: #bbbbbb;

    font-size: 16px;
}


/* =========================
   KOMPLETTE SPEISEKARTE
   speisekarte.html
========================= */

.menu-page-header {
    min-height: 440px;

    padding-bottom: 70px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.85)
        ),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;
}

.menu-page-title {
    width: 86%;
    max-width: 800px;

    margin: 80px auto 0;
}

.menu-page-title h1 {
    margin: 10px 0 20px;

    font-size: clamp(45px, 7vw, 80px);

    line-height: 1;
}

.menu-page-title p {
    max-width: 600px;

    color: #cccccc;

    font-size: 18px;
    line-height: 1.7;
}

.full-menu {
    padding: 100px 7%;

    background: #f5f0e8;
    color: #171717;
}

.menu-category {
    max-width: 1200px;

    margin: 0 auto 80px;
}

.menu-category-heading {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 35px;
}

.menu-category-heading span {
    color: #b97818;

    font-weight: 800;
}

.menu-category-heading h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.full-menu-grid {
    display: flex;

    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 5px 4px 22px;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;
    scrollbar-color: #d99a35 #ded5c8;
}

/* Scrollbar für Chrome, Edge und Safari */
.full-menu-grid::-webkit-scrollbar {
    height: 8px;
}

.full-menu-grid::-webkit-scrollbar-track {
    background: #ded5c8;

    border-radius: 999px;
}

.full-menu-grid::-webkit-scrollbar-thumb {
    background: #d99a35;

    border-radius: 999px;
}

.full-menu-grid::-webkit-scrollbar-thumb:hover {
    background: #b97818;
}

.full-menu-card {
    overflow: hidden;

    flex: 0 0 340px;

    scroll-snap-align: start;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.full-menu-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}

.full-menu-card img {
    width: 100%;
    height: 260px;

    object-fit: cover;
}

.full-menu-card-content {
    padding: 28px;
}

.full-menu-card-title {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 12px;
}

.full-menu-card-title h3 {
    font-size: 24px;
}

.full-menu-card-title span {
    color: #b97818;

    font-size: 20px;
    font-weight: 800;

    white-space: nowrap;
}

.full-menu-card p {
    color: #666666;

    line-height: 1.6;
}

.back-home {
    max-width: 1100px;

    margin: 0 auto;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 70px 7% 30px;

    background: #0d0d0d;
    color: #ffffff;
}

.footer-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 60px;
}

.footer h3 {
    margin-bottom: 18px;

    font-size: 28px;
}

.footer h4 {
    margin-bottom: 18px;

    color: #d99a35;

    font-size: 16px;
}

.footer-brand p,
.footer-contact p {
    color: #aaaaaa;

    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer a {
    color: #cccccc;

    text-decoration: none;

    transition: color 0.25s;
}

.footer a:hover {
    color: #d99a35;
}

.footer-bottom {
    max-width: 1200px;

    margin: 55px auto 0;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.footer-bottom p {
    color: #777777;

    font-size: 14px;
}

.footer-legal {
    display: flex;

    gap: 20px;
}


/* =========================
   RECHTLICHE SEITEN
========================= */

.legal-header {
    min-height: 100px;

    background: #151515;
}

.legal-page {
    min-height: calc(100vh - 100px);

    padding: 90px 7%;

    background: #f5f0e8;
    color: #171717;
}

.legal-page > * {
    max-width: 900px;
}

.legal-page h1 {
    margin: 10px 0 55px;

    font-size: clamp(45px, 7vw, 75px);

    line-height: 1;
}

.legal-block {
    margin-bottom: 45px;

    padding-bottom: 40px;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.1);
}

.legal-block h2 {
    margin-bottom: 18px;

    font-size: 25px;
}

.legal-block p {
    margin-bottom: 12px;

    color: #555555;

    font-size: 17px;
    line-height: 1.8;
}

.legal-block a {
    color: #b97818;

    text-decoration: none;

    font-weight: 700;
}

.legal-block a:hover {
    text-decoration: underline;
}

.legal-back {
    margin-top: 50px;
}


/* =========================
   MOBILE FLOATING BUTTONS
========================= */

.mobile-actions {
    display: none;
}


/* =========================
   SCROLL ANIMATIONEN
========================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   HERO INTRO + SCROLL HINWEIS
========================= */

@keyframes heroFadeIn {
    from {
        opacity: 0;

        transform: translateY(25px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;

    left: 7%;
    bottom: 30px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 12px;

    color: #dddddd;

    font-size: 13px;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    position: relative;

    overflow: hidden;

    width: 45px;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.6);
}

.scroll-line::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: #d99a35;

    animation:
        scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}


/* =========================
   TABLET + HANDY
========================= */

@media (max-width: 850px) {

    .navbar {
        padding: 22px 5%;
    }

    .navbar.scrolled {
        padding: 14px 5%;
    }

    .nav-links {
        position: absolute;

        top: 85px;
        left: 5%;
        right: 5%;

        display: none;

        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        padding: 25px;

        background:
            rgba(20, 20, 20, 0.97);

        border-radius: 18px;

        backdrop-filter: blur(12px);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav-button {
        padding: 10px 15px;

        font-size: 13px;
    }

    /* Hero */

    .hero-content {
        width: 90%;

        margin: auto 5%;

        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size:
            clamp(44px, 15vw, 68px);
    }

    .hero-content p {
        font-size: 17px;
    }

    /* Spezialitäten */

    .specialties {
        padding: 80px 5%;
    }

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

    /* Galerie */

    .gallery {
        padding: 80px 5%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;

        gap: 16px;
    }

    .gallery-item,
    .gallery-large {
        height: 260px;

        grid-row: auto;
    }

    /* Kontakt */

    .contact-section {
        padding: 80px 5%;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .opening-hours {
        padding: 28px;
    }

    /* Standort */

    .location-section {
        padding: 80px 5%;
    }

    .map-container {
        height: 360px;

        border-radius: 18px;
    }

    .map-consent {
        padding: 25px;
    }

    .map-consent h3 {
        font-size: 24px;
    }

    /* Über uns */

    .about {
        padding: 80px 5%;

        grid-template-columns: 1fr;

        gap: 40px;
    }
}


/* =========================
   KLEINE HANDYS
========================= */

@media (max-width: 650px) {

    .menu-section {
        padding: 80px 5%;
    }

    .menu-item {
        align-items: flex-start;

        gap: 15px;
    }

    .menu-item-image {
        width: 75px;
        height: 75px;
    }

    .menu-item h3 {
        font-size: 21px;
    }

    .menu-price {
        font-size: 18px;
    }

    .hours-row {
        gap: 12px;

        font-size: 14px;
    }
}


/* =========================
   SPEISEKARTEN-SEITE MOBILE
========================= */
@media (max-width: 750px) {

    .menu-page-header {
        min-height: 360px;
    }

    .menu-page-title {
        width: 90%;

        margin-top: 60px;
    }

    .full-menu {
        padding: 70px 5%;
    }

    .menu-category {
        margin-bottom: 65px;
    }

    .menu-category-heading {
        margin-bottom: 25px;
    }

    .full-menu-grid {
        gap: 16px;

        /*
            Wir lassen die Reihe leicht über
            den normalen Inhaltsbereich hinauslaufen.
        */
        margin-right: -5vw;

        padding-right: 5vw;
        padding-bottom: 18px;
    }

    .full-menu-card {
        /*
            Ca. 84 % der sichtbaren Breite.

            Dadurch sieht man rechts bereits
            einen kleinen Teil der nächsten Karte.
        */
        flex: 0 0 84vw;

        max-width: 360px;
    }

    .full-menu-card img {
        height: 220px;
    }

    .full-menu-card-content {
        padding: 24px;
    }

    .full-menu-card-title h3 {
        font-size: 22px;
    }
}

/* =========================
   WENIGER ANIMATIONEN
   ACCESSIBILITY
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}

/* =========================
   MOBILE FLOATING BUTTONS
========================= */

.mobile-actions {
    display: none;
}


@media (max-width: 750px) {

    .mobile-actions {
        position: fixed;

        right: 18px;
        bottom: 20px;

        z-index: 1200;

        display: flex;
        flex-direction: column;

        gap: 12px;
    }


    .mobile-action {
        width: 56px;
        height: 56px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #d99a35;
        color: #111111;

        border-radius: 50%;

        text-decoration: none;

        font-size: 22px;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.25);

        transition:
            transform 0.25s ease,
            background 0.25s ease;
    }


    .mobile-action:active {
        transform: scale(0.94);
    }
}