/* --- TRAVEL & ACCOMMODATIONS SECTION --- */
.travel-section {
    width: 100vw;
    min-height: 100vh;
    background: #fffbec; /* Deep clays Black */
    padding: 150px 5vw;
    color: var(--color-white);
    position: relative;
    z-index: 10;
}

.travel-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

/* --- LEFT SIDE: STICKY INTRO --- */
.travel-intro {
    position: sticky;
    top: 150px;
}

.travel-desc {
    font-family: var(--secondary-font);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.7;
    margin: 30px 0;
    color: #000;
}

.travel-note-box {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.note-label {
    display: block;
    font-family: var(--secondary-font);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #962e51;
    margin-bottom: 8px;
    font-weight: 600;
}

.note-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    color: #000;
}

/* --- RIGHT SIDE: HOTEL LIST --- */
.hotel-list {
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Prevents visual collapse */
    width: 100%;
}

.hotel-card {
    padding: 40px 0;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    opacity: 0; /* JS will reveal this */
    transition: transform 0.3s ease;
}

.hotel-card:first-child { padding-top: 0; }

.hotel-info h3 {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 400;
    color: #000;
}

.hotel-info p {
    font-family: var(--secondary-font);
    font-size: 0.85rem;
    opacity: 0.5;
    letter-spacing: 1px;
    color: #000;
}

/* --- THE BOOK LINK --- */
.book-link {
    color: #000;
    text-decoration: none;
    font-family: var(--secondary-font);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 25px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.book-link:hover {
    background: linear-gradient(to right, #962E51, #962E51);
    border-color: #962E51;
    color: #fff !important;
    padding-right: 35px;
}

.coming-soon {
    font-family: var(--secondary-font);
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.6;
    letter-spacing: 1px;
    color: #000;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .travel-section { padding: 100px 20px; }
    .travel-container { grid-template-columns: 1fr; gap: 40px; }
    
    .travel-intro { 
        position: relative; 
        top: 0; 
        text-align: center; 
        margin-bottom: 40px; 
    }
    
    .hotel-card { 
        flex-direction: column; 
        text-align: center; 
        gap: 20px; 
        padding: 30px 0;
    }
    
    .book-link { width: auto; text-align: center; }
}