@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}

.logo {
    width: 250px;
    height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
    border: none;
    padding: 0;
    margin: 0;
    outline: 0;
}

nav {
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 1000;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #AB0002, #79010180);
}

.g_nav {
    height: 80px;
    background: linear-gradient(90deg, #AB0002, #5E0100);
    padding: 0 200px;
}

nav ul li {
    display: inline-block;
    margin: 0 5px;

    padding: 15px;
    border: 3px solid #ffffff;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    color: #fff;
    border-radius: 100px;
    background: linear-gradient(90deg, #b40000, #d62223, #b40000);
    width: 150px;
    text-align: center;
    margin-top: 12px;
    cursor: pointer;
}

nav ul {
    float: right;
    padding: 0;
    margin-bottom: 0;
}

nav ul li a{
    color: #ffffff;
}

nav ul li a:hover{
    color: #ffc300;
}

nav ul li:hover, nav ul li:focus, nav ul li.active{
    background: linear-gradient(90deg, #880201, #d62223, #880201);
}

nav ul li:hover a, nav ul li:focus a, nav ul li.active a{
    color: #ffc300;
}

label #menu-open, #menu-close {
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 60px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
}

#menu-check { display: none; }

div.banner {
    width: 100%;
    height: calc(100vh - 80px);
    background: url('/images/banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
    position: relative;
}

.scroll-down {
    position: fixed;
    bottom: 20px;
    right: 0;
    transform: translateX(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    /*animation: bounce 2s infinite;*/
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: #8d0606;
    z-index: 999;
}

.scroll-down:hover {
    color: #FFEB3B;
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.content-section {
    padding: 40px 0;
    background: #f8f9fa;
    margin-top: 80px;
}

.nav-tabs {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    background: #F5E6D3;
    margin-right: -40px;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab.active {
    background: #C41E3A;
    position: relative;
    clip-path: polygon(0px 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.tab:last-child {
    margin-right: 0;
}

.tab span {
    color: #c41e3a;
    font-weight: bold;
    font-size: 15px;
    display: block;
    padding: 0 20px;
}

.tab.active span {
    color: white;
}

.tab-content {
    max-width: 1400px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
    padding: 10px;
}

.article-content::-webkit-scrollbar {
    width: 8px;
}

.article-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

.article-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.article-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.tab-pane.active {
    display: block;
}

.article-content {
    border-radius: 10px;
}

.article-content h2 {
    color: #C41E3A;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.article-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-text {
    line-height: 1.8;
    text-align: justify;
}

.article-text p {
    margin-bottom: 20px;
    color: #333;
}

/* Image Slider Section */
.image-slider-section {
    padding: 0;
    background: #000;
}

.image-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.slide-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

/* Remove navigation and pagination styles since they're not needed */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
    display: none;
}

@media (max-width: 768px) {
    .image-slider {
        max-width: 100%;
        padding: 0;
    }
}

/* Footer Styles */
.footer {
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
}

.footer-title-wrapper {
    background-color: #BC0100;
    padding: 15px 0;
}

.footer-content-wrapper {
    background-color: #A00100;
    padding: 10px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li:last-child{
    margin-bottom: 0;
}

.footer-section ul li span {
    color: #fff;
}

.footer-section.info p {
    margin-bottom: 8px;
}

.footer-section.info .license {
    margin-top: 0;
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33.33%; /* Tự động điều chỉnh */
    height: 3px;
    background: #3498db;
    transition: all 0.4s ease;
}

div.banner_header {
    width: 100%;
    height: 49px;
    background: url('/images/banner_header.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: 90px;
}

.breadcrumb-container {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 15px 0;
}

.breadcrumb-container .container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    list-style: none;
}

.breadcrumb-item {
    color: #fff;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #fff;
    padding: 0 10px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.breadcrumb-item a:hover {
    color: #f0f0f0;
}

.breadcrumb-item.active {
    color: #F9C850;
    font-size: 16px;
    font-weight: bold;
}

.breadcrumb-item a i {
    margin-right: 5px;
}

.breadcrumb-item a:hover i {
    color: #f0f0f0;
}

/* Room List Section */
.room-list-section, .room-view-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 50px;
    background: #F4D9B9;
    box-shadow: 3px 3px 5px rgb(0 0 0 / 22%);
}

.section-title h2 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    padding: 10px 25px;
    display: inline-block;
    position: relative;
    background: #C41E3A;
    clip-path: polygon(0px 0, 97% 0, 100% 50%, 97% 100%, 0 100%);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.section-title h2:before {
    display: none;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.room-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.room-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.view-360 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.view-360:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.view-360 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.room-info {
    padding: 20px;
}

.room-info h3 {
    color: #333;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.room-item:hover .room-info h3 {
    color: #C41E3A;
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-item:hover .room-overlay {
    opacity: 1;
    cursor: pointer;
}

.room-details {
    color: #fff;
    padding: 20px;
    text-align: left;
}

.room-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.room-details i {
    margin-right: 10px;
    width: 20px;
    color: #F9C850;
}

/* Room View Section Styles */
.room-view-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.room-view-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.room-detail-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
    margin-top: 50px;
}

.room-info-basic {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #333;
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.info-item p {
    color: #333;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    font-weight: 600;
}

.room-main-image {
    width: 50%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

.room-info-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.info-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-section.description {
    grid-column: span 2;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-header img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.info-header h3 {
    color: #C41E3A;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.description-content {
    color: #333;
    line-height: 1.8;
    font-size: 15px;
}

.description-content p {
    margin-bottom: 15px;
}

#breadcrumb_mobile{
    display: none;
}

.btn_join_tour{
    border: 4px solid #ffffff;
    color: #ffffff;
    background: #fa9615;
    padding: 15px 30px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 10px;
    /*position: absolute;*/
    bottom: 100px;
    left: 50%;
    /*transform: translateX(-50%);*/
    text-transform: uppercase;
    box-shadow: 2px 3px #00000033;
    text-wrap: nowrap;
}

.btn_join_tour_circle{
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1;
    align-items: center;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    background: #fa9615;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    justify-content: center;
    font-size: 15px;
    border: 5px solid #ffffff;
    box-shadow: 0px 0px 15px 5px #00000057;
}

.btn_join_tour_circle:hover, .btn_join_tour:hover{
    color: #a00100;
}

.iframe-container {
    display: none;
    position: relative;
}

.iframe-container iframe {
    width: 100%;
    height: calc(100vh - 80px);
    border: none;
}

.btn-close-iframe {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    background: #fa9615;
    border: 2px solid #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-close-iframe i {
    font-size: 20px;
    color: white;
}

.btn-close-iframe:hover {
    background: #ff8c00;
    transform: scale(1.05);
}

.image-view-360{
    position: relative;
    margin-bottom: 30px;
}

.image-view-360 .bg_thumbnail{
    width: 100%;
}

.image-view-360 .icon_360{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 130px;
    box-shadow: 0px 3px 0px #0000002b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ffffff;
    cursor: pointer;
}

#tour360-iframe{
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.btn-close-iframe360{
    display: none;
    position: fixed;
    top: 100px;
    left: 10px;
    z-index: 99991;
    background: #ab0002;
    border: 2px solid #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.icon_360:hover {
    zoom: 1.1;
}

.slick-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 0;
    margin: 0;
    outline: 0;
}

.section_map{
    margin-top: 80px;
    height: calc(100vh - 200px);
}

.g_btn_join{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.g_btn_join_tour{
    display: flex;
    gap: 30px;
}

.g_btn_join_tour a img{
    background: linear-gradient(180deg, #a60504, #ce201f);
    padding: 10px;
    border: 2px solid #ffffff;
    outline: none;
    border-radius: 10px;
    box-shadow: 2px 3px 10px #00000033;
}

.g_btn_join_tour a:hover{
    scale: 1.1
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Common tooltip styles */
.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    color: white;
    border-radius: 4px;
    font-size: 20px;
    /*white-space: nowrap;*/
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-in-out;
    font-weight: bold;
    min-width: 250px;
}

.tooltip[data-position="top"]::after {
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip[data-position="bottom"]::after {
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip[data-position="left"]::after {
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

.tooltip[data-position="right"]::after {
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}
