#page-home {
    overflow-x: hidden;
}

.header-top {
    background: white;
    padding: 15px 50px;
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: center; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 60px;
    /* height: 53px; */
    /* background: linear-gradient(135deg, #ff69b4, #ffb6c1); */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.brand-name {
    font-size: 24px;
    color: #ff69b4;
    font-weight: bold;
}

.header-buttons {
    display: flex;
    gap: 0;
}

.btn-login {
    background: #9b8fc4;
    color: white;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-booking {
    background: #7d6ba8;
    color: white;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-login:hover,
.btn-booking:hover {
    color: white;
    opacity: 0.9;
}

.language-selector {
    display: flex;
    gap: 8px;
    margin-left: 15px;
}

.lang-flag {
    width: 35px;
    height: 25px;
    cursor: pointer;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-container {
    background: #b8b8b8;
    position: relative;
}

.main-nav {
    display: flex;
    justify-content: center;
    list-style: none;
}

.main-nav>li {
    position: relative;
}

.main-nav>li>a {
    display: block;
    padding: 20px 40px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.main-nav>li:hover>a {
    background: #a0a0a0;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #3fc7c7;
    min-width: 200px;
    display: none;
    z-index: 1000;
}

.main-nav>li:hover .dropdown {
    display: block;
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.dropdown li a:hover {
    background: #35b5b5;
}

.hero-section {
    background: linear-gradient(to right, rgba(184, 184, 184, 0.8), rgba(184, 184, 184, 0.3)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="300"><rect fill="%23e0e0e0" width="1200" height="300"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 60px 50px;
    position: relative;
    min-height: 200px;
}

.hero-title {
    color: white;
    font-size: 36px;
    font-weight: normal;
    letter-spacing: 3px;
}

.breadcrumb {
    background: #eee;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb span {
    color: #999;
}

.breadcrumb .current {
    color: #000;
    font-weight: bold;
}

.right-section {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    background: #ff69b4;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.mobile-menu {
    list-style: none;
}

.mobile-menu>li {
    border-bottom: 1px solid #eee;
}

.mobile-menu>li>a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.mobile-menu>li.has-submenu>a {
    position: relative;
    padding-right: 45px;
}

.mobile-menu>li.has-submenu>a::after {
    content: '▼';
    position: absolute;
    right: 20px;
    font-size: 12px;
    transition: transform 0.3s;
}

.mobile-menu>li.has-submenu.open>a::after {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background: #f5f5f5;
    list-style: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.mobile-submenu li a:hover {
    background: #3fc7c7;
    color: white;
}

.mobile-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-buttons button {
    width: 100%;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

.mobile-lang {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid #eee;
}

.overlay-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
}

.overlay-header.active {
    display: block;
}

@media (max-width: 768px) {
    .header-top {
        padding: 15px 20px;
    }

    .brand-name {
        font-size: 20px;
    }

    .header-buttons,
    .language-selector,
    .main-nav {
        display: none;
    }

    .mobile-menu-btn,
    .mobile-nav {
        display: block;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .breadcrumb {
        padding: 15px 20px;
        font-size: 12px;
    }
}


.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.text-zoom-loop {
    display: inline-block;
    transform-origin: center;
    will-change: transform;
    animation: zoomLoop 2.5s ease-in-out infinite;
}

@keyframes zoomLoop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    /* Zoom to khoảng 8% */
    100% {
        transform: scale(1);
    }
}
