/* CSS Variables */

:root {
    --primary-blue: #479cdc;
    --teal: #63b79d;
    --orange: #f49342;
    --purple: #9b59b6;
    --pink: #e91e63;
    --light-pink: #fce4ec;
    --pink-beige: #f7e6dc;
    --dark-grey: #2c3e50;
    --light-grey: #ecf0f1;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans Pro', sans-serif;
}


/* Reset */

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


/* Base Styles */

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-grey);
    background: #ffffff;
}

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

.section {
    padding: 80px 0;
}


/* Enhanced Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-grey);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.8rem;
}

h4 {
    font-size: 2.2rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-grey);
    font-weight: 500;
}


/* Header Styles - Enhanced */

.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(233, 30, 99, 0.2);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-container {
    text-align: center;
    margin-bottom: 1rem;
}

.centered-logo {
    height: 150px;
    width: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.centered-logo:hover {
    transform: scale(1.05);
}


/* Navigation - Enhanced with Pink/Purple Gradient */

.main-nav {
    text-align: center;
    position: relative;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.95), rgba(233, 30, 99, 0.95));
    padding: 1.5rem 3rem;
    border-radius: 60px;
    box-shadow: 0 6px 25px rgba(155, 89, 182, 0.4);
    backdrop-filter: blur(15px);
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Mobile Navigation */

.nav-toggle {
    display: none;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    position: relative;
    width: 40px;
    height: 32px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    border-radius: 12px;
}

.nav-toggle::before {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    background: #000000;
    border-radius: 2px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
    box-shadow: 0 8px 0 #000000, 0 16px 0 #000000;
}


/* Hero Section - Enhanced */

.hero-modern {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 156, 220, 0.7), rgba(155, 89, 182, 0.6));
    z-index: 2;
}

.hero-content-box {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 80px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease-out;
}

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

.hero-content-box h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    line-height: 1.2;
}

.hero-content-box p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--dark-grey);
    line-height: 1.7;
    font-weight: 500;
}

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


/* Button Styles - Enhanced with Pink/Purple */

.btn {
    display: inline-block;
    padding: 1.3rem 2.5rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--purple);
    border: 3px solid var(--purple);
    font-weight: 800;
    text-shadow: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8e44ad, #c2185b);
}

.btn-secondary:hover {
    background: var(--purple);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


/* Impact Section - Enhanced */

.impact-section {
    background: linear-gradient(135deg, rgba(71, 156, 220, 0.08), rgba(155, 89, 182, 0.08));
    padding: 100px 0;
    position: relative;
}

.impact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.impact-text h3 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1.2;
}

.impact-text p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--dark-grey);
    font-weight: 500;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 156, 220, 0.1);
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-item:nth-child(1) .stat-number {
    color: var(--primary-blue);
}

.stat-item:nth-child(2) .stat-number {
    color: var(--purple);
}

.stat-item:nth-child(3) .stat-number {
    color: var(--pink);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Split Sections - Enhanced */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse>* {
    direction: ltr;
}

.split-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.split-content {
    padding: 80px;
    background: rgba(255, 255, 255, 0.98);
}

.split-content h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--purple);
    font-weight: 800;
}

.split-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--dark-grey);
    font-weight: 500;
}


/* Gallery Section - Enhanced */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-content {
    padding: 2rem;
}

.gallery-content h4 {
    color: var(--pink);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.gallery-content p {
    color: var(--dark-grey);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}


/* Sponsor Section - Enhanced */

.sponsor-carousel {
    overflow: hidden;
    position: relative;
}

.sponsor-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.sponsor-box {
    text-align: center;
    padding: 1.5rem;
}

.sponsor-logo-box {
    height: 100px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    min-width: 200px;
    font-weight: 800;
    text-align: center;
    transition: all 0.3s ease;
}

.sponsor-logo-box:hover {
    transform: scale(1.05);
}

.sponsor-label {
    color: var(--dark-grey);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* FAQ Section - Enhanced with Pink/Purple */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--purple);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(155, 89, 182, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 800;
    transition: transform 0.3s ease;
    color: var(--pink);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--dark-grey);
    line-height: 1.8;
    padding-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}


/* Form Styles - Enhanced */

.modern-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
}

.modern-form h3 {
    font-size: 2.8rem;
    color: var(--purple);
    margin-bottom: 2rem;
    font-weight: 800;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--pink);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.3rem;
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(155, 89, 182, 0.2);
    transform: translateY(-2px);
}


/* Footer - Enhanced */

.site-footer {
    background: linear-gradient(135deg, var(--light-pink), rgba(155, 89, 182, 0.1));
    border-top: 4px solid var(--purple);
    padding: 3rem 0;
    text-align: center;
    color: var(--dark-grey);
}

.site-footer p {
    font-size: 1.1rem;
    font-weight: 600;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 350px;
        background: linear-gradient(135deg, rgba(155, 89, 182, 0.98), rgba(233, 30, 99, 0.98));
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        padding: 1.5rem 0;
        gap: 0;
    }
    .main-nav ul.active {
        display: flex;
    }
    .main-nav a {
        display: block;
        width: 100%;
        padding: 1.5rem;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 0;
    }
    .centered-logo {
        height: 80px;
    }
    .hero-content-box {
        padding: 40px 25px;
        margin: 0 20px;
    }
    .hero-content-box h1 {
        font-size: 2.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .impact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-section.reverse {
        direction: ltr;
    }
    .split-image {
        min-height: 400px;
    }
    .split-content {
        padding: 50px 30px;
    }
    .modern-form {
        padding: 2.5rem 2rem;
        margin: 0 20px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 2rem;
    }
    h4 {
        font-size: 1.8rem;
    }
}