/* Import Nunito Font */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* CSS Variables */
:root {
    --secondary_color: #000000;
    --primary_color: #2256a5;
    --buttons_color: #2256a5;
    --highlight_color: #fffadd;
    --font_color: #3f3f46;
    --font_family: "Nunito", sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font_family);
    background-color: #F8F8F8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--font_color);
}

/* Header Styles */
.header {
    width: 100%;
    border-bottom: 1px solid #bebebe;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 99;
}

.header_main_wrapper {
    position: relative;
    width: 100%;
    max-width: 1180px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo_container {
    display: block;
    text-decoration: none;
}

.logo_image {
    width: 170px;
    height: 35px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.logo_container:focus-visible{
    outline: none;
    box-shadow: none;
}

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

/* Main Content Styles */
.main-content {
    display: block;
    width: 1180px;
    max-width: 1180px;
    margin: 0 auto;
    margin-top: 80px;
}
.main-home-content{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px; /* Account for fixed header */
    min-height: calc(100vh - 80px);
    margin-top: 0;
}
.mainimg{
     width: 80%;
    padding: 60px 0 0;

}

.coming-soon {
    text-align: center;
}

.coming-soon h1 {
    font-size: clamp(36px, 5vw, 80px);
    color: var(--font_color);
    font-weight: 500;
    font-family: var(--font_family);
}

/* Animated dots for Coming Soon with staggered delays */
.dot {
    animation: blink 1.5s infinite;
}

.dot1 {
    animation-delay: 0s;
}

.dot2 {
    animation-delay: 0.3s;
}

.dot3 {
    animation-delay: 0.6s;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Container for main content */
.tour__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Footer Styles */
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.footer__main {
    background-color: #fff6f1;
    padding: 20px 30px;
}

.footer__main-container {
    display: flex;
    flex-direction: column;
    gap: 44px;
    justify-content: center;
    height: 100%;
}

.footer__bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__copyright {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--secondary_color);
    line-height: 1.5;
    white-space: nowrap;
    font-family: var(--font_family);
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--secondary_color);
    line-height: normal;
    font-family: var(--font_family);
}

.footer__legal a {
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    color: var(--secondary_color);
    text-decoration: none;
}

.footer__legal a:hover {
    color: var(--primary_color);
}

.footer__separator {
    color: var(--secondary_color);
    opacity: 0.5;
}

.terms_page {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 80px;
    background-color: #F8F8F8;
    font-family: var(--font_family);
}

.mobile_header__back_btn {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: var(--font_color);
}

.mobile_header__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary_color);
}

.mobile_header{
    display: none;
}

/* Banner Section */
.banner_section {
    position: relative;
    height: 321px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Container */
.content_container {
    position: relative;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 16px;
    margin: -40px auto 0;
    z-index: 2;
    width: 1200px;
    box-shadow: 5px 10px 10px 0px rgba(0, 0, 0, 0.04);
}

.terms_page__content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb */
.terms_page__breadcrumb {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.terms_page__breadcrumb a {
    color: var(--font_color);
    text-decoration: none;
}

.terms_page__breadcrumb_text {
    color: var(--font_color);
}

.terms_page__breadcrumb_current {
    color: var(--secondary_color);
    font-weight: 600;
}

.content-wrapper {
    background-color: #FFFFFF;
    border-radius: 16px;
    display: flex;
    gap: 30px;
    min-height: 600px;
}

/* Content Area */
.content-area {
    flex: 1;
    padding-right: 20px;
}

.page-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary_color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--font_color);
    line-height: 1.3;
    margin-bottom: 10px;
}

.section-content {
    font-size: 16px;
    font-weight: 400;
    color: var(--font_color);
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 10px;
}
.content-sections  .section-content {
    margin-bottom: 3px;
}

/* List Styles */
.section-list {
    margin: 10px 0;
    padding-left: 20px;
}

.section-list li {
    font-size: 16px;
    font-weight: 400;
    color: var(--font_color);
    line-height: 1.5;
    margin-bottom: 8px;
    list-style-type: disc;
}

.section-list li strong {
    font-weight: 600;
    color: var(--secondary_color);
}

/* Contact Link Styles */
.contact-link {
    color: var(--primary_color);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Table Styles */
.cancellation-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cancellation-table thead tr {
    background-color: #f8f8f8;
}

.cancellation-table th {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: var(--secondary_color);
    font-size: 16px;
}

.cancellation-table td {
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 16px;
    color: var(--font_color);
}

.cancellation-table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

/* Responsive Design */
@media screen and (min-width: 200px) and (max-width: 1023px) {
    .mobile_header {
        display: flex;
    }
    
    .content_container {
        padding: 20px 0;
        margin: 0 auto;
    }
    
    .terms_page__content {
        padding: 0 15px;
    }
    
    .content-wrapper {
        flex-direction: column;
        padding: 15px;
        width: 100%;
    }
    
    .content-area {
        padding-right: 0;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .section-content {
        max-width: 100%;
    }

    .banner_section {
        height: 200px;
    }
    
    .content_container {
        padding: 15px 0;
        width: 100%;
        width: 95%;
        margin-top: 15px;
    }
    
    .content-wrapper {
        padding: 10px;
    }
    
    .terms_page__breadcrumb {
        margin-bottom: 20px;
    }
    
    .mobile_header__content {
        display: flex;
        align-items: center;
        padding: 12px 10px;
        gap: 8px;
    }
    
    .mobile_header {
        display: block;
        background-color: #FFFFFF;
        position: sticky;
        z-index: 999;
        top: 0;
    }
    
    .mobile_header__content a{
        display: flex;
        align-items: center;
    }
    
    .mobile_header__title {
        font-family: var(--font_family);
        font-size: 16px;
        font-weight: 700;
        color: var(--secondary_color);
        line-height: 1.3;
        margin: 0;
        flex: 1;
    }
    
    .section-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--font_color);
        line-height: 1.3;
    }
    
    .section-content {
        font-size: 14px;
        font-weight: 400;
        color: var(--font_color);
        line-height: 1.3;
        max-width: 100%;
    }
    
    .section-list li {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    
    .banner_section{
        display: none;
    }
    
    .content-area h1, .terms_page__breadcrumb{
        display: none;
    }
    .header_main_wrapper {
        padding: 0 20px;
    }
    
    .coming-soon h1 {
        padding: 0 20px;
    }
    
    .footer__main {
        padding: 20px;
    }
    
    .footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }
    
    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer__copyright,
    .footer__legal {
        white-space: normal;
    }
    .main-content{
        width: 100%;
            min-height: calc(100vh - 130px);
    }
    .mainimg{
     width: 100%;
    padding: 60px 0 0;

}
}