﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Anybody', sans-serif;
    background-color: #FCFAF2; 
    padding-top: 100px; 
    overflow-x: hidden;
    max-width: 100%;
}

.main-header {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: padding 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(44, 82, 23, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 60px; 
    flex: 1; 
}

.nav-left {
    justify-content: flex-end;
    padding-right: 20vw; 
}

.nav-right {
    justify-content: flex-start;
    padding-left: 20vw; 
}

.nav-links a {
    text-decoration: none;
    color: #2C5217; 
    font-size: 16px;
    font-weight: 600;
    transition: text-shadow 0.3s ease;
}

.nav-links a:hover {
    font-weight: 600; 
    text-shadow: 0.4px 0 0 #2C5217, -0.4px 0 0 #2C5217; 
}

.nav-links a.active {
    text-shadow: 0.4px 0 0 #2C5217, -0.4px 0 0 #2C5217;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 100px; 
    width: auto;
    display: block;
}

.hero-section {
    position: relative; 
    text-align: center;
    padding: 60px 20px;
    overflow: hidden; 
}

.quote {
    font-family: 'Rubik Dirt', system-ui;
    color: #F0AD00;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.subtitle {
    font-family: 'La Belle Aurore', cursive;
    color: #007B52;
    font-size: 32px;
    font-weight: 400;
    margin-top: 10px;
}

.hero-image {
    margin-top: -10px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 60%; 
    width: 100%;
    height: auto;
    -webkit-mask-image: radial-gradient(ellipse, black 50%, transparent 75%);
    mask-image: radial-gradient(ellipse, black 50%, transparent 75%);
}

.watermark-container {
    position: absolute;
    right: -10%; 
    top: 65%; 
    transform: translateY(-50%); 
    width: 30vw; 
    max-width: 400px; 
    z-index: -1; 
    pointer-events: none; 
}

.watermark-img {
    width: 65%;
    height: auto;
    display: block;
}

.food-slider-section {
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden; 
}

.slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out; 
    width: 100%;
}

.slide {
    min-width: 33.333%; 
    box-sizing: border-box;
    padding: 0 5px; 
}

.slide img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    border-radius: 8px; 
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #004d2e; 
    color: #F0AD00; 
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.slider-btn:hover {
    opacity: 1;
    background-color: #007B52;
}

.prev-btn {
    left: 10px; 
}

.next-btn {
    right: 10px; 
}

