* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
}
.container{
    max-width: 100%;
}
/* Header styles */
header {
    background-color: #fff;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: auto;
    max-height: 50px;
    object-fit: contain;
}

.logo-text {
    margin-left: 10px;
    color: #e31837;
    font-weight: bold;
    font-size: 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.cart-icon {
    position: relative;
    right: 1em;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -3px;
    background-color: #00a149;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.contact-btn {
    background-color: #ffc107;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.hamburger-menu {
    cursor: pointer;
}

/* Hero section styles */
.hero {
    background-image: url('../img/banner1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 20px;
    color: white;
}

.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.menu-btn {
    background-color: #e31837;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 20px;
}

.video-btn {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 15px;
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent white;
    margin-left: 3px;
}

.video-text {
    font-weight: bold;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    margin-right: 8px;
    opacity: 0.5;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
    background-color: #ffc107;
}

.featured-product {
    display: flex;
    position: absolute;
    bottom: 50px;
    right: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 10px 20px;
    width: 300px;
    text-align: center;
    justify-content: space-between;
}

.weekly-special {
    background-color: #e31837;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 15px;
    position: absolute;
    top: -10px;
    right: 10px;
}

.product-price {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-name {
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}

.rating {
    color: #ffc107;
    margin-bottom: 5px;
}

.product-image {    
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
}

.food-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-food img{
    width: 380px;
    height: 490px;
}
/* Food image elements */
.tomato1 {
    position: absolute;
    bottom: 50px;
    left: 300px;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.tomato2 {
    position: absolute;
    top: 120px;
    right: 200px;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.bird-notification {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #8c52ff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
.header-right{
    display: flex;
    align-items: center;
}
.detail-about-food{
    max-width: auto;
    margin: 0 auto;
}
.menu-container {
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}
.topic-red{
    color: #F3274C;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.menu-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    min-width: 70px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.menu-tab.active {
    background-color: #e91e63;
    color: white;
    position: relative;
}

.menu-tab.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #e91e63;
}

.tab-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.tab-label {
    font-size: 14px;
    font-weight: 600;
}

.menu-content {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-image {
    flex: 0 0 40%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-items {
    flex: 0 0 60%;
    padding: 30px;
}

.menu-category {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.menu-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.item-name {
    font-weight: 600;
    font-size: 16px;
}

.item-price {
    color: #e91e63;
    font-weight: 600;
}

.item-description {
    color: #777;
    font-size: 14px;
    line-height: 1.4;
}

/* Icons */
.icon-dessert, .icon-steak, .icon-coffee, .icon-burger {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 8px;
}

.icon-dessert {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12,6C8.69,6 6,8.69 6,12c0,3.31 2.69,6 6,6s6-2.69 6-6C18,8.69 15.31,6 12,6zM15.5,12A1.5,1.5 0 0,1 14,13.5A1.5,1.5 0 0,1 12.5,12A1.5,1.5 0 0,1 14,10.5A1.5,1.5 0 0,1 15.5,12zM11.5,12A1.5,1.5 0 0,1 10,13.5A1.5,1.5 0 0,1 8.5,12A1.5,1.5 0 0,1 10,10.5A1.5,1.5 0 0,1 11.5,12z'/%3E%3C/svg%3E");
}

.menu-tab:not(.active) .icon-dessert {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M12,6C8.69,6 6,8.69 6,12c0,3.31 2.69,6 6,6s6-2.69 6-6C18,8.69 15.31,6 12,6zM15.5,12A1.5,1.5 0 0,1 14,13.5A1.5,1.5 0 0,1 12.5,12A1.5,1.5 0 0,1 14,10.5A1.5,1.5 0 0,1 15.5,12zM11.5,12A1.5,1.5 0 0,1 10,13.5A1.5,1.5 0 0,1 8.5,12A1.5,1.5 0 0,1 10,10.5A1.5,1.5 0 0,1 11.5,12z'/%3E%3C/svg%3E");
}

.icon-steak {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M12,3C7.03,3 3,7.03 3,12s4.03,9 9,9s9-4.03 9-9S16.97,3 12,3zM12,8c1.93,0 3.5,1.57 3.5,3.5S13.93,15 12,15s-3.5-1.57-3.5-3.5S10.07,8 12,8z'/%3E%3C/svg%3E");
}

.icon-coffee {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M2,21V19H20V21H2zM20,8V5H18V8H20zM20,3A2,2 0 0,1 22,5V8A2,2 0 0,1 20,10H18V13A4,4 0 0,1 14,17H8A4,4 0 0,1 4,13V3H20zM16,5H6V13A2,2 0 0,0 8,15H14A2,2 0 0,0 16,13V5z'/%3E%3C/svg%3E");
}

.icon-burger {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e91e63' d='M2,16H22V17C22,18.1 21.1,19 20,19H4C2.9,19 2,18.1 2,17V16zM20,5C20,3.9 19.1,3 18,3H6C4.9,3 4,3.9 4,5V5H20V5zM22,11V13H2V11C2,9.9 2.9,9 4,9H20C21.1,9 22,9.9 22,11z'/%3E%3C/svg%3E");
}
.detail-promo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.card-contrainer{
    background-color: #8c52ff;
}
.card-border{
    background-color: #e31837;
    border: #ffc107;
}
.testimonials-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.testimonials-left {
    width: 50%;
}

.testimonials-right {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.section-label {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

.testimonial-card {
    background-color: #fff;
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 700;
    font-size: 18px;
}

.dot-indicator {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 30px;
    height: 30px;
    background-color: #ffd700;
    border-radius: 50%;
}

.dots {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
}

.dot.active {
    background-color: #e74c3c;
}
.Container_about-food{
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}
   .gallery-container {
            width: 100%;
            max-width: 500px;
            position: relative;
        }
        
        .gallery-layout {
            position: relative;
            width: 100%;
            height: 400px;
        }
        
        .image-box {
            position: absolute;
            border-radius: 15px;
            overflow: hidden;
            width: 180px;
            height: 180px;
        }
        
        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .coffee-box {
            top: 0;
            right: 30%;
            z-index: 1;
        }
        
        .red-box {
            top: 120px;
            left: 0;
            z-index: 2;
        }
        
        .dessert-box {
            top: 120px;
            right: 0;
            z-index: 3;
        }
        
        @media (max-width: 500px) {
            .gallery-layout {
                height: 600px;
            }
            .dots{
                display: flex
                ;
                    gap: 5px;
                    margin-top: 20px;
                    justify-content: center;
            }
            
            .image-box {
                width: 150px;
                height: 150px;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .coffee-box {
                top: 0;
                right: auto;
            }
            
            .red-box {
                top: 200px;
                left: 50%;
            }
            
            .dessert-box {
                top: 400px;
                right: auto;
            }
        }
/* Experts Section */
.experts-section {
    text-align: center;
    padding-top: 30px;
}

.experts-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.experts-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 4px;
    background-color: #ffd700;
}

.experts-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.expert-card {
    width: 30%;
    text-align: center;
    position: relative;
}

.expert-image {
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.expert-image img {
    width: 100%;
    height: auto;
}

.expert-info {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.expert-role {
    color: #e74c3c;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.expert-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.expert-signature {
    width: 80px;
    opacity: 0.7;
}
/* .card {
    width: 200px;
    position: relative;
    background-color: black;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} */

.card::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 2px solid #ffd700;
    border-radius: 9px;
    z-index: 1;
    pointer-events: none;
}

/* .card-image {
    width: 100%;
    height: 260px;
    background-color: #000;
    position: relative;
} */

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .card-label {
    background-color: #ffd700;
    color: #000;
    padding: 8px 0;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 2;
    border-radius: 5px;
} */

/* For the cheese/sauce splash effect */
/* .cheese-splash {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(255,165,0,0.8) 0%, rgba(255,140,0,0.4) 50%, rgba(255,140,0,0) 100%);
    filter: blur(5px);
    z-index: 1;
} */
/* ======== Common Responsive Styles ======== */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 60%;
    }
    
    .featured-product {
        width: 250px;
    }
    .dots{
        display: flex
        ;
            gap: 5px;
            margin-top: 20px;
            justify-content: center;
    }
}

/* ======== Tablet Styles ======== */
@media (max-width: 992px) {
    .dots{
        display: flex
        ;
            gap: 5px;
            margin-top: 20px;
            justify-content: center;
    }
    /* Header & Navigation */
    nav ul {
        gap: 10px;
    }
    
    nav ul li {
        margin: 0 5px;
    }
    
    /* Hero Section */
    .hero-content {
        max-width: 70%;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .featured-product {
        width: 220px;
        right: 30px;
        padding: 10px;
    }
    
    .product-image {
        width: 80px;
        height: 80px;
    }
    
    /* About Food Section */
    .detail-about-food {
        padding: 30px 20px !important;
    }
    
    /* Menu Content */
    .menu-content {
        flex-direction: column;
    }
    
    .menu-image, .menu-items {
        flex: 0 0 100%;
    }
    
    .menu-image {
        height: 300px;
    }
    
    /* Testimonials */
    .testimonials-section {
        flex-direction: column;
    }
    
    .testimonials-left, .testimonials-right {
        width: 100%;
    }
    
    .testimonials-right {
        margin-top: 50px;
    }
    
    .gallery-layout {
        height: 450px;
    }
    
    /* Experts Section */
    .experts-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 80px 20px;
    }
    
    .expert-card {
        width: 45%;
        margin-bottom: 60px;
    }
}

/* ======== Mobile Styles ======== */
@media (max-width: 768px) {
    .dots{
        display: flex
        ;
            gap: 5px;
            margin-top: 20px;
            justify-content: center;
    }
    body {
        font-size: 14px;
    }
    
    /* Header */
    header {
        padding: 15px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    nav {
        display: none; /* Hide the regular menu */
    }
    
    .hamburger-menu {
        display: block; /* Show the hamburger menu */
    }
    
    /* Hero Section */
    .hero {
        padding: 50px 15px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .featured-product {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 40px;
        padding: 15px;
    }
    
    .weekly-special {
        top: -15px;
    }
    
    /* About Food Section */
    .detail-about-food {
        padding: 30px 15px !important;
    }
    
    /* Menu Tabs */
    .menu-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu-tab {
        width: calc(50% - 10px);
        margin-bottom: 10px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .gallery-layout {
        height: 600px;
    }
    
    .image-box {
        width: 150px;
        height: 150px;
    }
    
    /* Experts Section */
    .expert-card {
        width: 100%;
    }
    
    .expert-info {
        width: 180px;
        height: 180px;
    }
}

/* ======== Small Mobile Styles ======== */
@media (max-width: 576px) {
    .dots{
        display: flex
        ;
            gap: 5px;
            margin-top: 20px;
            justify-content: center;
    }
    /* Header */
    .contact-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-wrap: wrap;
    }
    
    .menu-btn {
        margin-bottom: 15px;
        width: 100%;
    }
    
    /* Restaurant Card */
    .card {
        width: 160px;
        margin: 0 auto;
    }
    
    .card-image {
        height: 200px;
    }
    
    /* Menu Items */
    .menu-item {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .menu-category {
        font-size: 20px;
    }
    
    /* Experts */
    .experts-title {
        font-size: 24px;
    }
    
    .expert-info {
        width: 150px;
        height: 150px;
    }
}

/* ========= Additional Header Responsive Styles ========= */
@media (max-width: 768px) {
    .dots{
        display: flex
        ;
            gap: 5px;
            margin-top: 20px;
            justify-content: center;
    }
    .header-right {
        gap: 10px;
    }
    
    /* Mobile Menu Overlay (add to your HTML/JS as needed) */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        display: none;
    }
    
    .mobile-menu.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }
    
    .mobile-menu ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    .mobile-menu ul li a {
        color: white;
        font-size: 18px;
        text-decoration: none;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }
}
/* CSS สำหรับ Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 20px 0;
    text-align: center;
}

.mobile-menu ul li a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.dis-menu-postion{
    position: relative;
}
.mobile-menu ul li a:hover {
    color: #ffc107;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
}
.dis-menu-text  {
    position: absolute;
    top: 40px;
    left: 50px;
    color: white;
}
.discover-menu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
}


/* เพิ่ม styles สำหรับแสดง/ซ่อน navigation ตามขนาดหน้าจอ */
@media (max-width: 768px) {
    nav.desktop-nav {
        display: none; /* ซ่อน nav ปกติบนมือถือ */
    }
    
    .hamburger-menu {
        display: block; /* แสดงปุ่มแฮมเบอร์เกอร์บนมือถือ */
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none; /* ซ่อนปุ่มแฮมเบอร์เกอร์บนเดสก์ท็อป */
    }
    
    .mobile-menu {
        display: none !important; /* ซ่อน mobile menu บนเดสก์ท็อปเสมอ */
    }
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fe;
}

.banner-content {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.text-content {
    width: 50%;
    padding-left: 30px;
}

.app-label {
    color: #e3262e;
    background-color: #fff2f3;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.banner-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}

.feature-list {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.feature-icon {
    color: #a9c93f;
    margin-right: 10px;
    font-size: 18px;
}

.download-buttons {
    display: flex;
    gap: 10px;
}

.download-btn {
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}
/* CSS สำหรับ Animation เมื่อ Scroll */

/* Base styles สำหรับ elements ที่จะมี animation */
.card-showcase .col-lg-4,
.dis-menu-item,
.testimonial-card,
.expert-card,
.banner-content .text-content,
.banner-content .visual-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* เมื่อ element เข้ามาในหน้าจอ (ทำงานร่วมกับ IntersectionObserver ใน JavaScript) */
.card-showcase .col-lg-4.animate,
.dis-menu-item.animate,
.testimonial-card.animate,
.expert-card.animate,
.banner-content .text-content.animate,
.banner-content .visual-content.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delay สำหรับ elements ที่ต่อเนื่องกัน */
.card-showcase .col-lg-4:nth-child(2).animate {
    transition-delay: 0.2s;
}

.card-showcase .col-lg-4:nth-child(3).animate {
    transition-delay: 0.4s;
}

.expert-card:nth-child(2).animate {
    transition-delay: 0.2s;
}

.expert-card:nth-child(3).animate {
    transition-delay: 0.4s;
}

/* Animation เฉพาะสำหรับ elements บางประเภท */
.menu-tab {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu-tab:hover {
    transform: translateY(-5px);
}

.gallery-container .image-box {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-container .image-box.animate {
    opacity: 1;
}

.gallery-container .coffee-box.animate {
    transition-delay: 0.1s;
}

.gallery-container .red-box.animate {
    transition-delay: 0.3s;
}

.gallery-container .dessert-box.animate {
    transition-delay: 0.5s;
}

/* Animation สำหรับ Hero Section */
.hero h1,
.hero p,
.hero .cta-buttons,
.hero .slider-dots {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero.loaded h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero.loaded p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero.loaded .cta-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero.loaded .slider-dots {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.hero .featured-product {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero.loaded .featured-product {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1s;
}

/* Animation สำหรับ Banner Section */
.banner-section .leaf-1,
.banner-section .leaf-2,
.banner-section .phone-image,
.banner-section .delivery-guy,
.banner-section .food-image-1 {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.banner-section.loaded .leaf-1,
.banner-section.loaded .leaf-2,
.banner-section.loaded .phone-image,
.banner-section.loaded .delivery-guy,
.banner-section.loaded .food-image-1 {
    opacity: 1;
    transform: scale(1);
}

.banner-section.loaded .leaf-1 {
    transition-delay: 0.2s;
}

.banner-section.loaded .phone-image {
    transition-delay: 0.4s;
}

.banner-section.loaded .food-image-1 {
    transition-delay: 0.6s;
}

.banner-section.loaded .delivery-guy {
    transition-delay: 0.8s;
}

.banner-section.loaded .leaf-2 {
    transition-delay: 1s;
}

/* Hover effects สำหรับปุ่มต่างๆ */
.menu-btn,
.contact-btn,
.download-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-btn:hover,
.contact-btn:hover,
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-btn:hover {
    transform: scale(1.1);
    background-color: rgba(255,255,255,0.2);
}
.google-play {
    background-color: #e3262e;
    color: white;
}

.app-store {
    background-color: #000;
    color: white;
}

.download-btn i {
    margin-right: 5px;
}

.visual-content {
    width: 50%;
    position: relative;
    height: 100%;
}

.phone-image {
    right: 13%;
    transform: translateY(-50%);
    width: 17em;
    z-index: 3;
    position: absolute;
    top: 14em;
}

.delivery-guy {
    position: absolute;
    left: -17%;
    /* bottom: -39px; */
    width: 190px;
    z-index: 2;
    top: -37px;
}

.food-image-1, .food-image-2 {
    position: absolute;
    z-index: 10;
}

.food-image-1 {
    right: 44px;
    top: 20px;
    width: 150px;
}

.food-image-2 {
    right: 20%;
    bottom: 40px;
    width: 120px;
}

.background-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 1;
}

.red-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: #e3262e;
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
}

.leaf-1, .leaf-2 {
    position: absolute;
    z-index: 2;
}

.leaf-1 {
    top: 10%;
    right: 52%;
    width: 30px;
}

.leaf-2 {
    bottom: 9%;
    right: 3%;
    width: 150px;
}

@media (max-width: 992px) {
    .banner-title {
        font-size: 28px;
    }
    
    .phone-image {
        right: 10%;
        width: 160px;
    }
}

@media (max-width: 768px) {
    .banner-container {
        height: auto;
    }
    
    .banner-content {
        flex-direction: column;
        padding: 30px 0;
    }
    
    .text-content {
        width: 90%;
        padding-left: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .feature {
        justify-content: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .visual-content {
        width: 100%;
        height: 200px;
    }
    
    .phone-image {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
    
    .red-bg {
        width: 100%;
        border-radius: 0;
    }
    
    .food-image-1 {
        right: 5%;
    }
    
    .food-image-2 {
        left: 5%;
        right: auto;
    }
}
.banner-section{
    background-color: #f8f9fe;
    padding: 50px 0;
    position: relative;
}
/* เพิ่ม CSS สำหรับทำให้เว็บไซต์ responsive เพิ่มเติม */

/* ===== Card Showcase Responsive ===== */
.card-showcase {
    padding: 50px 0;
    overflow: hidden;
}

.card-showcase .row {
    margin: 0 -15px;
}

.card-showcase img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.card-showcase img:hover {
    transform: scale(1.03);
}

/* ===== Discover Menu Section Responsive ===== */
.discover-menu-section {
    padding: 60px 0;
}

.dis-menu-item {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.dis-menu-text {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
    padding-top: 80px !important;
}

.price {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(50%); /* <<< เลื่อนลงไปข้างล่าง 50% ของตัวเอง */
  }
.discover-menu-section{
    margin-bottom: 7em;
}
.border-frame {
    border: 5px solid #ffc107;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 30px; /* เว้นที่ไว้เผื่อ <p> */
    pointer-events: none;
  }
.text-card{
    width: 95%;
}
/* ===== Banner Section Responsive ===== */
.banner-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* ===== Responsive Media Queries ===== */

/* Large Screens */
@media (max-width: 1400px) {
    .card-showcase img {
        max-width: 100%;
        height: auto;
    }
    
    .phone-image {
        width: 15em;
        right: 15%;
    }
    
    .delivery-guy {
        width: 160px;
        left: -10%;
    }
}

/* Medium Screens */
@media (max-width: 1200px) {
    .card-showcase .col-lg-4 {
        padding: 15px;
    }
    
    .text-card {
        max-width: 90%;
        padding: 8px 15px;
        font-size: 18px !important;
    }
    
    .phone-image {
        top: 12em;
        width: 13em;
    }
    
    .delivery-guy {
        width: 140px;
        left: -5%;
        top: -20px;
    }
    
    .leaf-2 {
        width: 120px;
    }
}

/* Tablet Screens */
@media (max-width: 992px) {
    .card-showcase .col-lg-4 {
        padding: 15px 50px;
    }
    
    .card-showcase img {
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: cover;
    }
    
    .text-card {
        font-size: 16px !important;
    }
    
    .dis-menu-text h2 {
        font-size: 28px !important;
    }
    
    .price {
        font-size: 16px !important;
    }
    
    .banner-section {
        padding: 50px 0;
    }
    
    .text-content {
        padding: 0 20px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .phone-image {
        position: relative;
        top: 0;
        right: auto;
        width: 200px;
        margin: 0 auto;
        display: block;
    }
    
    .delivery-guy {
        position: absolute;
        width: 120px;
        left: 10%;
        top: auto;
        bottom: 0;
    }
    
    .leaf-1 {
        display: none;
    }
    
    .leaf-2 {
        width: 100px;
        right: 5%;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .card-showcase .col-lg-4 {
        padding: 15px 30px;
    }
    
    .card-showcase img {
        max-height: 400px;
    }
    
    .text-card {
        max-width: 70%;
        margin-bottom: 40px;
    }
    
    .dis-menu-item {
        margin-bottom: 60px;
    }
    
    .dis-menu-text h2 {
        font-size: 24px !important;
    }
    
    .dis-menu-text p {
        font-size: 14px;
    }
    
    .price {
        padding: 5px 15px;
        margin-left: 20px !important;
    }
    
    .banner-section {
        padding: 40px 15px;
    }
    
    .text-content {
        width: 100%;
        text-align: center;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .feature {
        justify-content: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .phone-image {
        width: 180px;
    }
    
    .delivery-guy {
        width: 100px;
        left: 5%;
    }
    
    .red-bg {
        border-radius: 0;
    }
}

/* Small Mobile Screens */
@media (max-width: 576px) {
    .card-showcase .col-lg-4 {
        padding: 15px;
    }
    
    .card-showcase img {
        max-height: 350px;
    }
    
    .text-card {
        max-width: 80%;
        font-size: 14px !important;
        padding: 6px 10px;
    }
    
    .dis-menu-text {
        padding: 15px !important;
        padding-top: 60px !important;
    }
    
    .dis-menu-text h2 {
        font-size: 20px !important;
        margin-bottom: 5px !important;
    }
    
    .price {
        font-size: 14px !important;
        margin-left: 10px !important;
    }
    
    .banner-section {
        padding: 30px 10px;
    }
    
    .app-label {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .feature {
        font-size: 12px;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .phone-image {
        width: 150px;
    }
    
    .delivery-guy {
        width: 80px;
    }
    
    .leaf-2 {
        width: 80px;
    }
}
.text-bar{
    width: 220px;
    height: 10px;
    background-color: #FFD40D;
    
}
.reserve-box{
    background-color: #ef3c52;
    border-radius: 30px;
}
.reserve-box h2{
    font-size: 2rem;
    line-height: 1.2;
}
    
.main-container {
    margin: 0;
    display: flex;
}

.left-image, .right-image {
    width: 150px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.left-image {
width: 10%;
}

.right-image {
width: 10%;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

/* Left side - Pizza card */
.brand-card {
    background-color: #e41e26;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-right: 40px;
}

.brand-card h2 {
    font-size: 20px;
    text-transform: lowercase;
    margin-bottom: 5px;
    font-weight: normal;
}

.brand-card p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hours {
    margin-bottom: 20px;
    font-size: 14px;
}

.tripadvisor {
    font-size: 14px;
}

/* Center content - Menus */
.sections-container {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.menu-section {
    margin-right: 40px;
    min-width: 150px;
}

.menu-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
}

.menu-section h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 35px;
    height: 3px;
    background-color: #ffcc00;
}

.menu-links a {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.menu-links a:hover {
    color: #e41e26;
}

.menu-links a:before {
    content: "❯";
    margin-right: 8px;
    font-size: 12px;
}

/* Newsletter section */
.newsletter {
    min-width: 200px;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.newsletter-form button {
    background-color: #e41e26;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100px;
}

/* Bottom section */
.footer {
    width: 100%;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ffcc00;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: #666;
}

.copyright a {
    color: #e41e26;
    text-decoration: none;
}

.social-links {
    display: flex;
}

.social-links a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
.experts-img img{
    width: 260px;
    height: 275px;
    border-radius: 10%;
}
.custom-date-badge {
    border-radius: 0.5rem;
    padding: 0.5em 1em;
  }
  .main-container {
    margin: 0 auto;
    display: flex;
    background-color: #f9f9f9;
    justify-content: end;
}

.left-image, .right-image {
    width: 10%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

/* Left side - Pizza card */
.brand-card {
    background-color: #e41e26;
    color: white;
    padding: 30px;
    border-radius: 10px;
    width: 280px;
    margin-right: 40px;
}

.brand-card h2 {
    font-size: 20px;
    text-transform: lowercase;
    margin-bottom: 5px;
    font-weight: normal;
}

.brand-card p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hours {
    margin-bottom: 20px;
    font-size: 14px;
}

.tripadvisor {
    font-size: 14px;
}

/* Center content - Menus */
.sections-container {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.menu-section {
    margin-right: 40px;
    min-width: 150px;
}

.menu-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
}

.menu-section h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 35px;
    height: 3px;
    background-color: #ffcc00;
}

.menu-links a {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.menu-links a:hover {
    color: #e41e26;
}

.menu-links a:before {
    content: "❯";
    margin-right: 8px;
    font-size: 12px;
}

/* Newsletter section */
.newsletter {
    min-width: 200px;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.newsletter-form button {
    background-color: #e41e26;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100px;
}

/* Bottom section */
.footer {
    width: 100%;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ffcc00;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: #666;
}

.copyright a {
    color: #e41e26;
    text-decoration: none;
}

.social-links {
    display: flex;
}

.social-links a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
