/* Typography System */
:root {
    --font-primary: "proxima-nova", sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

.main-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.main-nav.scrolled .logo img {
    height: 35px;
    transition: height 0.3s ease;
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo img {
    height: 40px;
    width: auto;
    transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgb(61, 153, 145);
}

.nav-links a.active {
    color: rgb(74, 115, 111);
}

.nav-links a.book-now {
    background-color: rgb(74, 115, 111);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-links a.book-now:hover {
    background-color: rgb(61, 153, 145);
}

.parallax-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1400px;
    height: 500px;
    overflow: hidden;
    will-change: transform;
    z-index: 2;
    /* Above the scroll wrapper */
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

.parallax-layer img {
    width: auto;
    height: auto;
    max-width: 100%;
    position: relative;
}

/* Customize individual layer image sizes */
.background img {
    width: 100%;
    /* Full width for background */
}

.foreground img {
    width: 50%;
    /* Keep the mountain proportional */
}

.background {
    z-index: -3;
    transform: translateY(250px);
}

.text-layer {
    z-index: -2;
    transform: translateY(-50px);
    /* Start higher and will move down */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-layer h1 {
    font-family: var(--font-primary);
    color: rgb(74, 115, 111);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: var(--font-weight-black);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transform-origin: center center;
}

.foreground {
    z-index: -1;
    transform: translateY(200px);
    /* 50px lower than original 150px */
}

.cloud-layer {
    z-index: 1;
    /* In front of everything */
    transform: translateY(600px);
    /* Start lower in container */
}

.cloud-layer img {
    width: 70%;
    /* Make cloud larger */
    opacity: 0.8;
    /* Start slightly transparent */
}

.scroll-wrapper {
    position: relative;
    min-height: 300vh;
    /* Give plenty of room for scrolling */
    background: white;
    z-index: 1;
    width: 100%;
}

.content {
    position: fixed;
    padding: 50px 20px 0 20px;
    width: 100%;
    min-height: 100vh;
    top: 100vh;
    /* Start completely below viewport */
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    box-sizing: border-box;
    /* Removed transform to allow fixed parallax backgrounds inside */
}

.content.scrolling {
    position: absolute;
    top: 1400px;
    /* Position further down to start appearing after slider */
}

.content.visible {
    opacity: 1;
}

.content h1 {
    font-family: var(--font-primary);
    color: rgba(26, 26, 26, 0.9);
    font-size: clamp(2.5rem, 5vw, 3rem);
    margin-bottom: 20px;
    text-align: center;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.5px;
}

.content p {
    font-family: var(--font-primary);
    color: rgba(0, 0, 0, 0.68);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight: var(--font-weight-regular);
}

.scroll-prompt {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(74, 115, 111, 0.8);
    font-family: var(--font-primary);
    z-index: 4;
    opacity: 1;
    transition: opacity 0.8s ease;
    animation: scrollPromptPulse 3s infinite;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(74, 115, 111, 0.2);
}

.scroll-prompt-text {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.scroll-prompt-icon {
    font-size: 20px;
    animation: scrollPromptBounce 2s infinite;
}

.scroll-prompt-icon i {
    color: rgba(74, 115, 111, 0.7);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

@keyframes scrollPromptPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes scrollPromptBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}



.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-overlay.visible {
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.logo-overlay img {
    width: 300px;
    height: auto;
}

.logo-overlay.scrolling {
    position: absolute;
    top: 500px;
    /* Start at the end of parallax section */
}

.parallax-fade-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(to top, white 0%, transparent 100%);
    opacity: 0;
    z-index: 2;
    /* Same as parallax container */
    pointer-events: none;
}

.icon-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.icon-card {
    flex: 1;
    min-width: 280px;
    /* Slightly smaller to fit better on mobile */
    max-width: 400px;
    background: rgba(74, 115, 111, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    /* Include padding in width calculation */
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 115, 111, 0.1);
}

.icon-card i {
    font-size: 48px;
    color: rgb(74, 115, 111);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.icon-card:hover i {
    transform: scale(1.1);
}

.icon-card h3 {
    color: rgb(74, 115, 111);
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
}

.icon-card p {
    color: rgba(0, 0, 0, 0.7);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.6;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
}

.intro-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
    box-sizing: border-box;
    /* Include padding in width calculation */
}

.intro-text h2 {
    color: rgb(74, 115, 111);
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    letter-spacing: 1px;
}

.intro-text p {
    color: rgba(0, 0, 0, 0.7);
    font-size: clamp(1.125rem, 1.3vw, 1.25rem);
    line-height: 1.6;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 80px auto 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgb(74, 115, 111) 0%, rgb(61, 153, 145) 100%);
    border-radius: 20px;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.cta-section h3 {
    color: white;
    font-size: clamp(1.75rem, 2.5vw, 2rem);
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    letter-spacing: 1px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    margin-bottom: 30px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
}

.primary-cta-button {
    background: white;
    color: rgb(74, 115, 111);
    border: none;
    padding: 18px 40px;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.primary-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.primary-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgb(61, 153, 145);
    color: white;
}

.primary-cta-button:hover::before {
    left: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.mobile-menu-content a {
    display: block;
    color: white;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 24px;
    padding: 15px;
    margin: 10px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-menu-content a:hover {
    color: rgb(61, 153, 145);
}

.mobile-menu-content a.active {
    color: rgb(74, 115, 111);
}

.mobile-menu-content a.book-now {
    background-color: rgb(74, 115, 111);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    margin-top: 20px;
    display: inline-block;
}

.mobile-menu-content a.book-now:hover {
    background-color: rgb(61, 153, 145);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .logo img {
        height: 30px;
    }

    .scroll-prompt {
        bottom: 30px;
    }

    .scroll-prompt-text {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .scroll-prompt-icon {
        font-size: 20px;
    }
}

/* Hero Booking Widget */
.hero-booking-widget {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.booking-form {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.booking-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgb(74, 115, 111);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.booking-field input,
.booking-field select {
    padding: 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    font-family: var(--font-primary);
    outline: none;
    transition: all 0.3s ease;
    height: 45px;
    box-sizing: border-box;
}

.booking-field input:focus,
.booking-field select:focus {
    box-shadow: 0 0 0 2px rgb(61, 153, 145);
    border-color: rgb(61, 153, 145);
}

.booking-btn {
    padding: 0 30px;
    background: linear-gradient(135deg, rgb(74, 115, 111) 0%, rgb(61, 153, 145) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-booking-widget {
        position: relative;
        top: -30px;
        transform: none;
        left: 0;
        width: 90%;
        margin: 0 auto -30px;
    }
    .booking-form {
        flex-direction: column;
        align-items: stretch;
    }
    .booking-btn {
        margin-top: 10px;
    }
}

/* Elite Slider Section */
.elite-slider-section {
    position: fixed;
    top: 500px;
    z-index: 2;
    background: white;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

.elite-slider-section .elite-slider-container {
    max-width: 1600px;
    margin: 50px auto 0;
    padding: 0 70px;
}

.parallax-container.scrolling-up {
    position: absolute;
    top: 500px;
}

.elite-slider-section.scrolling-up {
    position: absolute;
    top: 1000px;
}

.elite-slider-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.elite-slider-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
    mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}

.slider-item {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgb(74, 115, 111);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 115, 111, 0.3);
}

.slider-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    background: white;
    color: rgb(74, 115, 111);
    border: 2px solid rgb(74, 115, 111);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgb(74, 115, 111);
    color: white;
}

.slider-btn.prev-btn {
    left: 15px;
}
.slider-btn.next-btn {
    right: 15px;
}

@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 100%;
    }
    .elite-slider-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .elite-slider-track::-webkit-scrollbar {
        display: none;
    }
    .slider-item {
        scroll-snap-align: center;
    }
    .slider-btn.prev-btn {
        left: -10px;
    }
    .slider-btn.next-btn {
        right: -10px;
    }
}

/* Custom Parallax Section */
.custom-parallax-section {
    position: relative;
    width: calc(100% + 40px);
    margin: 60px -20px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 20px;
    box-sizing: border-box;
}

.custom-parallax-fade {
    position: absolute;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}
.custom-parallax-fade.top {
    top: 0;
    background: linear-gradient(to bottom, white, transparent);
}
.custom-parallax-fade.bottom {
    bottom: 0;
    background: linear-gradient(to top, white, transparent);
}

.custom-parallax-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.dark-bg-text h2, .dark-bg-text p {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Glass Card */
.icon-card.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Split Cards Section */
.split-cards-container {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: rgb(74, 115, 111);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
}

.section-header p {
    color: rgba(0, 0, 0, 0.7);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    max-width: 800px;
    margin: 0 auto;
}

.split-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.split-card.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.split-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-text {
    flex: 1;
    text-align: center;
}

.split-text h3 {
    color: rgb(74, 115, 111);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.split-text p {
    color: rgba(0, 0, 0, 0.7);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .split-card, .split-card.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .split-text {
        text-align: center;
    }
    
    .split-image img {
        height: 300px;
    }
}