* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: white;
    overflow-x: hidden;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 115vh;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.30) 0%,
            rgba(0, 0, 0, 0.36) 50%,
            rgba(0, 0, 0, 0.48) 66%,
            rgba(0, 0, 0, 0.68) 78%,
            rgba(0, 0, 0, 0.86) 90%,
            rgba(0, 0, 0, 0.96) 96%,
            rgba(0, 0, 0, 1) 100%
        ),
        url("imagini/fundal-principal.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 280px;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.25) 20%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.82) 75%,
            rgba(0, 0, 0, 1) 100%
        );

    pointer-events: none;
}

.hero-content {
    width: 95%;
    max-width: 1200px;
    padding: 20px;

    position: relative;
    z-index: 2;
}

/* LOGO PRINCIPAL */

.hero-logo {
    display: block;

    width: clamp(360px, 50vw, 760px);
    max-width: 94%;
    height: auto;

    margin: 0 auto 34px;

    filter:
        drop-shadow(
            0 5px 18px rgba(0, 0, 0, 0.55)
        );
}

.hero-content p {
    margin-bottom: 38px;

    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: 2px;

    text-shadow:
        0 3px 14px rgba(0, 0, 0, 0.65);
}

.hero-button {
    display: inline-block;

    padding: 15px 32px;

    border:
        1px solid rgba(255, 255, 255, 0.9);

    border-radius: 40px;

    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;

    background-color:
        rgba(0, 0, 0, 0.15);

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.hero-button:hover {
    background-color: white;
    color: black;

    transform: translateY(-3px);
}

/* =========================
   FUNDAL MENIU
========================= */

.menu-background {
    min-height: 100vh;
    position: relative;

    padding: 170px 20px 220px;

    background-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.98) 6%,
            rgba(0, 0, 0, 0.90) 14%,
            rgba(0, 0, 0, 0.76) 24%,
            rgba(0, 0, 0, 0.62) 38%,
            rgba(0, 0, 0, 0.58) 55%,
            rgba(0, 0, 0, 0.68) 75%,
            rgba(10, 8, 6, 0.95) 100%
        ),
        url("imagini/fundal-meniu.jpeg");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.menu-background::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 330px;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.96) 15%,
            rgba(0, 0, 0, 0.80) 38%,
            rgba(0, 0, 0, 0.54) 65%,
            rgba(0, 0, 0, 0.18) 88%,
            rgba(0, 0, 0, 0) 100%
        );

    pointer-events: none;
    z-index: 1;
}

/* Gradient pe finalul meniului pentru trecerea spre Visit Us */
.menu-background::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 320px;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.18) 18%,
            rgba(0, 0, 0, 0.45) 42%,
            rgba(0, 0, 0, 0.72) 68%,
            rgba(0, 0, 0, 0.92) 86%,
            rgba(0, 0, 0, 1) 100%
        );

    pointer-events: none;
    z-index: 1;
}

.menu-heading,
.menu-wrapper {
    position: relative;
    z-index: 2;
}

/* =========================
   TITLU MENIU
========================= */

.menu-heading {
    text-align: center;
    margin-bottom: 45px;
}

/* LOGO MIC DIN MENIU */

.menu-logo {
    display: block;

    width: clamp(95px, 9vw, 140px);
    height: auto;

    margin: 0 auto 14px;

    filter:
        drop-shadow(
            0 4px 14px rgba(0, 0, 0, 0.65)
        );
}

.menu-heading h2 {
    font-size:
        clamp(50px, 7vw, 86px);

    letter-spacing: 3px;

    text-shadow:
        0 4px 22px rgba(0, 0, 0, 0.8);
}

/* =========================
   LAYOUT MENIU - DESKTOP
========================= */

.menu-wrapper {
    width: min(1100px, 92%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    grid-template-areas:
        "coffee soft"
        "coffee cocktails"
        "coffee beers";

    column-gap: 80px;
    row-gap: 55px;

    align-items: start;
}

.menu-category:nth-child(1) {
    grid-area: coffee;
}

.menu-category:nth-child(2) {
    grid-area: soft;
}

.menu-category:nth-child(3) {
    grid-area: cocktails;
}

.menu-category:nth-child(4) {
    grid-area: beers;
}

.menu-category {
    padding: 10px 0;
    align-self: start;
}

.menu-category h3 {
    margin-bottom: 24px;
    padding-bottom: 12px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.30);

    font-size: 34px;
    letter-spacing: 3px;
    text-transform: uppercase;

    text-shadow:
        0 3px 16px rgba(0, 0, 0, 0.85);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 25px;
    padding: 15px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}

.menu-item > div {
    display: flex;
    flex-direction: column;

    gap: 4px;
    min-width: 0;
}

