* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bricolage Grotesque',sans-serif;
}

body {
    background-color: rgb(255, 251, 242);
}

/* Header */
.main-header {
    background-color: #5d4a3c;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    font-size: 14px;
    z-index: 1000;
}

.header__logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.header__logo-title {
    width: 60px;
    margin-left: 30px;
}

.header__menu-toggle {
    display: none; 
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

.main-nav ul li {
    margin: auto 0;
    font-size: 1rem;
}

.main-nav a {
    color: white;
    font-style: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 18px 0;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #dcb99f;
}

.menu-party {
    display: flex;
    align-items: center;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid white;
    margin-left: 5px;
    display: inline-block;
}

.language-select {
    position: relative;
    display: inline-block; 
}

.language-select__toggle {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 15px;
    background-color: transparent; 
    box-shadow: none;     
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.language-icon {
    font-size: 1.2em;
    color: white;
    margin-right: 5px;
}

.language-select .arrow-down {
    border: solid white;
    border-width: 0 2px 2px 0;
    margin-bottom: 4px;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 5px;
}

.language-select__toggle.active {
    background-color: #e8dbc9;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.language-select__toggle.active .language-icon,
.language-select__toggle.active .arrow-down {
    color: #5d4a3c;
    border-color: #5d4a3c;
}

.language-select__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 100;
    margin-top: 10px;
}

.language-select__dropdown.hidden {
    display: none;
}

.language-select .dropdown-item {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #5d4a3c;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.2s;
}

.language-select .dropdown-item:hover {
    background-color: #f7f7f7;
}

/* Banner */
.banner-section {
    position: relative;
    height: 85vh;
    overflow: hidden; 
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; 
    padding: 0 15%;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.banner-content__heading {
    font-size: 3.5em;
    color: white;
    text-shadow: 6px 6px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    font-weight: 900;
}

.btn-booking {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1em;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}

.btn-booking:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Intro */
.intro-section {
    max-width: 75%;
    margin: 60px auto;
    padding: 0 20px;
}

.intro-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.intro-item__img-col {
    flex: 1;
}

.intro-item__content-col {
    flex: 1;
}

.intro-item__img {
    width: 80%;
    margin: 0 auto;
    height: auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.intro-item__desc {
    font-size: 1.2em;
    line-height: 1.8;
    color: #313131;
    border-left: 3px solid #9d5d4a; 
    padding-left: 20px;
    margin-top: 20px;
}

.intro-item--first .intro-item__desc {
    font-size: 2em;
    font-weight: 500;
}

.intro-item.layout--reversed {
    flex-direction: row-reverse;
}

/* Meunu section */
.menu-promo {
    width: 100%;
    margin: 0 auto;
    padding: 90px 20px;
    text-align: center;
}

.menu-promo__header {
    margin-bottom: 30px;
}

.menu-promo__heading {
    font-size: 3.5em;
    color: #5d4a3c;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.menu-promo__dish-image-wrapper {
    max-width: 90%;
    margin: 0 auto 30px auto;
    overflow: hidden;
    position: relative;
}

.menu-promo__dish-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 500 50" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 C150,0 350,100 500,50 L500,50 L0,50 Z" style="fill:%23fcf6ef;"></path></svg>');
    background-size: 100% 100%;
}

.menu-promo__dish-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.menu-promo__footer {
    padding-top: 30px;
}

.menu-promo__btn {
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
    border: none;
}

.menu-promo__btn--dark {
    background-color: #7b4f42;
    color: white;
}

.menu-promo__btn--dark:hover {
    background-color: #5d4a3c;
}

/* Moment section */
.moments {
    width: 100%;
    margin: 40px auto;
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.moments__header {
    margin-bottom: 40px;
    position: relative;
    padding: 30px 0;
}

.moments__design-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #f5eedf;
    
    /* Hình hoa, vết cọ mờ */
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="70" y="70" font-size="70" fill="rgba(93, 74, 60, 0.15)">❀</text></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="10" fill="rgba(93, 74, 60, 0.1)"></circle></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="rgba(93, 74, 60, 0.1)" opacity="0.1"></path></svg>');
    
    background-repeat: no-repeat;
    background-position: top 10px left 20px, top 5px right 10%, bottom 0 right 10%;
    background-size: 80px, 40px, 100px;
}

.moments__heading {
    font-size: 4em;
    color: #5d4a3c;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.moments__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 2%;
}

.moments__item {
    overflow: hidden;
    height: 460px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.moments__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.moments__img:hover {
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    width: 100%;
    background-color: #000;
    color: white;
}

.main-footer__top-banner {
    background-color: #5d4a3c;
    background-size: cover;
    background-position: right center;
    padding: 60px 5%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.top-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.top-banner__logo {
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.top-banner__desc {
    max-width: 350px;
    font-size: 1em;
    line-height: 1.5;
    color: #f0e6d8;
    margin-bottom: 20px;
}

.top-banner__logo-box {
    background-color: #f5f5f5;
    color: #5d4a3c;
    padding: 15px;
    width: auto;
    text-align: center;
    position: absolute;
    top: 50px;
    left: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo-box__title {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
}
.logo-box__subtitle {
    font-size: 0.8em;
    margin-bottom: 10px;
}
.logo-box__info {
    font-size: 0.7em;
    line-height: 1.4;
}

.top-banner__summer-text {
    position: absolute;
    bottom: 20px;
    left: 550px;
    font-style: italic;
    font-size: 3em;
    color: white;
    opacity: 0.8;
}

.main-footer__info-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 5%;
}

.info-bar__grid {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: 2fr 3fr 1fr;
    gap: 20px;
    text-align: center;
}

.info-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 10px;
}

.info-bar__item:last-child {
    border-right: none;
}

.info-bar__item--social {
    justify-content: flex-end;
}

.info-bar__icon {
    font-size: 2.5em;
    margin-right: 15px;
    color: #9d8d80;
}

.info-bar__title {
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-bar__detail {
    font-size: 1em;
    color: #aaa;
}

.info-bar__social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: white;
    color: black;
    border-radius: 50%;
    margin-left: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    transition: background-color 0.3s;
}
.info-bar__social-link:hover {
    background-color: #9d8d80;
}

.main-footer__copyright {
    text-align: center;
    font-size: 0.75em;
    padding: 15px 5%;
    color: #777;
    position: relative;
}

.main-footer__scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: white;
    background-color: #333;
    padding: 12px 20px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    z-index: 1000;
}

.map-embed-container iframe {
    height: 400px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #d09b3e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #884735;
    transition: background-color 0.5s;
    transform: scale(1.1);
}

/* Menu page */
.menu-list {
    max-width: 100%;
    margin: 10px auto 40px;
    padding: 20px 5%;
}

.menu-list__category-heading {
    font-size: 2.2em;
    font-weight: bold;
    color: #9d5d4a;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-list__category-heading--appetizer {
    margin-top: 60px;
}

.menu-list__item {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px
}

.dish-item__img {
    display: block;
    width: 100%;
    flex: 1;
    height: auto;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

/* contact page */
.contact-section {
    padding: 4rem 0%;
}

.contact-section__container {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-section__sidebar {
    flex: 1;
    max-width: 300px;
    padding-top: 10px;
}

.contact-sidebar__logo-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #d6982e;
    margin-bottom: 2rem;
}

.contact-sidebar__info-group {
    margin-bottom: 1.5rem;
}

.contact-sidebar__label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 3px;
}

.contact-sidebar__text {
    font-size: 0.95rem;
    color: #333;
}

.contact-sidebar__text--hotline {
    font-weight: bold;
    color: #d6982e;
}

.contact-section__main {
    flex: 2;
}

.contact-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-card__image-wrapper {
    width: 100%;
}

.contact-card__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.contact-card__content {
    padding: 1.5rem;
}

.contact-card__title {
    font-size: 1.2rem;
    color: #d6982e;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-card__sub-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
}

.details-list {
    font-size: 0.95rem;
}

.details-list__item {
    display: flex;
    margin-bottom: 8px;
    gap: 10px;
}

.details-list__label {
    font-weight: bold;
    flex-basis: 100px;
    color: #333;
}

.details-list__value {
    color: #666;
    flex-grow: 1;
}

/* ----------------- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999; 
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-modal.is-visible {
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    margin: auto;
    width: 90%;
    max-width: 900px; 
    text-align: center;
}

.lightbox-image {
    width: 100%;
    max-height: 83vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: transparent;
}

.lightbox-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: transparent;
}

.lightbox-caption {
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 50px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .main-footer__top-banner {
        height: 300px;
        background-position: center right 10%;
    }
    
    .top-banner__logo-box, .top-banner__summer-text {
        display: none;
    }

    .menu-list__dish-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .menu-list__category-heading {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed; 
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-color: #6d5d51;
        gap: 0;
        z-index: 1000;
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out;
    }

    .main-nav.is-open {
        transform: translateX(0%);
        flex-direction: column;
    }

    .main-nav ul {
        flex-direction: column;
        margin-top: 16px;
        gap: 0;
    }

    .main-nav ul li {
        margin: 0 auto;
        padding: 10px;
    }

    .language-select__toggle {
        justify-content: center;
        padding: 10px;
    }

    .language-select__dropdown {
        right: 90px;
    }

    .main-header {
        justify-content: space-between;
        padding: 10px 20px;
    }

    .logo {
        font-size: 1.2em;
    }

    .header__menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        z-index: 999;
        color: #fffbf2;
    }

    .back-to-top {
        display: none;
    }

    .banner-section {
        height: 55vh;
    }

    .banner-content__heading {
        font-size: 2em;
    }

    .intro-section {
        max-width: 95%;
        padding: 0;
        margin: 30px auto;
    }

    .intro-item {
        /* flex-direction: column; */
        gap: 0px;
        margin-bottom: 0;
    }
    
    .intro-item.layout--reversed {
        /* flex-direction: column;  */
    }

    .menu-promo {
        padding: 30px 20px;
    }

    .menu-promo__heading {
        font-size: 1.8em;
    }

    .menu-promo__btn {
        padding: 8px 18px;
        font-size: 0.8em;
    }

    .menu-promo__dish-image-wrapper {
        width: 100%;
    }

    .menu-promo__dish-image {
        height: 350px;
    }

    .menu-list__item {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .moments {
        margin-top: 0;
    }

    .moments__header {
        margin-bottom: 0;
    }

    .moments__gallery {
        grid-template-columns: 1fr;
    }
    
    .moments__item {
        height: 200px;
    }

    .moments__design-bg {
        display: none;
    }

    .moments__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .moments__item {
        height: 250px;
    }

    .moments__heading {
        font-size: 2em;
    }

    .menu-list {
        padding: 0 2%;
    }

    .menu-list__category-heading {
        margin-bottom: 10px;
        margin-top: 20px;
        font-size: 1.5rem;
    }

    .main-footer__info-bar {
        padding: 20px 5%;
    }

    .info-bar__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
    }

    .info-bar__item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
        justify-content: flex-start;
        text-align: left;
    }

    .info-bar__item:last-child {
        border-bottom: none;
    }

    .info-bar__item--social {
        justify-content: flex-start;
        padding-left: 45px;
    }

    .menu-list__dish-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 500px) {
    .main-nav ul li {
        font-size: 14px;
    }

    .header__logo-title {
        width: 50px;
        margin-left: 6px;
    }

    .header__menu-toggle {
        font-size: 1.5rem;
    }

    .banner-section {
        height: 40vh;
    }

    .contact-section {
        padding: 2rem 0%;
    }

    .contact-section__container {
        max-width: 90%;
        flex-direction: column;
        gap: 20px;
    }

    .contact-sidebar__info-group, .contact-sidebar__logo-name {
        margin-bottom: 1rem;
    }

    .intro-section {
        max-width: 100%;
        padding: 0;
        margin: 30px auto;
    }

    .intro-item__img {
        width: 90%;
        margin-top: 12px;
    }

    .intro-item, .intro-item.layout--reversed {
        flex-direction: column;
    }

    .intro-item--first .intro-item__desc {
        font-size: 1rem;
    }

    .intro-item__desc {
        font-size: 1rem;
        border-left: none;
        padding: 0 20px;
        text-align: justify;
        margin-top: 6px;
    }

    .menu-promo {
        padding: 0;
    }

    .menu-promo__heading {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .menu-promo__header {
        margin-bottom: 20px;
    }

    .menu-promo__dish-image {
        height: 250px;
    }

    .menu-list__item {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .language-select__dropdown {
        right: 6px;
    }

    .lightbox-content {
        width: 100%;
    }

    .lightbox-close {
        top: 6px;
    }

    .moments__header {
        padding: 10px 0;
        font-size: 1.6em;
    }

    .moments__heading {
        font-size: 1.7rem;
    }

    .main-footer__top-banner {
        height: 175px;
    }

    .main-footer__info-bar {
        padding: 10px 2%;
    }

    .info-bar__item {
        padding-bottom: 0;
    }

    .info-bar__grid {
        gap: 12px;
    }

    .map-embed-container iframe {
        height: 300px;
    }

    .info-bar__title, .info-bar__detail {
        font-size: 0.8em;
    }

    .info-bar__social-link {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 1em;
    }

    .info-bar__item--social {
        padding-left: 0;
    }
}