body {
    font-family: 'Bricolage Grotesque',sans-serif;
    background-color: #ede1cd;
    color: #333;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #ede1cd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: -webkit-fill-available;
    padding: 12px 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.header__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header__logo-title {
    width: 40px;
    color: #6a2c1a;
}

.header__logo-subtitle {
    font-size: 12px;
    color: #9a6e55;
    font-style: italic;
}

.nav {
    display: flex;
    align-items: center;
}

.nav__list {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

/* .nav__item a {
    text-decoration: none;
    color: #4b3a2f;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav__item a:hover {
    color: #d09b3e;
} */

.nav__link {
    color: #4b3a2f;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s, border-bottom 0.3s;
    display: inline-block;
}

.nav__link.active {
    color: #d09b3e;
    font-weight: bold;
    border-bottom: 2px solid #d09b3e;
}

.nav__link:hover {
    color: #d09b3e;
}

.nav__booking {
    padding: 6px 24px;
    color: #fff;
    border: none;
    cursor: pointer;
    background-color: #d09b3e;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.nav__booking:hover {
    background-color: #884735;
}

/* BANNER */
.banner {
    margin-top: 85px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner img {
    height: 400px;
    width: 100%;
}

/* .banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
} */

/* .banner__text {
    position: absolute;
    bottom: 40px;
    left: 60px;
    color: white;
    font-size: 26px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
} */

.story-section, .mean-section, .menu-section, .vision-section, .core-value-section, .contact-section {
    background-color: #e8dfd4;
    padding: 80px 60px;
}

.story-container, .mean-container, .vision-container, .core-value-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 80%;
    margin: 0 auto;
}

/* ===== TEXT CONTENT ===== */
.story-text, .mean-text, .vision-text, .core-value-text {
    flex: 1;
}

.story-title, .mean-title, .vision-title, .core-value-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.story-text p, .mean-text p, .vision-text p, .core-value-text p {
    line-height: 1.7;
    font-size: 17px;
    color: #3b2f2f;
    margin-bottom: 18px;
    text-align: justify;
}

.story-image, .mean-image, .vision-image, .core-value-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story-image img, .mean-image img, .vision-image img, .core-value-imageimg {
    width: 80%;
    /* max-width: 550px; */
    border-radius: 4px;
    object-fit: cover;
}

/* Menu-section */
.menu-container {
    max-width: 70%;
    margin: 0 auto;
}

.menu-container h1 {
    display: flex;
    justify-content: center;
    font-size: 48px;
    margin-bottom: 12px;
}

.menu-container .menu-food-header, .menu-drink-header {
    display: flex;
    justify-content: space-between;
}

.menu-container .menu-food-header a, .menu-drink-header a {
    margin: auto 0;
    text-decoration: none;
    color: #d09b3e;
    transition: color 0.3s;
}

.menu-container .menu-food-header a:hover, .menu-drink-header a:hover {
    color: #884735;
}

.menu-food .menu-food-grid, .menu-drink .menu-drink-grid {
    display: flex;
    gap: 20px;
}

.menu-food .menu-food-grid img, .menu-drink .menu-drink-grid img {
    flex: 1;
    width: 40%;
}

.menu-drink{
    margin-top: 60px;
}

/* Active nav-menu trong Menu */
.sidebar-menu__link--sub {
    transition: color 0.3s, font-weight 0.3s;
    color: #666;
    font-weight: normal;
}

.sidebar-menu__link--sub.active {
    color: #d09b3e;
    font-weight: bold;
}

.menu-category-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-category-content.active {
    display: block;
    opacity: 1;
}

.menu-banner__image-placeholder img {
    display: block;
    width: 100%;
    height: auto;
}

/* Booking forrm */
.booking-section {
    padding: 3rem 5%;
    background-color: #fcf8f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-container {
    max-width: 700px;
    width: 100%;
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
}

.booking-section .booking-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.booking-section .booking-form-info {
    display: flex;
    gap: 30px; 
    margin-bottom: 15px;
}

.booking-section .form-group {
    flex: 1; 
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.booking-section label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 8px;
}

.booking-section input:not([type="date"]),
.booking-section input[type="number"],
.booking-section select,
.booking-section textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none; 
    -moz-appearance: none;    
    appearance: none;
    color: #333;
}

.booking-section input::placeholder,
.booking-section textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.booking-section input:focus,
.booking-section select:focus,
.booking-section textarea:focus {
    border-color: #d09b3e;
    box-shadow: 0 0 0 1px #d09b3e; 
    outline: none;
}

.booking-section textarea {
    min-height: 120px;
    resize: vertical;
}

.booking-section .time-options {
    display: flex;
    gap: 15px;
}

.booking-section .time-options select {
    flex: 1; 
}

.booking-section input[type="date"] {
    flex: 1; 
    padding: 12px 15px;
    border: 1px solid #ccc; 
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
}

.booking-section input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute; 
}

.booking-section .btn-submit {
    display: block;
    width: 100%; 
    padding: 15px;
    margin-top: 1rem;
    background-color: #d09b3e;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Bricolage Grotesque',sans-serif;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.booking-section .btn-submit:hover {
    background-color: #884735;
}

@media (max-width: 768px) {
    .booking-container {
        padding: 20px 25px;
    }
    
    .booking-section .booking-title {
        font-size: 1.8rem;
    }
    
    .booking-section .booking-form-info {
        flex-direction: column; 
        gap: 0;
    }
    
    .booking-section .time-options {
        flex-direction: column; 
        gap: 15px;
    }
}

