/* Base Styles & Variables */
:root {
    --navy: #0a192f;
    --navy-light: #112240;
    --gold: #c5a059;
    --gold-light: #e2c275;
    --cream: #f8f5f0;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #a8b2d1;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .monogram, .quote {
    font-family: 'Playfair Display', serif;
}

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

.gold-text {
    color: var(--gold);
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    text-decoration: none;
}

.monogram {
    font-size: 2rem;
    font-weight: 700;
    border: 2px solid var(--gold);
    padding: 4px 8px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 1px;
}

.name-top { font-size: 0.9rem; color: var(--white); }
.name-bottom { font-size: 0.9rem; color: var(--gold); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--gold);
    opacity: 1;
}

.music-toggle {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.music-toggle:hover {
    background: var(--gold);
    color: var(--navy);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2000') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 30%, rgba(10, 25, 47, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.hero-text-area {
    max-width: 700px;
}

.hero-subtitle {
    color: var(--gold);
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-title {
    color: var(--white);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--navy);
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Mission Section */
.mission {
    padding: 10rem 0;
    background-color: var(--cream);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.card-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card p {
    font-size: 0.9rem;
    color: #666;
}

.founder-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.founder-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.founder-card:hover .founder-img-wrapper img {
    transform: scale(1.05);
}

.founder-content {
    padding: 3rem;
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--gold-light);
}

.founder-name {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.founder-role {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Approach Section */
.dark-section {
    background: var(--navy);
    color: var(--white);
    padding: 10rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.approach-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.approach-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-item:hover img {
    transform: scale(1.1);
}

.item-1 { grid-row: span 2; }

/* Courses Section */
.courses {
    padding: 0;
}

.courses-container {
    display: flex;
    min-height: 600px;
}

.courses-img {
    flex: 1;
}

.courses-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.courses-content {
    flex: 1;
    padding: 8rem 5rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-list {
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature i {
    color: var(--gold);
}

.feature span {
    font-weight: 600;
    font-size: 1rem;
}

/* Donation Section */
.donation {
    position: relative;
    padding: 12rem 0;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2000') no-repeat center center/cover;
    text-align: center;
    color: var(--white);
}

.donation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
}

.donation-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.donation-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.highlight-box {
    background: rgba(197, 160, 89, 0.1);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
}

.highlight-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.gold-glow:hover {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.6);
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

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

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-light);
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.footer-contact i {
    color: var(--gold);
    width: 18px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .mission-grid, .approach-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .courses-container {
        flex-direction: column;
    }
    .courses-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-content {
        padding: 0 2rem;
    }
    .mission-cards {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== SPLASH OVERLAY ==================== */
#splash-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 5, 15, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
    backdrop-filter: blur(6px);
}

.splash-content {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    animation: splashFadeIn 1s ease;
}

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

.splash-icon {
    font-size: 3.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.15); opacity: 0.7; }
}

.splash-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #c9a84c;
    margin: 0;
}

.splash-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

#splash-enter-btn {
    margin-top: 0.5rem;
    padding: 0.85rem 3rem;
    background: transparent;
    border: 2px solid #c9a84c;
    color: #c9a84c;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

#splash-enter-btn:hover {
    background: #c9a84c;
    color: #000;
}

/* ==================== NEW SECTIONS ==================== */

/* Legal Info Bar */
.legal-info-bar {
    background: var(--gold);
    color: var(--navy);
    padding: 10px 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Intervention Areas */
.intervention {
    padding: 8rem 0;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -2rem auto 4rem;
    opacity: 0.7;
}

.intervention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-card {
    background: var(--navy-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-10px);
}

.area-img {
    height: 200px;
}

.area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-info {
    padding: 2rem;
}

.area-info h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.area-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Stories / Projects */
.projects {
    padding: 8rem 0;
}

.story-item {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.story-item.reverse {
    flex-direction: row-reverse;
}

.story-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-item:hover .story-img img {
    transform: scale(1.05);
}

.story-content {
    flex: 1;
}

.tag {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.story-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.quote-small {
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .story-item, .story-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }
}
