/* --- body section --- */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

#main-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#nav-placeholder,
#hero-placeholder,
#welcome-placeholder,
#footer-placeholder {
    width: 100%;
}


/*Booking section*/


/* --- Booking Section Styling --- */

.booking-section {
    padding: 100px 5%;
    background-color: var(--forest);
    color: var(--white);
}

.booking-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 30px;
}

.booking-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.booking-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-mini span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}


/* --- Form Styles --- */

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    appearance: none;
    /* Removes default OS styling to help with custom look */
}


/* Fix for dropdown visibility */

.booking-form select {
    cursor: pointer;
    background-image: url("ata:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.booking-form select option {
    background-color: var(--forest);
    /* Dark background for options */
    color: var(--white);
    padding: 15px;
}

.booking-form textarea {
    height: 120px;
    resize: none;
}

.booking-form button {
    cursor: pointer;
    border: none;
    margin-top: 10px;
}


/* --- Mobile Responsive --- */

@media (max-width: 768px) {
    .booking-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}


/*Destination section*/

.dest-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.dest-item:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: #c5a059;
}