:root {
    /* Colors */
    --primary-gradient: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    --accent-yellow: #FFEB3B;
    --white: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #F9F9F9;
    --youtube-red: #FF0000;

    /* Fonts */
    --font-title: 'Fredoka', cursive;
    /* or Quicksand */
    --font-body: 'Montserrat', sans-serif;

    /* Spacing & Radius */
    --border-radius-lg: 30px;
    --border-radius-sm: 15px;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: --font-body;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-title);
    color: #4A148C;
    /* Deep purple */
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(156, 39, 176, 0.3), rgba(233, 30, 99, 0.3)), url('assets/banner.jpg');
    background-size: cover;
    background-position: center top;
    color: var(--white);
    padding-top: 100px;
    /* Space for nav */
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    /* Ensure nav is above other content */
}

.logo-img {
    height: 80px;
    /* Adjust as needed */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.cta-small {
    background-color: var(--white);
    color: var(--youtube-red) !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
    padding-top: 50px;
    /* Move text down */
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #AB47BC, #7B1FA2);
    /* Rich Purple Gradient */
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(123, 31, 162, 0.4);
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-purple 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(123, 31, 162, 0.6);
    border-color: var(--white);
    background: linear-gradient(45deg, #BA68C8, #8E24AA);
    /* Lighter purple on hover */
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(171, 71, 188, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(171, 71, 188, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(171, 71, 188, 0);
    }
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transform: rotate(-3deg);
    border: 5px solid var(--white);
}

.wave-bottom {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Story Section */
#story {
    padding: 60px 0;
    background: linear-gradient(180deg, #F3E5F5 0%, #F3E5F5 100%);
    /* Seamless transition from hero wave */
    position: relative;
    overflow: hidden;
}

#story::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-image img {
    width: 100%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    /* Organic blob shape */
    box-shadow: var(--shadow-soft);
    border: 5px solid #FFFFFF;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #E91E63;
    font-family: var(--font-title);
}

.story-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

/* Adventures Section */
#adventures {
    padding: 60px 0;
    background: linear-gradient(180deg, #F3E5F5 0%, #FFFFFF 100%);
    /* Soft purple fade */
    position: relative;
}

#adventures::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#E1BEE7 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

#adventures h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #8E24AA;
    /* Rich purple */
    text-shadow: 2px 2px 0px #F8BBD0;
}

.featured-video {
    max-width: 800px;
    margin: 0 auto 60px;
    border: 8px solid #9C27B0;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.3);
    /* Purple shadow */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.view-more-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-block;
    background-color: #E040FB;
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(224, 64, 251, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: #E040FB;
    border-color: #E040FB;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224, 64, 251, 0.4);
}

.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(156, 39, 176, 0.2);
    border-color: #E040FB;
    /* Vibrant pink border on hover */
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 4px solid #F8BBD0;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #4A148C;
    line-height: 1.4;
}

.card-content .date {
    display: inline-block;
    font-size: 0.85rem;
    color: #FFFFFF;
    background-color: #AB47BC;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

/* Footer */
footer {
    background: #1A1A2E;
    /* Darker background as per image */
    color: var(--white);
    padding: 60px 0 20px;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon {
    color: #E91E63;
    /* Pink icon color */
    width: 24px;
    height: 24px;
}

.footer-col p {
    margin-bottom: 15px;
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    color: #4FC3F7;
    /* Light blue for links */
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.social-list {
    list-style: none;
}

.social-list li {
    margin-bottom: 15px;
}

.social-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #B0B0B0;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-list a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-list svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col h3 {
        justify-content: center;
    }

    .social-list a {
        justify-content: center;
    }

    .social-list a:hover {
        transform: translateY(-3px);
        /* Move up instead of right on mobile */
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: fixed;
        /* Fixed to cover the whole screen */
        right: 0px;
        height: 100vh;
        /* Full height */
        top: 0;
        /* Start from very top */
        background-color: #9C27B0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        padding-top: 0;
    }

    .nav-links li {
        opacity: 1;
        margin: 20px 0;
    }

    .hamburger {
        display: block;
        position: relative;
        /* Ensure z-index works */
        z-index: 200;
        /* Above the menu */
    }

    .nav-active {
        transform: translateX(0%);
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-top: 30px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
        /* Image on top on mobile */
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Floating Buttons */
.float-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 900;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    color: var(--white);
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    left: 30px;
    background-color: #25D366;
}

.scroll-top-btn {
    right: 30px;
    background-color: #9C27B0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #7B1FA2;
}