@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Grotesk:wght@400;500;700&display=swap');


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #0b0b0b;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}


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

.logo {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 20;

    font-family: "Archivo Black";
    font-size: 32px;
    letter-spacing: -.08em;
}

.order {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 20;

    background: #ff3cac;
    color: #000;

    padding: 15px 25px;
    border-radius: 50px;

    font-weight: 700;
    white-space: nowrap;
}


/* =========================
   INTRO
========================= */

.intro {
    height: 100vh;
    min-height: 600px;
    position: relative;

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

    overflow: hidden;
}

.intro img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    filter: brightness(.55);
}

.intro-text {
    position: relative;
    text-align: center;
    padding: 20px;
}

.intro-text h1 {
    font-family: "Archivo Black";
    font-size: clamp(90px, 18vw, 260px);

    line-height: .75;
    letter-spacing: -.1em;

    margin: 0;
}

.pink {
    color: #ff3cac;
}

.blue {
    color: #00e5ff;
}

.time {
    position: absolute;
    top: 120px;
    right: 40px;

    border: 1px solid white;
    padding: 15px;

    font-size: 13px;
}


/* =========================
   NIGHT STORY
========================= */

.story {
    padding: 120px 8vw;

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

    gap: 80px;
}

.story h2 {
    font-family: "Archivo Black";
    font-size: clamp(60px, 7vw, 90px);

    line-height: .85;
    letter-spacing: -.06em;

    margin: 0;
}

.story p {
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.5;

    margin: 0;
    align-self: center;
}


/* =========================
   DISHES
========================= */

.dishes {
    padding: 0 5vw;
}

.dish {
    min-height: 80vh;

    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 50px;
    margin-bottom: 100px;

    align-items: center;
}

.dish:nth-child(even) {
    grid-template-columns: .8fr 1.2fr;
}

.dish-image {
    height: 75vh;
    min-height: 500px;
}

.dish-image img {
    width: 100%;
    height: 100%;
}

.dish-info {
    font-size: 18px;
}

.number {
    color: #ff3cac;
    font-size: 14px;
}

.dish h3 {
    font-family: "Archivo Black";

    font-size: clamp(50px, 6vw, 70px);

    line-height: .9;
    letter-spacing: -.06em;

    margin: 20px 0;
}

.dish p {
    line-height: 1.5;
    max-width: 450px;
}

.price {
    font-size: clamp(32px, 4vw, 40px);
    color: #00e5ff;

    margin-top: 25px;
}


/* =========================
   CROWD
========================= */

.crowd {
    height: 90vh;
    min-height: 550px;

    position: relative;
}

.crowd img {
    width: 100%;
    height: 100%;
}

.crowd::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        transparent 45%,
        rgba(0, 0, 0, .45)
    );
}

.crowd-text {
    position: absolute;

    bottom: 50px;
    left: 50px;

    z-index: 2;

    font-family: "Archivo Black";

    font-size: clamp(60px, 9vw, 100px);

    line-height: .8;
    letter-spacing: -.06em;
}


/* =========================
   RESERVATION
========================= */

.reserve {
    padding: 120px 40px;

    text-align: center;
}

.reserve h2 {
    font-family: "Archivo Black";

    font-size: clamp(80px, 15vw, 220px);

    line-height: .8;
    letter-spacing: -.08em;

    margin: 0;
}

.reserve button {
    margin-top: 60px;

    background: #ff3cac;
    color: #000;

    border: 0;

    padding: 25px 60px;

    border-radius: 50px;

    font-family: inherit;
    font-weight: 700;
    font-size: 18px;

    cursor: pointer;
}


/* =========================
   HOURS
========================= */

.hours {
    padding: 60px 40px;

    border-top: 1px solid #333;
    border-bottom: 1px solid #333;

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

    gap: 30px;
}

.hours h3 {
    font-family: "Archivo Black";

    font-size: clamp(40px, 6vw, 80px);

    line-height: .9;

    letter-spacing: -.05em;

    margin: 0;
}

.hours-list {
    display: grid;
    gap: 12px;

    align-content: start;

    font-size: 18px;
}

.hours-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #333;

    padding-bottom: 10px;
}


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

footer {
    padding: 30px;

    border-top: 1px solid #333;

    display: flex;
    justify-content: space-between;

    gap: 20px;
}

footer a{
    text-decoration: none;
    color: #fff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .dish-image {
        height: 55vh;
        min-height: 500px;
    }

    .dish {
        margin-bottom: 0;
    }

}