.about-us-section {
    width: 100%;
    padding: 20px 20px 100px 20px;
    text-align: center;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-title {
    font-family: 'La Belle Aurore', cursive;
    color: #007B52;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
}

.story-text {
    font-family: 'Anybody', sans-serif;
    color: #2C5217;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.text-uppercase-style {
    text-transform: uppercase;
    font-size: 13px;
}

.story-image-wrapper {
    margin: 60px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.faded-img {
    max-width: 80%;
    width: 100%;
    height: auto;
    -webkit-mask-image: radial-gradient(ellipse, black 40%, transparent 70%);
    mask-image: radial-gradient(ellipse, black 40%, transparent 70%);
}

.street-eats-title {
    font-family: 'Rubik Dirt', system-ui;
    color: #F0AD00;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.btn-container {
    margin-top: 50px;
}

.order-btn {
    display: inline-block;
    background-color: #F8C301;
    color: #007B52;
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    padding: 15px 50px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.order-btn:hover {
    background-color: #F0AD00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 173, 0, 0.4);
}

.customer-reviews-section {
    width: 100%;
    background-color: #FCF4E8; 
    padding: 20px 0;
    text-align: center;
}

.reviews-title {
    font-family: 'Rubik Dirt', system-ui;
    color: #F0AD00;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.reviews-slider-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 90%;
    display: flex;
    align-items: center;
    padding: 0 120px; 
}

.reviews-viewport {
    overflow: hidden; 
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    flex: 0 0 100%; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 80px; 
    box-sizing: border-box;
}

.review-image {
    display: block; 
}

.review-image img {
    width: 380px; 
    height: 380px; 
    object-fit: cover;
    display: block;
}

.review-content {
    flex: 1; 
    max-width: 500px; 
    text-align: left; 
}
.client-name {
    font-family: 'Anybody', sans-serif;
    color: #007B52; 
    font-size: 28px;
    font-weight: 800;
    margin-top: 10px
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars {
    color: #F0AD00; 
    font-size: 18px;
    letter-spacing: 2px;
}

.time-ago {
    font-family: 'Anybody', sans-serif;
    margin-top: 5px;
    color: #2C5217;
    font-size: 14px;
    font-weight: 500;
}

.review-text {
    font-family: 'Anybody', sans-serif;
    color: #2C5217;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 25px;
    /* Giới hạn 5 dòng, hiện ... khi tràn */
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-ratings {
    font-family: 'Anybody', sans-serif;
    color: #007B52;
    font-size: 16px;
    font-weight: 500;
}

.review-ratings strong {
    font-weight: 800;
}

.review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #008f5d; 
    color: #F0AD00; 
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background-color: #007B52;
    transform: translateY(-50%) scale(1.1); 
}

.review-prev-btn {
    left: 0;
}

.review-next-btn {
    right: 0;
}

.maps-btn-container {
    margin-top: 60px;
}

.view-maps-btn {
    display: inline-block;
    background-color: #F8C301;
    color: #007B52;
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    padding: 15px 40px;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.view-maps-btn:hover {
    background-color: #F0AD00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 173, 0, 0.4);
}

.contact-section {
    width: 100%;
    background-color: #FCFAF2;
}

.contact-container {
    display: flex;
    align-items: stretch; 
    width: 100%;
}

.contact-form-side {
    flex: 1;
    padding: 50px 5% 20px 10%; 
    text-align: left;
}

.contact-title {
    font-family: 'Rubik Dirt', system-ui;
    color: #F0AD00;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.contact-desc {
    color: #2C5217;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-form {
    max-width: 600px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: #2C5217;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input, 
.form-group textarea {
    background-color: transparent;
    border: 1px solid #007B52;
    padding: 10px 15px;
    font-family: 'Anybody', sans-serif;
    color: #2C5217;
    outline: none;
}

.form-group textarea {
    resize: none;
    min-height: 45px;
}

.form-submit {
    display: flex;
    justify-content: flex-end; 
    margin-top: 10px;
}

.send-btn {
    background-color: #F8C301;
    color: #007B52;
    border: none;
    padding: 12px 60px;
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background-color: #F0AD00;
    transform: translateY(-2px);
}

.contact-image-side {
    flex: 1;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.main-footer {
    background-color: #007B52;
    color: #FFFFFF;
    padding: 60px 0 20px 0;
    font-family: 'Anybody', sans-serif;
}

.footer-container {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
}

.footer-logo {
    width: 150px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    margin-top: 30px;
    width: 32px;
    height: 32px;
}

.footer-heading {
    color: #FCBE20;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: none;
}

.info-item {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.info-label {
    color: #FCBE20;
    font-weight: 800;
    min-width: 60px;
    flex-shrink: 0;
}

.hour-item {
    margin-bottom: 20px;
    font-size: 14px;
}

.hour-item .time {
    font-weight: 400;
}

.footer-column.footer-map {
    flex: 1.5; 
    display: flex;
    align-items: stretch; 
}

.map-container {
    width: 100%;
    min-height: 250px; 
    height: 100%; 
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-bottom {
    max-width: 80%; 
    margin: 60px auto 0 auto; 
    border-top: 1px solid #FFFCF6;
    padding: 20px 20px 0 20px; 
    text-align: center;
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif; 
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    gap: 6px; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    line-height: 0; 
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2C5217;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    flex-shrink: 0; 
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-color: #FCF4E8; 
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 50px 60px 50px;
    overflow-y: auto; 
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #2C5217;
    font-size: 28px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links li a {
    text-decoration: none;
    color: #2C5217;
    font-family: 'Anybody', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    padding: 12px 0;
    transition: color 0.2s ease;
}

.mobile-nav-links a.active {
    text-shadow: 0.4px 0 0 #2C5217, -0.4px 0 0 #2C5217;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .navbar {
        justify-content: space-between;
        padding: 0 20px;
    }

    .logo {
        order: -1;  
        flex: 0;   
    }

    .hamburger-btn {
        order: 1;
    }

    .logo img {
        height: 60px;
    }

    .main-header {
        padding: 12px 0;
    }

    body {
        padding-top: 80px;
    }

    .hero-section {
        padding: 30px 15px;
    }

    .quote {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 22px;
    }

    .hero-image img {
        max-width: 85%;
    }

    .watermark-container {
        width: 25vw;
        right: -10%;
        top: 65%;
    }

    .slide {
        min-width: 50%; 
    }

    .slider-btn{
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .food-slider-section {
        margin-bottom: 30px;
    }

    .about-us-section {
        padding: 20px 20px 60px 20px;
    }

    .story-title {
        font-size: 36px;
    }

    .story-text {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .street-eats-title {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .story-image-wrapper {
        margin: 40px 0;
    }

    .faded-img, .bw-faded-img {
        max-width: 100%;
    }

    .order-btn {
        font-size: 16px;
        padding: 12px 35px;
    }

    .reviews-title {
        font-size: 20px;
        letter-spacing: 1px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .reviews-slider-wrapper {
        padding: 0 50px;
        max-width: 100%;
    }

    .review-slide {
        flex-direction: column; 
        gap: 20px;
        padding: 0 10px 30px 10px;
        align-items: center;
    }

    .review-image img {
        width: 260px;
        height: 260px;
    }

    .review-content {
        max-width: 100%;
        text-align: center;
    }

    .review-meta {
        justify-content: center;
    }

    .client-name {
        font-size: 22px;
        text-align: center;
    }

    .review-text {
        font-size: 13px;
    }

    .view-maps-btn {
        font-size: 13px;
        padding: 12px 25px;
    }

    .maps-btn-container {
        margin-top: 0;
    }

    .contact-container {
        flex-direction: column; 
    }

    .contact-form-side {
        padding: 50px 20px;
    }

    .contact-title {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-image-side {
        height: 250px;
    }

    .contact-image-side img {
        height: 250px;
    }

    .footer-container {
        flex-direction: column;
        max-width: 100%;
        padding: 0 25px;
        gap: 30px;
    }

    .footer-column.footer-map {
        min-height: 300px;
        height: 300px;
    }

    .map-container {
        height: 300px;
        min-height: 300px;
    }

    .map-container iframe {
        width: 100%;
        height: 350px; 
        border: 0;
        display: block;
    }

    .footer-bottom {
        max-width: 100%;
        padding: 20px 25px 0 25px;
    }

    .footer-logo {
        width: 120px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {

    .nav-left {
        padding-right: 10vw;
    }

    .nav-right {
        padding-left: 10vw;
    }

    .nav-links {
        gap: 30px;
    }

    .logo img {
        height: 80px;
    }

    .quote {
        font-size: 28px;
    }

    .slide {
        min-width: 50%;
    }

    .review-slide {
        gap: 40px;
    }

    .review-image img {
        width: 280px;
        height: 280px;
    }

    .contact-form-side {
        padding: 60px 30px 60px 40px;
    }

    .footer-container {
        max-width: 95%;
        gap: 25px;
    }
}