/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #214448;
    --primary-tan: #b0945e;
    --primary-gold: #d4a574;
    --primary-brown: #825a42;
    --bg-cream: #f9f6f5;
    --bg-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: var(--bg-cream);
    text-align: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e0d7d0;
}

.top-banner a {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: var(--bg-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.logo-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-tan);
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    padding: 12px 24px !important;
    border-radius: 0;
}

.btn-primary:hover {
    background: #2a5559;
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-icon {
    width: 10px;
    height: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: var(--text-dark);
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-cream);
}

/* Hero Section */
.hero {
    background: url('assets/ExoticHomeBanner.avif') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(24px, 3vw, 36px);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 10px;
}

.hero-text {
    font-size: clamp(20px, 2.5vw, 32px);
    font-style: italic;
    font-weight: 300;
}


/*contactooooo*/
.hero-contact {
    background: url('assets/contact-banner.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 60px;
    position: relative;
}

.hero-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

.hero-contact-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.hero-contact h1 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-contact-subtitle {
    font-size: clamp(24px, 3vw, 36px);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 10px;
}

.hero-contact-text {
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
}


/* Stats Section */
.stats {
    background: #f9f6f5;
    padding: 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.stat-item h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: #e0e0e0;
}

/* Tagline Section */
.tagline {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.tagline p {
    font-size: clamp(22px, 3vw, 32px);
    font-style: italic;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: var(--bg-cream);
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-weight: 400;
}

.about-text-carousel p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 14px 32px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-brown);
    color: white;
}

.btn-outline {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-dark);
}

.about-image img {
    border-radius: 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-start;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-tan);
}

/* Destinations Section */
.destinations {
    background: white;
    padding: 80px 20px;
}

.destinations h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.tabs {
    display: flex;
    gap: 0;
    border-bottom: 3px solid #e0e0e0;
    margin-bottom: 50px;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--primary-dark);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-tan);
}

.tab-btn:hover {
    color: var(--primary-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.hotel-card {
    cursor: pointer;
    transition: transform 0.3s;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hotel-card h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    margin-top: 20px;
    text-align: left;
}

/* Membership Section */
.membership {
    background: var(--bg-cream);
    padding: 0;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.membership-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.membership-content {
    background: var(--bg-cream);
    padding: 60px;
}

.membership-content h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.membership-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* More Inclusive Section */
.more-inclusive {
    background: var(--primary-dark);
    padding: 80px 20px;
    color: white;
}

.more-inclusive h2 {
    font-size: clamp(32px, 4vw, 42px);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

.more-inclusive-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: left;
}

.more-inclusive-intro p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefits-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.benefit-card {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 40px;
}

.benefit-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.benefit-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefit-content p {
    font-size: 15px;
    line-height: 1.8;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.benefits-carousel .carousel-dots {
    justify-content: center;
}

.benefits-carousel .dot {
    background: rgba(255,255,255,0.4);
}

.benefits-carousel .dot.active {
    background: white;
}

/* Experiences Section */
.experiences {
    background: var(--bg-cream);
    padding: 80px 20px;
}

.experiences h2 {
    font-size: clamp(32px, 4vw, 42px);
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.experiences-carousel {
    position: relative;
}

.experiences-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.experience-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.experience-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.experience-card:hover img {
    transform: scale(1.05);
}

.experience-card h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.experiences-carousel .carousel-dots {
    justify-content: center;
}

/* Sustainability Section */
.sustainability {
    background: white;
    padding: 80px 20px;
}

.sustainability h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.sustainability h2 span {
    color: var(--primary-dark);
    font-weight: 700;
}

.sustainability-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.8;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.sustainability-card {
    text-align: center;
}

.sustainability-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
}

.sustainability-content h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.expand-btn img {
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

.sustainability-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sustainability-card.expanded .sustainability-text {
    max-height: 500px;
}

.sustainability-text p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: left;
    padding: 0 20px;
}

/* Contact CTA Section */
.contact-cta {
    background: var(--primary-dark);
    padding: 60px 20px;
    color: white;
}

.contact-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-cta h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 600px;
}

.contact-cta-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 60px 20px 30px;
    color: white;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin: 0 auto;
}

.footer-hotels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-hotels img {
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-hotels img:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.footer-social a:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 12px;
    }

    .about-grid,
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-card {
        grid-template-columns: 1fr;
    }

    .experiences-track {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
        height: 40px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s;
        overflow-y: auto;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .membership-content {
        padding: 40px 30px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .contact-cta .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 30px;
        min-height: 500px;
    }

    .tagline {
        padding: 60px 20px;
    }

    .about,
    .destinations,
    .more-inclusive,
    .experiences,
    .sustainability {
        padding: 60px 20px;
    }

    .tabs {
        gap: 5px;
    }

    .tab-btn {
        padding: 12px 15px;
        font-size: 11px;
    }
}
