@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;700&display=swap');

/* Settings */
:root {
    --primary-color: #D9534F;
    --secondary-color: #4A4A4A;
    --background-color: #FDFBF8;
    --dark-blue: #2C3E50;
    --text-light: #6c757d;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Be Vietnam Pro', sans-serif; scroll-behavior: smooth; }
body { background-color: var(--background-color); color: var(--secondary-color); line-height: 1.6; }
.container { max-width: 1100px; margin: auto; padding: 4rem 2rem; overflow: hidden; }

/* Header */
header { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid #eee; padding: 1rem 2rem; position: fixed; width: 100%; top: 0; z-index: 1000; transition: all 0.3s ease; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; }
.logo { display: flex; align-items: center; font-size: 1.5rem; font-weight: 700; color: var(--dark-blue); }
.logo img { height: 50px; margin-right: 10px; }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 2rem; }
.nav-links a { text-decoration: none; color: var(--secondary-color); font-weight: 500; position: relative; padding-bottom: 5px; transition: color 0.3s ease; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--primary-color); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-order-button { background-color: var(--primary-color); color: #fff !important; padding: 8px 20px !important; border-radius: 50px; font-weight: 500; transition: background-color 0.3s ease; }
.nav-order-button:hover { background-color: #c9302c; color: #fff !important; }
.nav-order-button::after { display: none; }
.hamburger { display: none; cursor: pointer; z-index: 1001; }
.hamburger div { width: 25px; height: 3px; background-color: var(--dark-blue); margin: 5px; transition: all 0.3s ease; }

/* Hero */
#hero { height: 100vh; position: relative; overflow: hidden; display: flex; justify-content: center; align-items: center; text-align: center; color: #fff; padding: 0 2rem; }
.hero-bg-slideshow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slideshow-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease-in-out; filter: brightness(0.6); }
.slideshow-img.active { opacity: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { font-size: 4rem; margin-bottom: 1rem; font-weight: 700; letter-spacing: 2px; }
.hero-content p { font-size: 1.5rem; margin-bottom: 2rem; }
.hero-buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-button { padding: 1rem 2rem; text-decoration: none; border-radius: 50px; font-weight: 700; transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; border: 2px solid transparent; }
.cta-button:hover { transform: translateY(-5px); }
.cta-button.primary { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.cta-button.primary:hover { background-color: #c9302c; border-color: #c9302c; }
.cta-button.secondary { background: transparent; color: #fff; border-color: #fff; }
.cta-button.secondary:hover { background: #fff; color: var(--primary-color); }

/* Section Headers */
section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: var(--dark-blue); position: relative; padding-bottom: 10px; }
section h2::after { content: ''; position: absolute; width: 80px; height: 4px; bottom: 0; left: 50%; transform: translateX(-50%); background-color: var(--primary-color); }

/* About */
.about-content { display: flex; align-items: center; gap: 3rem; }
.about-image { flex: 1; text-align: center; }
.about-image img { max-width: 300px; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-text { flex: 2; }
.about-text h3 { color: var(--primary-color); font-size: 1.8rem; margin-bottom: 1rem; }

/* Menu */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.menu-item { background: #fff; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); overflow: hidden; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.menu-item:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.menu-item img { width: 100%; height: 200px; object-fit: cover; }
.menu-item h3 { margin: 1rem 0; color: var(--dark-blue); }
.menu-item p { padding: 0 1rem; color: var(--text-light); font-size: 0.9rem; }
.price { display: block; font-size: 1.2rem; font-weight: 700; color: var(--primary-color); margin: 1rem 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.gallery-img { width: 100%; height: 250px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: transform 0.3s ease, filter 0.3s ease; }
.gallery-img:hover { transform: scale(1.05); filter: brightness(0.8); }

/* Testimonials */
#testimonials { background-color: #fff; }
.testimonial-slider { overflow: hidden; position: relative; width: 100%; -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); }
.testimonial-track { display: flex; width: calc(350px * 8); animation: scroll 40s linear infinite; }
.testimonial-slider:hover .testimonial-track { animation-play-state: paused; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-350px * 4)); } }
.testimonial-card { flex: 0 0 320px; margin: 0 15px; background: var(--background-color); border-radius: 15px; padding: 2rem; box-shadow: 0 5px 20px rgba(0,0,0,0.07); display: flex; flex-direction: column; align-items: center; text-align: center; }
.testimonial-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 3px solid var(--primary-color); }
.testimonial-text { font-style: italic; color: var(--text-light); margin-bottom: 1rem; flex-grow: 1; }
.testimonial-rating { color: #FFD700; margin-bottom: 1rem; }
.testimonial-name { font-weight: 700; color: var(--dark-blue); }

/* Lightbox */
.lightbox { display: none; position: fixed; z-index: 1001; padding-top: 60px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.lightbox-content { margin: auto; display: block; width: 80%; max-width: 800px; animation-name: zoom; animation-duration: 0.6s; }
@keyframes zoom { from {transform:scale(0)} to {transform:scale(1)} }
.close-btn { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }

/* Contact */
.contact-wrapper { display: flex; gap: 3rem; margin-top: 2rem; }
.contact-info, .map { flex: 1; }
.contact-info h3 { color: var(--dark-blue); margin-bottom: 0.5rem; margin-top: 1.5rem; }
.contact-info i { color: var(--primary-color); margin-right: 10px; }
.map iframe { border-radius: 10px; }

/* Footer */
footer { background: var(--dark-blue); color: #fff; text-align: center; padding: 2rem; }
.social-links { margin-top: 1rem; }
.social-links a { color: #fff; font-size: 1.5rem; margin: 0 10px; transition: color 0.3s ease; }
.social-links a:hover { color: var(--primary-color); }

/* Scroll Reveal */
.reveal { position: relative; opacity: 0; transform: translateY(50px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Back To Top */
.back-to-top-btn { position: fixed; bottom: 30px; right: 30px; display: none; width: 40px; height: 40px; background-color: var(--primary-color); color: white; text-align: center; line-height: 40px; border-radius: 50%; z-index: 999; cursor: pointer; font-size: 18px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; opacity: 0; transform: translateY(10px); }
.back-to-top-btn.show { display: block; opacity: 1; transform: translateY(0); }
.back-to-top-btn:hover { background-color: #c9302c; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; border: 1px solid #eee; border-radius: 10px; overflow: hidden; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; background-color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; border: none; cursor: pointer; font-size: 1.1rem; font-weight: 500; color: var(--dark-blue); text-align: left; transition: background-color 0.3s ease; }
.faq-question:hover { background-color: #f9f9f9; }
.faq-question span { flex-grow: 1; padding-right: 1rem; }
.faq-question i { transition: transform 0.3s ease-in-out; }
.faq-answer { max-height: 0; overflow: hidden; background-color: #fdfdfd; transition: max-height 0.4s ease-in-out, padding 0.4s ease; color: var(--secondary-color); line-height: 1.7; }
.faq-answer p { padding: 0; }
.faq-answer ul { list-style: none; padding: 0; }
.faq-answer ul li:not(:last-child) { margin-bottom: 0.5rem; }
.faq-item.active .faq-question { background-color: #f9f9f9; font-weight: 700; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { max-height: 500px; padding: 1.2rem 1.5rem; }

/* Social Reviews */
#social-reviews { background-color: var(--background-color); }
.reviews-wrapper { display: flex; justify-content: center; align-items: stretch; gap: 3rem; flex-wrap: wrap; margin-top: 1rem; }
.review-card { background: #fff; flex: 1; min-width: 320px; max-width: 500px; border-radius: 20px; padding: 2.5rem 2rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #eee; }
.review-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); }
.google-card .platform-logo img { width: 60px; margin-bottom: 1rem; }
.google-card h3 { font-size: 1.8rem; color: var(--secondary-color); margin-bottom: 0.5rem; }
.static-rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 1.5rem; }
.static-rating .score { font-size: 1.5rem; font-weight: 700; color: var(--dark-blue); }
.static-rating .stars { color: #FFD700; font-size: 1.2rem; }
.review-card p { color: var(--text-light); margin-bottom: 2rem; font-size: 1rem; line-height: 1.6; }
.review-btn { text-decoration: none; padding: 12px 30px; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.google-btn { background-color: #4285F4; color: #fff; box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3); }
.google-btn:hover { background-color: #3367d6; transform: scale(1.05); }
.tripadvisor-card .platform-logo img { width: 140px; height: auto; margin-bottom: 1rem; }
.tripadvisor-rating .bubbles { color: #00AA6C; font-size: 1.1rem; display: flex; gap: 4px; }
.tripadvisor-btn { background-color: #00AA6C; color: #fff; box-shadow: 0 4px 15px rgba(0, 170, 108, 0.3); border: 1px solid #00AA6C; }
.tripadvisor-btn:hover { background-color: #fff; color: #00AA6C; transform: scale(1.05); }
.review-btn i { margin-right: 8px; }

/* Popup */
.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 2000; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.popup-overlay.show { opacity: 1; }
.popup-box { background: #fff; padding: 2rem; width: 90%; max-width: 450px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); text-align: center; position: relative; transform: scale(0.8); transition: transform 0.3s ease; border-top: 5px solid var(--primary-color); }
.popup-overlay.show .popup-box { transform: scale(1); }
.popup-close-icon { position: absolute; top: 10px; right: 15px; font-size: 1.5rem; color: #999; cursor: pointer; transition: color 0.3s; }
.popup-close-icon:hover { color: var(--primary-color); }
.popup-header { margin-bottom: 1rem; }
.popup-header i { font-size: 2rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.popup-header h3 { color: var(--dark-blue); font-size: 1.3rem; font-weight: 700; }
.popup-body p { color: var(--secondary-color); margin-bottom: 0.8rem; font-size: 1rem; line-height: 1.5; }
.popup-confirm-btn { background-color: var(--primary-color); color: #fff; border: none; padding: 10px 30px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; margin-top: 1rem; transition: background 0.3s ease; }
.popup-confirm-btn:hover { background-color: #c9302c; }


/* Mobile */
@media screen and (max-width: 768px) {
    .nav-links { position: fixed; right: 0px; top: 0px; height: 100vh; background: var(--dark-blue); display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; width: 60%; transform: translateX(100%); transition: transform 0.5s ease-in; z-index: 1000; }
    .nav-links.nav-active { transform: translateX(0%); }
    .nav-links li { opacity: 0; margin-left: 0; }
    .nav-links a { color: white; }
    .hamburger { display: block; }
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    @keyframes navLinkFade { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.2rem; }
    .container { padding: 3rem 1.5rem; }
    section h2 { font-size: 2rem; }
    .about-content, .contact-wrapper { flex-direction: column; }
    .menu-grid, .gallery-grid { display: flex; overflow-x: auto; gap: 1.5rem; padding-bottom: 1.5rem; -ms-overflow-style: none; scrollbar-width: none; }
    .menu-grid::-webkit-scrollbar, .gallery-grid::-webkit-scrollbar { display: none; }
    .menu-item { flex: 0 0 280px; }
    .gallery-img { flex: 0 0 80%; width: 80%; }
    .testimonial-track { width: calc(300px * 8); animation: scroll-mobile 40s linear infinite; }
    @keyframes scroll-mobile { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-300px * 4)); } }
    .testimonial-card { flex: 0 0 270px; padding: 1.5rem; }
    .tet-lantern { transform: scale(0.6); top: -10px; animation: swing-mobile 3s ease-in-out infinite alternate; }
    .tet-lantern.left { left: -10px; }
    .tet-lantern.right { right: -10px; }
    @keyframes swing-mobile { 0% { transform: scale(0.6) rotate(-5deg); } 100% { transform: scale(0.6) rotate(5deg); } }
    .tet-falling-item { font-size: 15px !important; }
    
    /* Social Reviews Mobile - Horizontal Scroll */
    .reviews-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1.5rem;
        -ms-overflow-style: none;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }
    .reviews-wrapper::-webkit-scrollbar { display: none; }
    .review-card {
        flex: 0 0 85%;
        max-width: 85%;
        min-width: 280px;
        scroll-snap-align: center;
        margin: 0;
    }
}
