/* MENÜ SAYFASI */

/* HERO SECTION */
.menu-page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: #f6ede3;
    font-family: "Poppins", sans-serif;
}

.menu-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(246, 237, 227, 0.70);
    z-index: 2;
}

.menu-hero-content {
    position: relative;
    z-index: 3;
}

.menu-eyebrow,
.menu-page-hero .eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #d77933;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu-page-hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.05;
    color: #080b13;
    font-weight: 800;
    margin-bottom: 18px;
}

.menu-page-hero .hero-divider {
    width: 90px;
    height: 3px;
    background: #d77933;
    margin: 0 auto 22px;
    border-radius: 0;
}

.menu-page-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #4f4f58;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
}

/* MENÜ GENEL */
.menu-section {
    background: #f6ede3;
    font-family: "Poppins", sans-serif;
}

.menu-category {
    margin-bottom: 64px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

/* KATEGORİ BAŞLIKLARI */
.category-header {
    max-width: 780px;
    margin: 0 auto 26px;
    text-align: center;
}

.category-header span {
    display: inline-block;
    margin-bottom: 10px;
    color: #d77933;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    color: #080b13;
    font-weight: 800;
    margin-bottom: 18px;
}

.category-header::after {
    content: "";
    display: block;
    width: 84px;
    height: 3px;
    background: #d77933;
    border-radius: 0;
    margin: 0 auto;
}

/* ÜRÜNLER ALT ALTA VE ORTALI */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 760px;
    margin: 0 auto;
}

/* ÜRÜN KARTLARI */
.menu-card {
    background: rgba(255, 255, 255, 0.86);
    padding: 24px 30px;
    border-radius: 0;
    border: 1px solid rgba(232, 117, 42, 0.28);
    text-align: center;
    box-shadow: 0 14px 34px rgba(74, 43, 29, 0.055);
    transition: 0.28s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(74, 43, 29, 0.10);
    border-color: rgba(232, 117, 42, 0.55);
    background: #ffffff;
}

.menu-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 19px;
    color: #171923;
    font-weight: 700;
    margin-bottom: 7px;
}

.menu-card p {
    font-size: 14.5px;
    color: #5f5f68;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 560px;
}

/* MOBİL */
@media (max-width: 768px) {
    .menu-page-hero {
        min-height: 390px;
        padding: 80px 0;
    }

    .menu-page-hero h1 {
        font-size: 48px;
    }

    .menu-page-hero p {
        font-size: 16px;
        padding: 0 14px;
    }

    .menu-hero-overlay {
        background: rgba(246, 237, 227, 0.74);
    }

    .menu-category {
        margin-bottom: 52px;
    }

    .category-header {
        margin-bottom: 22px;
    }

    .category-header h2 {
        font-size: 32px;
    }

    .menu-grid {
        gap: 12px;
    }

    .menu-card {
        padding: 22px 20px;
        border-radius: 0;
    }

    .menu-card h3 {
        font-size: 18px;
    }

    .menu-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .menu-page-hero h1 {
        font-size: 42px;
    }

    .category-header h2 {
        font-size: 28px;
    }

    .menu-card {
        border-radius: 0;
    }
}