/* ================= ROOT VARIABLES ================= */
:root {
    --primary-blue: #0d2c54;
    --primary-green: #2b4a3a;
    --accent-orange: #d96c42;
    --accent-yellow: #f2a65a;
    --bg-light: #f7f4ed;
    --text-dark: #1a1a1a;
    --text-light: #fcfcfc;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background-color: var(--text-light);
}

/* ================= IMAGES ================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 30px;
}

/* ================= HERO ================= */
.hero {
    min-height: 100vh;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    color: white;
}

.hero-title {
    font-size: 4rem;
}

.hero-subtitle {
    font-size: 1.2rem;
}

/* ================= GRID ================= */
.grid {
    display: grid;
    gap: 30px;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ================= SPLIT ================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ================= BUTTON ================= */
.btn {
    padding: 12px 25px;
    display: inline-block;
}

/* ================= CARDS ================= */
.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.card-image {
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

/* ================= FOOTER ================= */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

    /* HERO FIX */
    .hero {
        height: auto;
        padding: 100px 15px 50px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    /* GRID FIX */
    .cards-grid,
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* SPLIT FIX */
    .split-layout {
        display: flex;
        flex-direction: column;
    }

    /* NAVBAR MOBILE */
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    /* BUTTON */
    .btn {
        width: 100%;
        text-align: center;
    }

    /* CARDS */
    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 20px;
    }

    /* FOOTER */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* CONTAINER */
    .container {
        padding: 0 15px;
    }
}


/* CSS Variables constraints */
:root {
    --primary-blue: #0d2c54;
    /* Deep lake blue */
    --primary-green: #2b4a3a;
    /* Forest green */
    --accent-orange: #d96c42;
    /* Sunset orange */
    --accent-yellow: #f2a65a;
    /* Warm bonfire yellow */
    --bg-light: #f7f4ed;
    /* Soft beige */
    --text-dark: #1a1a1a;
    --text-light: #fcfcfc;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.bg-accent {
    background-color: var(--primary-green);
    color: var(--text-light);
}

/* Typography styles */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.text-white {
    color: var(--text-light);
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.text-light {
    color: var(--accent-yellow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-blue);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    margin-top: 10px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    transition: color var(--transition-fast);
}

.navbar.scrolled .logo {
    color: var(--primary-blue);
}

.logo span {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.navbar.scrolled .nav-links a {
    color: var(--primary-blue);
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.navbar.scrolled .nav-links a.btn-outline {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.navbar.scrolled .nav-links a.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.navbar.scrolled .hamburger {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 44, 84, 0.5);
    /* Deep lake blue overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-layout.alternate {
    grid-template-columns: 1fr 1fr;
}

.about-image img,
.events-image img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-text p,
.events-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list i {
    color: var(--accent-orange);
}

/* Cards Grid */
.grid {
    display: grid;
    gap: 30px;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-top: 40px;
}

.card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card.featured {
    background-color: #fff5eb;
    border: 2px solid var(--accent-orange);
    z-index: 1;
}

.card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 108, 66, 0.2);
}

.card-image {
    position: relative;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.price-tag span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: -30px;
    background-color: var(--accent-orange);
    color: white;
    padding: 5px 40px;
    transform: rotate(-45deg);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.card-content {
    padding: 40px 30px 30px;
}

.card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i {
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

/* Activities Grid */
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-top: 40px;
    gap: 20px;
}

.icon-box {
    background-color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
}

.icon-box:hover {
    transform: translateY(-5px);
    background-color: var(--primary-blue);
    color: white;
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
    transition: color var(--transition-fast);
}

.icon-box:hover i {
    color: var(--accent-yellow);
}

.icon-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    border: 4px solid var(--primary-blue);
    z-index: 2;
}

.timeline-content h3 {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Gallery */
.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 40px;
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Stats */
.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    color: white;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: #fcfcfc;
}

.faq-question i {
    color: var(--accent-orange);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-fast), padding var(--transition-fast);
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 200px;
}

/* Booking Form */
.booking-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background-color: #111;
    color: #ccc;
    padding-top: 80px;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about h3 {
    color: white;
    font-size: 1.8rem;
}

.footer-about h3 span {
    color: var(--accent-orange);
}

.footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--accent-orange);
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact ul li i {
    color: var(--accent-orange);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--transition-fast);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Animations & Lazy Load Classes */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lazy-load {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lazy-load.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {

    .split-layout,
    .split-layout.alternate,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .pricing-cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-dark);
        padding: 5px 0;
    }

    .navbar .hamburger {
        display: block;
    }

    .navbar {
        background-color: var(--primary-blue);
        padding: 15px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 11px;
    }
}

/* Custom Nature Additions */
@media (min-width: 769px) {
    body {
        cursor: none;
    }
}

.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s;
}

.custom-cursor.hover {
    width: 20px;
    height: 20px;
    background-color: rgba(217, 108, 66, 0.5);
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: rgba(217, 108, 66, 0.2);
    /* Organic hover */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: organicBlob 3s linear infinite;
}

@keyframes organicBlob {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

/* Particles Container */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 990;
    /* High z-index to overlay content */
}

.firefly {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    box-shadow: 0 0 6px 2px var(--accent-yellow);
    opacity: 0;
    animation: fireflyAnim linear infinite;
    pointer-events: none;
}

@keyframes fireflyAnim {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    10% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.2);
        box-shadow: 0 0 10px 4px var(--accent-yellow);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50px) scaleX(1.5);
    }

    90% {
        opacity: 0.8;
        transform: translateY(-90px) scale(1.2);
        box-shadow: 0 0 10px 4px var(--accent-yellow);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
}

@media (max-width: 768px) {

    .custom-cursor,
    .cursor-follower {
        display: none;
    }
}