* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-olive: #556B2F;
    --darker-olive: #3D4F24;
    --gold: #D4AF37;
    --light-gold: #F4E4BC;
    --white: #FFFFFF;
    --red: #DC143C;
    --text-white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-olive);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fade in animation for all sections */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Futura Font Face - Load local fonts if available */
@font-face {
    font-family: 'Futura';
    src: url('fonts/futura-regular.woff2') format('woff2'),
         url('fonts/futura-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/futura-medium.woff2') format('woff2'),
         url('fonts/futura-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/futura-bold.woff2') format('woff2'),
         url('fonts/futura-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Arial font for all text */
body {
    font-family: 'Arial', sans-serif;
}

.elegant-font,
.section-title,
.section-title-left,
.logo-text,
.menu-item-content h3,
.hero-title,
.menu-tab,
.info-title,
.cta-content h2 {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Header */
.header {
    background-color: var(--dark-olive);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

/* Mobile Only Elements */
.mobile-only {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none !important;
    }
}

.status-bar {
    display: none; /* Ẩn status bar để header gọn hơn */
}

.status-left, .status-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-left i, .status-right i {
    font-size: 14px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    max-width: 1400px;
    margin: 0 auto;
    height: 60px; /* Cố định chiều cao header */
}

.logo {
    flex: 0 0 auto; /* Không chiếm toàn bộ không gian */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-frame {
    border: 2px solid var(--gold);
    border-radius: 6px;
    padding: 4px 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    position: relative;
}

.logo-frame::before,
.logo-frame::after {
    content: '❀';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 12px;
}

.logo-frame::before {
    left: -10px;
}

.logo-frame::after {
    right: -10px;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    color: var(--gold);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding-top: 60px;
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInHero 1s ease-out forwards;
    transform: none !important; /* Override section transform */
}

/* Overlay info box centered on hero */
.info-section.info-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(95vw, 1000px);
    padding: 0;
    margin: 0;
    z-index: 5;
    pointer-events: none; /* tránh chặn tương tác hero */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile: thu nhỏ info box để thấy ảnh nền */
@media (max-width: 767px) {
    .info-section.info-overlay {
        width: min(75vw, 450px);
    }
}

.info-section.info-overlay .info-box {
    pointer-events: auto;
    margin: 0 auto;
    width: 100%;
}

.overlay-title {
    grid-column: 1 / -1;
    margin: 8px 0 10px;
    text-align: center;
    font-size: 18px; /* Default, có thể override bằng inline style */
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--gold);
    /* Viền ngoài kiểu ánh vàng như các tiêu đề khác */
    text-shadow:
        0 0 6px rgba(212, 175, 55, 0.8),
        0 0 12px rgba(212, 175, 55, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    padding: 0 10px;
}

.hero-slogan {
    grid-column: 1 / -1;
    margin: 0 0 15px;
    text-align: center;
    font-size: 14px; /* Default, có thể override bằng inline style */
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    padding: 0 10px;
}

/* Mobile: giảm font size và margin */
@media (max-width: 767px) {
    .overlay-title {
        font-size: 13px;
        margin: 3px 0 5px;
        padding: 0 5px;
        line-height: 1.2;
    }

    .hero-slogan {
        font-size: 11px;
        margin: 0 0 10px;
        padding: 0 5px;
        line-height: 1.3;
    }
}

@media (min-width: 480px) {
    .overlay-title {
        font-size: 22px;
        margin: 10px 0 12px;
    }
}

@media (min-width: 768px) {
    .overlay-title {
        font-size: 32px;
        margin: 12px 0 15px;
    }
}

@media (min-width: 1024px) {
    .overlay-title {
        font-size: 42px;
        margin: 15px 0 18px;
    }

    .info-section.info-overlay {
        width: min(90vw, 1100px);
    }
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B7355 0%, #6B5845 50%, #4A3D2F 100%);
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=800&q=80');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: parallaxZoom 20s ease-in-out infinite alternate;
}

@keyframes parallaxZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
    animation: none;
    opacity: 1;
}

@keyframes heroContentFade {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-title {
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.carousel-dots {
    display: none; /* Ẩn nút điều hướng, slide vẫn hoạt động */
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background-color: var(--white);
}

/* Information Box */
.info-section {
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.info-box {
    background-color: rgba(85, 107, 47, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 12px;
    padding: 15px 20px 25px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile: thu nhỏ và làm trong suốt hơn để thấy ảnh nền */
@media (max-width: 767px) {
    .info-box {
        padding: 8px 12px 14px;
        max-width: 100%;
        background-color: rgba(85, 107, 47, 0.55);
        border-radius: 8px;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
}

@media (min-width: 768px) {
    .info-box {
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
        padding: 20px 30px 30px;
    }
}

@media (min-width: 1024px) {
    .info-box {
        padding: 10px 35px 35px;
        background-color: rgba(85, 107, 47, 0.55);
        border: 1px solid rgba(212, 175, 55, 0.5);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25), 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.8);
}

/* Shimmer effect on border */
.info-box::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: calc(100% + 4px);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* Decorative corner squares - All 4 corners with animation */
.info-box::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--gold);
    top: -1px;
    left: -1px;
    z-index: 3;
    box-shadow:
        calc(100% + 2px) 0 0 var(--gold),
        0 calc(100% + 2px) 0 var(--gold),
        calc(100% + 2px) calc(100% + 2px) 0 var(--gold);
    animation: cornerGlow 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes cornerGlow {
    0%, 100% {
        box-shadow:
            calc(100% + 2px) 0 0 var(--gold),
            0 calc(100% + 2px) 0 var(--gold),
            calc(100% + 2px) calc(100% + 2px) 0 var(--gold);
    }
    50% {
        box-shadow:
            calc(100% + 2px) 0 0 var(--gold),
            0 calc(100% + 2px) 0 var(--gold),
            calc(100% + 2px) calc(100% + 2px) 0 var(--gold),
            0 0 15px rgba(212, 175, 55, 0.6);
    }
}

.info-left {
    display: flex;
    flex-direction: column;
    padding-right: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

/* Mobile: căn giữa nội dung */
@media (max-width: 767px) {
    .info-left {
        align-items: center;
        text-align: center;
    }

    .info-right {
        align-items: center;
        text-align: center;
    }
}

.info-right {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-top: 15px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out 0.4s forwards;
}

@media (min-width: 768px) {
    .info-left {
        padding-right: 35px;
        padding-bottom: 0;
        border-bottom: none;
    }

    .info-right {
        padding-left: 35px;
        padding-top: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Vertical divider between columns */
.info-divider {
    display: none;
}

@media (min-width: 768px) {
    .info-divider {
        display: block;
        width: 1px;
        background: linear-gradient(
            to bottom,
            transparent,
            var(--gold),
            var(--gold),
            transparent
        );
        align-self: stretch;
        opacity: 0.8;
        margin: 0;
        position: relative;
        transition: all 0.4s ease;
    }
}

.info-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 0;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    transition: height 0.6s ease;
}

.info-box:hover .info-divider::before {
    height: 100%;
    animation: dividerGlow 2s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(212, 175, 55, 1);
    }
}

.info-box:hover .info-divider {
    opacity: 1;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.info-title {
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}

/* Mobile: giảm font size info title và căn giữa */
@media (max-width: 767px) {
    .info-title {
        font-size: 10px;
        letter-spacing: 0.6px;
        margin-bottom: 2px;
        text-align: center;
        width: 100%;
    }

    .info-title::after {
        font-size: 9px;
        margin-top: 1px;
    }
}

@media (min-width: 480px) {
    .info-title {
        font-size: 16px;
        letter-spacing: 1.2px;
    }
}

@media (min-width: 768px) {
    .info-title {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
}

.info-title:hover {
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.info-title::after {
    content: attr(data-subtitle);
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 3px;
    color: var(--gold);
    opacity: 0.85;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: all 0.3s ease;
}

.info-title:hover::after {
    opacity: 1;
    letter-spacing: 0.8px;
}

.phone-number {
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    margin-top: 10px;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

/* Mobile: giảm font size phone number và căn giữa */
@media (max-width: 767px) {
    .phone-number {
        font-size: 16px;
        letter-spacing: 0.8px;
        margin-bottom: 6px;
        margin-top: 4px;
        text-align: center;
        width: 100%;
    }
}

@media (min-width: 480px) {
    .phone-number {
        font-size: 28px;
        letter-spacing: 3px;
        margin-bottom: 20px;
        margin-top: 12px;
    }
}

@media (min-width: 768px) {
    .phone-number {
        font-size: 36px;
        letter-spacing: 4px;
        margin-bottom: 25px;
        margin-top: 15px;
    }
}

.phone-number:hover {
    transform: scale(1.05);
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.7), 0 0 40px rgba(212, 175, 55, 0.4);
}

.phone-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-number:hover::before {
    opacity: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 5px;
    justify-content: flex-start;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Mobile: giảm kích thước social icons và căn giữa */
@media (max-width: 767px) {
    .social-icons {
        gap: 6px;
        margin-top: 2px;
        justify-content: center;
        width: 100%;
    }

    .social-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

@media (min-width: 480px) {
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.tripadvisor {
    background-color: #00af87;
}

.social-icon.zalo {
    background-color: #0068FF;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: rotate(360deg);
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.hours-label {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

/* Mobile: giảm font size hours và căn giữa */
@media (max-width: 767px) {
    .hours {
        gap: 4px;
        margin-top: 2px;
        align-items: center;
        width: 100%;
    }

    .hours-label {
        font-size: 9px;
        letter-spacing: 0.5px;
        margin-bottom: 1px;
        text-align: center;
        width: 100%;
    }

    .hours-time {
        font-size: 11px;
        margin-bottom: 6px;
        letter-spacing: 0.2px;
        padding-left: 0;
        text-align: center;
        width: 100%;
    }
}

.hours-time {
    font-size: 15px;
    color: var(--gold);
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 10px;
}

.hours-time::before {
    content: '→';
    position: absolute;
    left: -5px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold);
}

.hours-time:hover {
    padding-left: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hours-time:hover::before {
    opacity: 1;
    left: 0;
}

.info-more {
    display: none; /* Ẩn nút này để giao diện gọn hơn */
}

/* Vertical divider styling */
.info-divider {
    width: 1px;
    background-color: var(--gold);
    margin: 10px 0;
    opacity: 0.6;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background-color: var(--darker-olive);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.about-section.visible .about-image {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.about-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.about-section.visible .about-text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.about-image {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #8B7355 0%, #6B5845 50%, #4A3D2F 100%);
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
    padding: 20px;
}

.section-title-left {
    font-size: 32px;
    font-family: 'Arial', sans-serif;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.read-more-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.read-more-btn:hover {
    background-color: var(--gold);
    color: var(--dark-olive);
    transform: translateY(-2px);
}

/* Call to Action Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-olive) 0%, var(--darker-olive) 100%);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1200&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
    animation: backgroundMove 30s ease-in-out infinite alternate;
}

@keyframes backgroundMove {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.1) translateX(-20px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.cta-section.visible .cta-content {
    opacity: 1;
    transform: scale(1);
}

.cta-content h2 {
    font-size: 36px;
    font-family: 'Arial', sans-serif;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.book-btn-large {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    border-radius: 35px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    text-decoration: none;
    display: inline-block;
}

.book-btn-large:hover {
    background-color: #B8122E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
    color: var(--white);
    text-decoration: none;
}

.book-btn-large:active {
    transform: translateY(-1px);
}

.story-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.story-link:hover {
    color: var(--gold);
}

.book-btn {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.book-btn:hover {
    background-color: #B8122E;
    transform: translateY(-2px);
}

.book-btn:active {
    transform: translateY(0);
}

/* Menu Section */
.menu-section {
    padding: 80px 20px;
    background-color: var(--dark-olive);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.menu-tab:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

.menu-tab.active {
    background-color: var(--gold);
    color: var(--dark-olive);
    font-weight: bold;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background-color: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.menu-section.visible .menu-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.menu-section.visible .menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-section.visible .menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-section.visible .menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.menu-item-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #8B7355 0%, #6B5845 50%, #4A3D2F 100%);
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=600&q=80');
    background-size: cover;
    background-position: center;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-content h3 {
    font-size: 22px;
    font-family: 'Arial', sans-serif;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.menu-item-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-price {
    display: inline-block;
    font-size: 20px;
    color: var(--gold);
    font-weight: bold;
    padding: 8px 15px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s;
}

.floating-chat:hover {
    transform: scale(1.1);
}

.floating-chat i {
    color: var(--white);
    font-size: 24px;
}


/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--darker-olive);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.nav-menu.active {
    right: 0;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gold);
}

.nav-header h2 {
    color: var(--gold);
}

.close-menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.nav-list {
    list-style: none;
    padding: 20px 0;
}

.nav-list li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-list a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-list a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    gap: 18px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.desktop-nav .nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s;
}

.desktop-nav .nav-link:hover {
    color: var(--gold);
}

.desktop-nav .nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    width: 100%;
}

/* Desktop Features Section */
.desktop-features {
    display: block;
    padding: 60px 20px;
    background: linear-gradient(to bottom, var(--dark-olive), var(--darker-olive));
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    .desktop-features {
        padding: 80px 20px;
    }
}

.desktop-features.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 480px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

.feature-card {
    text-align: center;
    padding: 25px 15px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
}

@media (min-width: 480px) {
    .feature-card {
        padding: 30px 18px;
    }
}

@media (min-width: 768px) {
    .feature-card {
        padding: 35px 20px;
    }
}

@media (min-width: 1024px) {
    .feature-card {
        padding: 40px 20px;
    }
}

.desktop-features.visible .feature-card {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.desktop-features.visible .feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.desktop-features.visible .feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.desktop-features.visible .feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.desktop-features.visible .feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-olive);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 480px) {
    .feature-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 18px;
        font-size: 28px;
    }
}

@media (min-width: 768px) {
    .feature-icon {
        width: 75px;
        height: 75px;
        margin: 0 auto 20px;
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        font-size: 32px;
    }
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: rotate(0deg);
    transition: transform 0.6s;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.feature-card:hover .feature-icon::before {
    transform: rotate(360deg);
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--gold);
}

@media (min-width: 480px) {
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

@media (min-width: 768px) {
    .feature-card h3 {
        font-size: 19px;
        margin-bottom: 13px;
    }
}

@media (min-width: 1024px) {
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.feature-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 480px) {
    .feature-card p {
        font-size: 13.5px;
    }
}

@media (min-width: 768px) {
    .feature-card p {
        font-size: 14px;
    }
}

/* Desktop Gallery */
.desktop-gallery {
    display: block;
    padding: 60px 20px;
    background-color: var(--darker-olive);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    .desktop-gallery {
        padding: 80px 20px;
    }
}

.desktop-gallery.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

@media (min-width: 480px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.gallery-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-gallery.visible .gallery-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.desktop-gallery.visible .gallery-item:nth-child(1) {
    transition-delay: 0.1s;
}

.desktop-gallery.visible .gallery-item:nth-child(2) {
    transition-delay: 0.2s;
}

.desktop-gallery.visible .gallery-item:nth-child(3) {
    transition-delay: 0.3s;
}

.gallery-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #8B7355 0%, #6B5845 50%, #4A3D2F 100%);
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    border: 2px solid var(--gold);
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gallery-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--light-gold);
}

.gallery-item:hover .gallery-image::after {
    left: 100%;
}

.gallery-item p {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

/* Footer */
.footer {
    display: block;
    background-color: var(--darker-olive);
    padding: 40px 20px 20px;
    border-top: 2px solid var(--gold);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .footer {
        padding: 50px 20px 20px;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 60px 20px 20px;
    }
}

.footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 480px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 35px;
    }
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        margin-bottom: 40px;
    }
}

.footer-section h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
}

@media (min-width: 480px) {
    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 13px;
    }
}

@media (min-width: 768px) {
    .footer-section h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }
}

@media (min-width: 1024px) {
    .footer-section h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

.footer-section h4 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 10px;
}

@media (min-width: 480px) {
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 11px;
    }
}

@media (min-width: 768px) {
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

@media (min-width: 1024px) {
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 480px) {
    .footer-section p {
        font-size: 13.5px;
        margin-bottom: 9px;
        gap: 9px;
    }
}

@media (min-width: 768px) {
    .footer-section p {
        font-size: 14px;
        margin-bottom: 10px;
        gap: 10px;
    }
}

.footer-social {
    display: flex;
    gap: 10px;
}

@media (min-width: 480px) {
    .footer-social {
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .footer-social {
        gap: 15px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

@media (min-width: 480px) {
    .footer-bottom {
        padding-top: 18px;
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 20px;
        font-size: 14px;
    }
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .info-box {
        grid-template-columns: 1fr 1fr;
        padding: 30px;
        max-width: 800px;
    }

    .phone-number {
        font-size: 32px;
    }

    .info-section {
        padding: 50px 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    body {
        /* Dùng nền đồng nhất để không thấy vệt trên cùng */
        background: var(--dark-olive);
    }

    .header {
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .header-content {
        padding: 8px 40px;
        height: 70px;
    }

    .logo {
        justify-content: flex-start;
        flex: 0 0 auto;
    }

    .logo-frame {
        padding: 6px 20px;
    }

    .logo-text {
        font-size: 18px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .desktop-nav .nav-link {
        font-size: 14px;
    }

    .desktop-nav {
        display: flex;
    }

    .hero {
        margin-top: 0;
        padding-top: 70px;
        height: 650px;
        min-height: 650px;
        max-height: 800px;
    }

    .hero-background {
        background-attachment: fixed;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .info-section {
        padding: 80px 20px;
    }

    .info-box {
        max-width: 1000px;
        padding: 50px 45px;
        grid-template-columns: 1fr auto 1fr;
    }

    .info-left {
        padding-right: 40px;
    }

    .info-right {
        padding-left: 40px;
    }

    .info-divider {
        margin: 0 25px;
    }

    .info-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .phone-number {
        font-size: 42px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .hours-time {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .about-section {
        padding: 100px 20px;
    }

    .about-content {
        gap: 70px;
    }

    .section-title-left {
        font-size: 42px;
        white-space: nowrap;
    }

    .about-description {
        font-size: 18px;
    }

    .cta-section {
        padding: 100px 20px;
    }

    .cta-content h2 {
        font-size: 48px;
    }

    .cta-content p {
        font-size: 22px;
    }

    .menu-section {
        padding: 100px 20px;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .story-link {
        font-size: 20px;
    }

    .book-btn {
        padding: 18px 50px;
        font-size: 20px;
    }

    .desktop-features,
    .desktop-gallery,
    .footer {
        display: block;
    }

    .floating-chat {
        width: 70px;
        height: 70px;
        bottom: 30px;
        right: 30px;
    }

    .floating-chat i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img-placeholder {
        height: 250px;
    }

    .section-title-left {
        font-size: 28px;
        text-align: center;
        white-space: nowrap;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 500px;
        max-height: 600px;
    }

    .info-section.info-overlay {
        width: 98vw;
        padding: 0 10px;
    }

    .info-box {
        padding: 12px 15px 20px;
    }

    .about-section {
        padding: 40px 15px;
    }

    .cta-section {
        padding: 50px 15px;
    }

    .menu-section {
        padding: 50px 15px;
    }

    .menu-tabs {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
    }

    .hero {
        height: 700px;
    }

    .hero-title {
        font-size: 56px;
    }

    .feature-grid {
        gap: 60px;
    }

    .gallery-grid {
        gap: 40px;
    }
}