/* Menu page */
.menu-page {
    display: flex;
    margin: 0 auto;
    padding: 3rem 0;
}

.menu-page-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 60%;
    margin: 0 auto;
}

.sidebar-menu {
    flex-basis: 250px;
    padding-top: 2rem;
    height: 100vh;
}

.sidebar-menu__list-item{
    list-style-type: none;
}

.sidebar-menu__link {
    font-size: 1rem;
    /* font-weight: bold; */
    text-decoration: none;
    color: #000;
    line-height: 2rem;
}

.sidebar-menu__list {
    margin: 0;
}

.menu-content {
    flex-grow: 1;
    padding-right: 5%;
    max-width: 900px;
}

.menu-content__heading-title {
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1.2px;
}

.menu-banner {
    padding: 0 10%;
    margin-bottom: 2rem;
}

.menu-banner__image-placeholder {
    width: 100%;
    min-height: 500px; 
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-banner img {
    width: 100%;
}

.food-section {
    padding: 0 5%;
    margin-top: 4rem;
}

.food-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 5px;
    margin-bottom: 2rem;
}

.food-section__main-title {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.food-section__description {
    font-size: 0.85rem;
    font-style: italic;
}

.food-section__logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.food-section__grid {
    display: flex; 
    gap: 30px;
}

.food-item {
    flex: 1;
    text-align: center;
}

.food-item__image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1; 
    background-color: #e0e0e0; 
    margin-bottom: 10px;
    border-radius: 4px;
}

.food-item__name {
    font-weight: bold;
    margin-bottom: 5px;
}

.food-item__description {
    font-size: 0.9rem;
}

/* Blog page */
.blog-section {
    padding: 3rem 5%;
    background-color: #f9f9f9;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.blog-grid__item {
}

.blog-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-item__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
}

.blog-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item__tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.blog-item__content {
    padding: 1rem 1rem 1.5rem;
}

.blog-item__title {
    font-size: 1rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.5rem;
}

.blog-item__summary {
    font-size: 0.9rem;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* contact page */
.contact-section {
    padding: 4rem 5%;
}

.contact-section__container {
    max-width: 1200px;
    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;
}

.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;
}

@media (max-width: 992px) {
    .contact-section__container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-section__sidebar {
        max-width: 100%;
        order: 1;
        text-align: center;
    }
    
    .contact-sidebar__info-group {
        display: inline-block;
        margin: 0 1rem 1rem 1rem;
    }
    
    .contact-sidebar__text {
        display: inline;
    }

    .contact-section__main {
        order: 0;
    }
}

/* Footer */
.footer {
    position: relative;
    background-color: #ede1cd;
    color: #000;
}

.footer__top {
    background-color: #d09b3e;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1rem;
}

.footer-top__content {
    display: flex;
    align-items: center;
}

.footer-top__text {
    font-weight: bold;
    margin-right: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-top__form {
    display: flex;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.footer-top__input {
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #333;
    min-width: 250px;
}

.footer-top__submit-btn {
    background-color: #e4ae4e;
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    color: #fff;
    font-size: 1.2rem;
    transition: background-color 0.2s;
}

.footer-top__submit-btn:hover {
    background-color: #c48721;
}

.footer-top__connect {
    margin-left: auto;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.social-icons__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2); /* Nền icon mờ */
    color: #fff;
    margin-right: 10px;
    transition: background-color 0.2s;
    font-size: 1.2rem;
}

.social-icons__link:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.social-icons__link i {
    display: none;
}

.social-icons__link::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
}

.footer__main {
    display: flex;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main__logo-section {
    flex: 1.5;
    padding-right: 3rem;
}

.logo__image-placeholder {
    width: 180px;
    height: 180px;
    background-image: linear-gradient(135deg, #f5d0a9, #e9b36d, #d6982e); /* Gradient màu vàng đồng */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #e9b36d;
    padding: 10px;
    text-align: center;
}

.logo__text-placeholder {
    font-weight: bold;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.logo__text-placeholder--sub {
    font-size: 0.7rem;
    font-weight: normal;
    color: #f1f1f1;
}

.footer-main__section {
    flex: 1;
    padding-left: 1.5rem;
}

.footer-main__heading {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: bold;
}

.footer-contact__info {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-features__list, .footer-customer-care__list {
    padding-left: 0;
}

.footer-features__item,
.footer-customer-care__item {
    margin-bottom: 10px;
    list-style-type: none;
}

.footer-features__item a,
.footer-customer-care__item a {
    text-decoration: none;
}

.footer-features__link,
.footer-customer-care__link {
    color: #000;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-features__link:hover,
.footer-customer-care__link:hover {
    color: #884735;
}

.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.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .story-container, .mean-container, .vision-container, .core-value-container {
        flex-direction: column;
    }

    .story-image img, .mean-image img, .vision-image img, .core-value-image img {
        max-width: 100%;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .nav__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .banner {
        height: 300px;
    }
}

/* Menu page */
@media (max-width: 992px) {
    .menu-page {
        flex-direction: column;
        padding: 2rem 5%;
    }

    .sidebar-menu {
        position: static;
        height: auto;
        padding: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .menu-content {
        padding-right: 0;
    }

    .food-section__grid {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-item__title {
        font-size: 1.1rem;
    }
}
