/* Header Styles */
.header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
    pointer-events: none;
}

.header-pill {
    background: rgba(0, 0, 0, 0.4);
    /* Darker semi-transparent pill */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0 20px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: fit-content;
    min-width: 554px;
    height: 55px;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.header.scrolled {
    top: 10px;
}

.header-pill.scrolled-pill {
    background: rgba(0, 0, 0, 0.95);
    /* Almost solid black on scroll */
    border-color: rgba(212, 175, 55, 0.3);
    /* Gold tint border */
}

.logo {
    display: flex;
    align-items: center;
}

.header-logo-img,
.custom-logo {
    height: 40px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.mobile-only-btn {
    display: none;
}

.nav-menu a {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: capitalize;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.current-menu-item,
.nav-menu .current_page_item>a {
    color: var(--primary-gold);
    opacity: 1;
}

.header-cta {
    display: block;
}

.btn-book-now {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book-now:hover {
    background-color: transparent;
    color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.header-pill.scrolled-pill .btn-book-now {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
}

.header-pill.scrolled-pill .btn-book-now:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 900px) {
    .header-pill {
        padding: 10px 20px;
        width: 95%;
        min-width: unset;
        background: rgba(0, 0, 0, 0.9);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark-bg);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        z-index: 999;
        flex-direction: column;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .mobile-only-btn {
        display: block;
        margin-top: 20px;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
}

/* Footer Styles */
.team-cta {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 80px;
    margin-top: 0;
}

#footer {
    margin-top: 0;
    padding-top: 0;
}

.team-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 40px;
    font-family: var(--font-body);
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--light-text);
}

.btn-gold-solid {
    background-color: var(--dark-bg);
    color: var(--primary-gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
}

.btn-gold-solid:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.main-footer {
    background-color: var(--dark-bg);
    padding: 60px 0;
    border-top: 1px solid #1a1a1a;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 900;
    font-size: 35px;
    color: var(--light-text);
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.copyright {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.copyright p {
    color: var(--gray-text);
    font-size: 14px;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 749px;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero-slider,
.slick-list,
.slick-track {
    height: 100%;
}

.slick-slide {
    height: 100%;
}

.hero-section .slick-prev,
.hero-section .slick-next,
.hero-section .slick-arrow {
    display: none !important;
}

.slide-item {
    height: 100%;
    position: relative;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 60%;
    /* Adjusted for better visibility */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 55px;
    /* Larger as per Figma */
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 40px auto;
    display: block;
    line-height: 1.6;
    color: var(--light-text);
    opacity: 0.9;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-gold);
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Slick Dots */
.slick-dots {
    bottom: 50px;
    z-index: 10;
}

.slick-dots li button:before {
    color: white;
    font-size: 12px;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-gold);
    opacity: 1;
}

/* Contact/Book Us Page */
.contact-section {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.contact-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--dark-bg) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.contact-header h2 {
    position: relative;
    z-index: 2;
    font-size: 60px;
    text-transform: uppercase;
    color: white;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-image-wrapper {
    display: flex;
    align-items: center;
}

.contact-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 32px;
    margin-bottom: 40px;
    line-height: 1.4;
    font-family: var(--font-body);
    font-weight: 300;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--gray-text);
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--light-text);
}

.btn-book-contact {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book-contact:hover {
    background-color: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-socials {
    display: flex;
    gap: 25px;
}

.contact-socials a {
    color: var(--gray-text);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-pill {
        min-width: unset;
        width: 90%;
        height: 50px;
        padding: 0 15px;
        backdrop-filter: blur(10px);
    }

    .hero-section {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content {
        top: 50%;
        width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        /* Corrected to 28px as requested in earlier chats, matching Figma mobile */
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        /* Smaller for mobile */
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-btn-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .btn-glass,
    .btn-gold {
        padding: 14px 0;
        font-size: 13px;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .team-cta {
        height: auto;
        padding: 60px 20px;
        align-items: center;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 20px;
    }

    .contact-header h2 {
        font-size: 32px;
    }

    .contact-info-card h3 {
        font-size: 22px;
        text-align: center;
    }

    .btn-book-contact {
        width: 100%;
        text-align: center;
        display: block;
    }

    .contact-socials {
        justify-content: center;
    }
}