/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Colors */
    --clr-forest: #1e3328;
    /* Dark elegant green */
    --clr-sand: #d4c8af;
    /* Muted gold/sand */
    --clr-earth: #8f7c6b;
    /* Warm earthy brown */
    --clr-bg: #f5f4ef;
    /* Off-white background */
    --clr-white: #ffffff;
    --clr-black: #0a0a0a;

    /* Fonts */
    --font-serif: 'Open Sans', sans-serif;
    --font-sans: 'Open Sans', sans-serif;

    /* Transitions */
    --transition-slow: 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    --transition-medium: 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-forest);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-medium);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--clr-sand);
    color: var(--clr-forest);
    padding: 0.6rem 1.6rem;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--clr-white);
    box-shadow: 0 0 20px rgba(212, 200, 175, 0.5);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 0.85rem;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    inset: 0;
    background-color: var(--clr-forest);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--clr-sand);
    animation: pulse 2s infinite ease-in-out;
}

.loader-title {
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.loader-line {
    width: 60px;
    height: 1px;
    background-color: var(--clr-sand);
    margin: 0 auto 1rem;
}

.loader-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background-color: #5c5b53;
    padding: 1.25rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.logo {
    display: flex;
    flex-direction: column;
    color: var(--clr-white);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2.5rem;
    }
}

.nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-medium);
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--clr-sand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-link:hover {
    color: var(--clr-white);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-pin-container {
    height: 300vh;
    position: relative;
}

.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 200px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding-bottom: 200px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 55%;
    width: 100%;
    padding: 0 5%;
    color: var(--clr-white);
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
    position: relative;
    z-index: 10;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-controls {
    position: absolute;
    bottom: 50px;
    left: 5%;
    z-index: 10;
    display: flex;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-medium);
}

.slider-dot.active, .slider-dot:hover {
    background-color: var(--clr-sand);
    transform: scale(1.2);
}

.hero-top {
    display: flex;
    flex-direction: column;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.fade-in {
    animation: fadeInUp 1.5s var(--transition-slow) forwards;
    animation-delay: 1s;
    /* Wait for preloader */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-label .line {
    width: 40px;
    height: 1px;
    background-color: var(--clr-sand);
}

.hero-label span {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--clr-sand);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    max-width: 600px;
    margin-bottom: 0;
    /* Removed bottom margin since it's aligned with buttons */
    color: rgba(255, 255, 255, 0.9);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #61b15a;
    /* Soft green */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 5px rgba(97, 177, 90, 0.5);
}

/* ==========================================================================
   Philosophy Section
   ========================================================================== */
.philosophy {
    padding: 10rem 0;
    background-color: var(--clr-bg);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
    }
}

.philosophy-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 1s var(--transition-slow);
}

.philosophy-image:hover img {
    transform: scale(1.05);
}

.philosophy-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--clr-earth);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--clr-forest);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5d53;
    margin-bottom: 3rem;
}

.link-underline {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-forest);
    position: relative;
    padding-bottom: 5px;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--clr-forest);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.link-underline:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Direct CTA Section
   ========================================================================== */
.direct-cta {
    padding: 6rem 0;
    background-color: var(--clr-bg);
}

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

.direct-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #3e4a42;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.direct-cta-subtitle {
    font-size: 1rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
}

.direct-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.direct-cta-buttons .btn {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-medium);
}

.btn-dark-green {
    background-color: #3e4a42;
    color: var(--clr-white);
    border: 1px solid #3e4a42;
}

.btn-dark-green:hover {
    background-color: #2b352e;
    border-color: #2b352e;
    color: var(--clr-white);
}

.btn-outline-green {
    background-color: transparent;
    color: #3e4a42;
    border: 1px solid #3e4a42;
}

.btn-outline-green:hover {
    background-color: #3e4a42;
    color: var(--clr-white);
}

.direct-cta-buttons .btn svg {
    margin-bottom: 2px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: var(--clr-forest);
    color: var(--clr-bg);
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
        gap: 3rem;
    }
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(245, 244, 239, 0.7);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(245, 244, 239, 0.3);
    color: rgba(245, 244, 239, 0.8);
    font-size: 0.7rem;
    font-weight: 600;
    transition: var(--transition-medium);
    text-decoration: none;
}

.social-btn:hover {
    border-color: var(--clr-sand);
    color: var(--clr-sand);
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-list a {
    color: rgba(245, 244, 239, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-medium);
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--clr-sand);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: rgba(245, 244, 239, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-list .icon {
    color: rgba(245, 244, 239, 0.7);
    margin-top: 2px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(245, 244, 239, 0.3);
    padding-bottom: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--clr-bg);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(245, 244, 239, 0.5);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--clr-bg);
    cursor: pointer;
    transition: var(--transition-medium);
}

.newsletter-form button:hover {
    color: var(--clr-sand);
}

.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(245, 244, 239, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-watermark {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(6rem, 15vw, 15rem);
    color: rgba(245, 244, 239, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    line-height: 0.8;
}

.footer-bottom-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(245, 244, 239, 0.5);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-medium);
}

.footer-legal a:hover {
    color: var(--clr-sand);
}

/* ==========================================================================
   Contact Cards & Map
   ========================================================================== */
.contact-info-cards {
    padding: 5rem 0;
    background-color: var(--clr-bg);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    background-color: transparent;
    transition: var(--transition-medium);
}

.info-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.3);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background-color: #eae9df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3e4a42;
    margin-bottom: 2rem;
}

.card-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8c8a82;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.map-section {
    width: 100%;
    display: block;
}

.map-section iframe {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Destinations Section
   ========================================================================== */
.destinations-section {
    padding: 6rem 0;
    background-color: var(--clr-bg);
}

.destinations-header {
    margin-bottom: 4rem;
}

.section-label-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-label-lines .line {
    height: 1px;
    width: 30px;
    background-color: #3e4a42;
}

.section-label-lines .label-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #3e4a42;
    text-transform: uppercase;
    font-weight: 600;
}

.destinations-title {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.destination-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.destination-card:hover .destination-bg {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: var(--clr-white);
}

.destination-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f6a821;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.destination-name {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.destination-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.destination-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    text-decoration: none;
    transition: var(--transition-medium);
}

.destination-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
}