:root {
    --bg-dark: #140020;
    --brand-purple: #410068;
    --brand-yellow: #FFF100;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    /* Forces navbar to stay on top of hero overlay */
}

.purple-strip {
    background-color: var(--bg-dark);
    height: 60px;
    /* The solid purple part at the very top */
    width: 100%;
}

.island-nav {
    background-color: #ffffff;
    max-width: 1250px;
    width: 95%;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 0 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

    /* THE PUNCH HOLE POSITIONING */
    position: absolute;
    top: 15px;
    /* Pulls it down so it hangs over the hero image */
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 75px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-links a {
    text-decoration: none;
    color: #140020;
    font-weight: 400;
    font-size: 18px;
}

.nav-links a.active {
    font-weight: 700;
}

.btn-book {
    background-color: var(--brand-purple);
    color: var(--brand-yellow);
    padding: 16px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.btn-book .mobile-only{
    background-color: var(--brand-purple);
    color: var(--brand-yellow);
    padding: 16px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* Hide mobile button by default (Desktop) */
.mobile-only {
    display: none;
}

/* HAMBURGER FOR RESPONSIVE */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--brand-purple);
    border-radius: 5px;
}

/* Style for the button link inside the mobile menu */
.nav-links .mobile-only .btn-book {
    display: inline-block;
    margin-top: 10px;
    background-color: var(--brand-purple);
    color: var(--brand-yellow);
    padding: 16px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}



@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        border-radius: 20px;
        text-align: center;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-only {
        display: block;
    }
}




/* --- MAIN FOOTER --- */
.main-footer {
    background-color: #410068;
    padding: 40px 0 40px 0;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    gap: 50px;
}

/* Brand Column */
.footer-brand {
    flex: 1;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    display: block;
}
.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-socials a {
    text-decoration: none;
    font-size: 24px; /* Icon size */
    color: #ffffff; /* Brand Purple */
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    color: #FFF100; /* Brand Yellow */
    transform: translateY(-5px);
}

/* Links Columns */
.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-column h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.link-column a {
    text-decoration: none;
    color: #ffffff; /* Brand Purple */
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #FFF100;
}

/* Copyright Bar */
.footer-bottom {
    max-width: 1250px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    font-style: italic;
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .footer-links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .link-column {
        min-width: 150px;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}










/* Floating Icon */
#wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: white;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

#wa-float a {
    text-decoration: none;
    color: white;
    display: flex;
}



.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger span {
    transition: 0.8s ease;
}


/* Button Loader */

#submitBtn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: none;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading .btn-text {
    opacity: 0.7;
}

.loading .btn-loader {
    display: inline-block;
}

/* Form success / error message */

.form-message {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    color: #25D366;
    display: block;
}

.form-message.error {
    color: #ff4d4f;
    display: block;
}
