@font-face {
    font-family: 'arkipelagoregular';
    src: url('../fonts/arkipelago_1.003-webfont.woff2') format('woff2'),
    url('../fonts/arkipelago_1.003-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #faf9f7;
}

/* Hero section */
.hero {
    position: relative;
    height: calc(100vh - 10px); /* trừ chiều cao của header (top-bar + navbar) */
    background: url('../images/menu/hero-background.jpg') center/cover no-repeat;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -90px; /* trừ chiều cao header 1 hàng — header trong suốt đè lên hình hero (transparent header) */
}

/* Optional overlay for better text contrast */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.hero .display-wrapper{
    z-index: 12;
}

.hero .display-wrapper .heading-title {
    font-size: 40px;
    text-transform: none;
}

.hero .display-wrapper .heading-title2 {
    font-size: 80px;
    line-height: 1;
}

/*...........End header...............*/

/*...........Start menu-section...............*/
.menu-section h2 {
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.menu-quote {
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 60px;
}

.menu-quote span {
    color: #d18b47;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
}

.menu-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.menu-item .info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item .info p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

.menu-item .info .menu-line {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}

.menu-item .info .menu-line .item-name {
    white-space: nowrap;
}

.menu-item .info .menu-line .dots {
    flex: 1;
    border-bottom: 3px dotted #000;
    margin: 0 10px;
    height: 0.5em;
    opacity: 0.6;
}

.menu-item .info .menu-line .old-price {
    color: #888;
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 6px;
}

.menu-item .info .menu-line .new-price {
    font-weight: 700;
    color: #000;
}

.menu-label {
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

#menu{
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: center;
}


/* ===== Size Header ===== */
.menu-size-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    padding-right: 25px;
}

.size-wrapper {
    display: flex;
    gap: 50px;
    text-align: center;
}

.size-label {
    font-weight: 700;
    font-size: 16px;
    display: block;
}

.size small {
    font-size: 12px;
    color: #777;
}

/* ===== Menu Line Update ===== */
.menu-item .menu-line {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
}

.menu-item .item-name {
    white-space: nowrap;
}

.menu-item .dots {
    flex: 1;
    border-bottom: 2px dotted #000;
    margin: 0 15px;
    opacity: 0.5;
}

.price-col {
    width: 50px;
    text-align: center;
    font-weight: 700;
    margin-left: 5px;
    margin-right: 5px;
}

.menu-section-block{
    width: 100%;
}

@media (max-width: 992px) {
    .menu-section-block{
        padding: 0 15px 0 15px;
    }

    .hero{
        margin-top: unset;
        height: calc(70vh);
    }
    .hero .display-wrapper .heading-title {
        font-size: 20px;
    }

    .hero .display-wrapper .heading-title2 {
        font-size: 40px;
    }

    .hero .display-wrapper{
        margin-top: 100px;
    }

    #menu{
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-left: unset;
        margin-right: unset;
    }

    #menu .menu-column{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .menu-section {
        text-align: center;
    }
    .menu-item {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
    }
    .menu-item img {
        margin-bottom: 5px;
    }

    .menu-item .info .menu-line .item-name {
        white-space: unset;
        margin-left: unset;
    }

    .menu-item .info .menu-line .dots {
        margin-right: unset;
    }

    .menu-item .item-name {
        flex: 5;
        white-space: normal;
        overflow-wrap: break-word;
        text-align: left;
        margin: 0 15px 0 15px;
    }

    .mt-5{
        margin-top: 1rem !important;
    }
}
/*...........End menu-section...............*/