@media (max-width: 800px) {

    .logo {
        top: 20px;
        left: 20px;
        font-size: 28px;
    }

    .order {
        top: 18px;
        right: 20px;

        padding: 12px 18px;

        font-size: 14px;
    }


    /* STORY */

    .story {
        grid-template-columns: 1fr;
        gap: 40px;

        padding: 100px 6vw;
    }

    .story h2 {
        font-size: 65px;
    }


    /* DISHES */

    .dish,
    .dish:nth-child(even) {
        grid-template-columns: 1fr;

        gap: 35px;

        min-height: auto;

        margin-bottom: 100px;
    }

    .dish-image {
        height: 60vh;
        min-height: 400px;
        order: 1;
    }

    .dish-info {
        padding-bottom: 20px;
    }


    /* CROWD */

    .crowd {
        height: 70vh;
    }

    .crowd-text {
        left: 30px;
        bottom: 35px;

        font-size: 70px;
    }


    /* RESERVATION */

    .reserve {
        padding: 100px 25px;
    }


    /* HOURS */

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

        padding: 70px 30px;

        gap: 50px;

    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    /* NAV */

    .logo {
        top: 16px;
        left: 16px;

        font-size: 24px;
    }

    .order {
        top: 14px;
        right: 16px;

        padding: 10px 15px;

        font-size: 12px;
    }


    /* INTRO */

    .intro {
        height: 60svh;
        min-height: 550px;
    }

    .intro img {
        object-position: center;
    }

    .intro-text {
        width: 100%;
        padding: 15px;
    }

    .intro-text h1 {
        font-size: clamp(70px, 22vw, 120px);
        line-height: .78;
    }


    /* STORY */

    .story {
        padding: 90px 20px;

        gap: 45px;
    }

    .story h2 {
        font-size: clamp(55px, 17vw, 80px);
    }

    .story p {
        font-size: 20px;
        line-height: 1.5;
    }


    /* DISHES */

    .dishes {
        padding: 0 20px;
    }

    .dish,
    .dish:nth-child(even) {
        display: flex;
        flex-direction: column;

        gap: 30px;

        margin-bottom: 90px;

        align-items: stretch;
    }

    /* Immer Bild zuerst, Text danach */

    .dish-image {
        order: 1;

        width: 100%;
        height: 55vw;
        min-height: 300px;
        max-height: 430px;
    }

    .dish-info {
        order: 2;

        font-size: 16px;
    }

    .dish h3 {
        font-size: clamp(42px, 13vw, 65px);
        margin: 15px 0;
    }

    .dish p {
        font-size: 16px;
        line-height: 1.5;
    }

    .price {
        font-size: 34px;
        margin-top: 20px;
    }


    /* CROWD */

    .crowd {
        height: 50vh;
        min-height: 450px;
    }

    .crowd img {
        object-position: center;
    }

    .crowd-text {
        left: 20px;
        bottom: 25px;

        font-size: clamp(55px, 18vw, 85px);
    }


    /* RESERVATION */

    .reserve {
        padding: 90px 20px;
    }

    .reserve h2 {
        font-size: clamp(65px, 18vw, 110px);
        line-height: .82;
    }

    .reserve button {
        margin-top: 45px;

        width: 100%;
        max-width: 350px;

        padding: 20px 25px;

        font-size: 16px;
    }


    /* HOURS */

    .hours {
        padding: 70px 20px;

        gap: 40px;
    }

    .hours h3 {
        font-size: clamp(45px, 13vw, 70px);
        letter-spacing: -0.1em;
    }

    .hours-list {
        font-size: 16px;
        gap: 15px;
    }

    .hours-row {
        padding-bottom: 12px;
    }


    /* FOOTER */

    footer {
        padding: 25px 20px;

        gap: 8px;

        font-size: 13px;
    }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 380px) {

    .logo {
        font-size: 22px;
    }

    .order {
        font-size: 11px;
        padding: 9px 13px;
    }

    .intro-text h1 {
        font-size: 68px;
    }

    .story {
        padding: 75px 18px;
    }

    .story h2 {
        font-size: 52px;
    }

    .dish h3 {
        font-size: 42px;
    }

    .dish-image {
        min-height: 270px;
    }

    .crowd {
        min-height: 400px;
    }

    .reserve {
        padding: 80px 18px;
    }

    .hours {
        padding: 60px 18px;
    }

}