.item-name {
    font-size: 18px;
    font-weight: 600;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.90);
}

.item-size {
    font-size: 13px;

    color:
        rgba(255, 255, 255, 0.68);

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.90);
}

.item-price {
    flex-shrink: 0;

    font-size: 17px;
    font-weight: 700;

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.95);
}

.menu-subtitle {
    margin: 16px 0 4px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.72);

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.95);
}

.menu-description,
.menu-note {
    margin-top: 14px;

    font-size: 14px;
    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.74);

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.95);
}

.flavour-list {
    margin-top: 14px;
    padding-left: 20px;

    color:
        rgba(255, 255, 255, 0.88);

    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.95);
}

.flavour-list li {
    margin-bottom: 8px;
}

/* =========================
   VISIT US
========================= */

.visit-section {
    position: relative;

    min-height: 85vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 170px 20px 130px;

    text-align: center;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.98) 8%,
            rgba(0, 0, 0, 0.92) 18%,
            rgba(0, 0, 0, 0.82) 32%,
            rgba(0, 0, 0, 0.92) 52%,
            rgba(0, 0, 0, 1) 72%,
            rgba(0, 0, 0, 1) 100%
        );
}

.visit-content {
    width: min(760px, 92%);

    position: relative;
    z-index: 2;
}

.visit-logo {
    display: block;

    width: clamp(125px, 13vw, 190px);
    height: auto;

    margin: 0 auto 25px;

    filter:
        drop-shadow(
            0 4px 14px rgba(0, 0, 0, 0.65)
        );
}

.visit-label {
    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 6px;

    color:
        rgba(255, 255, 255, 0.70);
}

.visit-content h2 {
    font-size:
        clamp(30px, 4vw, 52px);

    font-weight: 600;
    line-height: 1.2;

    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.80);
}

.visit-divider {
    width: 80px;
    height: 1px;

    margin: 42px auto;

    background:
        rgba(255, 255, 255, 0.36);
}

.opening-hours {
    width: min(580px, 100%);
    margin: 0 auto 45px;
}

.opening-hours h3 {
    margin-bottom: 30px;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    padding: 17px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.13);

    font-size: 17px;
}

.hours-row span {
    color:
        rgba(255, 255, 255, 0.78);
}

.hours-row strong {
    flex-shrink: 0;
    font-weight: 700;
}

.maps-button {
    display: inline-block;

    padding: 15px 30px;

    border:
        1px solid rgba(255, 255, 255, 0.82);

    border-radius: 40px;

    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    background:
        rgba(255, 255, 255, 0.04);

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.maps-button:hover {
    background-color: white;
    color: black;

    transform: translateY(-3px);
}

/* =========================
   TELEFON
========================= */

@media (max-width: 760px) {

    .hero {
        min-height: 105vh;

        background-position:
            42% center;
    }

    .hero::after {
        height: 220px;
    }

    .hero-content {
        width: 100%;
        padding: 16px;
    }

    .hero-logo {
        width: min(390px, 92vw);
        max-width: 92%;

        margin-bottom: 28px;
    }

    .hero-content p {
        line-height: 1.7;
    }

    .menu-background {
        padding: 130px 22px 170px;

        background-attachment: scroll;
        background-position: center top;
    }

    .menu-background::before {
        height: 250px;
    }

    .menu-background::after {
        height: 240px;
    }

    .menu-heading {
        margin-bottom: 35px;
    }

    .menu-logo {
        width: 105px;
        margin-bottom: 12px;
    }

    .menu-wrapper {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: none;

        gap: 50px;
    }

    .menu-category:nth-child(1),
    .menu-category:nth-child(2),
    .menu-category:nth-child(3),
    .menu-category:nth-child(4) {
        grid-area: auto;
    }

    .menu-category {
        padding: 0;
    }

    .menu-category h3 {
        font-size: 28px;
    }

    .item-name {
        font-size: 16px;
    }

    .item-price {
        font-size: 16px;
    }

    .visit-section {
        min-height: auto;

        padding: 135px 20px 90px;
    }

    .visit-logo {
        width: 135px;

        margin-bottom: 22px;
    }

    .visit-label {
        font-size: 12px;

        letter-spacing: 5px;
    }

    .visit-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .visit-divider {
        margin: 35px auto;
    }

    .opening-hours {
        margin-bottom: 38px;
    }

    .opening-hours h3 {
        margin-bottom: 20px;

        font-size: 16px;
        letter-spacing: 3px;
    }

    .hours-row {
        flex-direction: column;

        gap: 7px;

        padding: 18px 0;

        font-size: 16px;
    }

    .hours-row span {
        font-size: 15px;
    }

    .maps-button {
        width: 100%;
        max-width: 290px;

        padding: 15px 20px;
    }
}