/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B8941E;
    --gold-light: #FFD700;
    --space-black: #0A0E1A;
    --space-dark: #141828;
    --space-blue: #1A2332;
    --space-lighter: #242B3D;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D6;
    --accent-blue: #4A90E2;
    --accent-cyan: #50E3C2;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--space-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.org-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 14, 26, 0.7) 0%, 
        rgba(10, 14, 26, 0.8) 50%,
        rgba(10, 14, 26, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gold);
    color: var(--space-black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--space-black);
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    background: var(--space-dark);
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.stat-card {
    background: var(--space-blue);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--space-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature {
    background: var(--space-blue);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.feature-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.95), transparent);
    padding: 30px 20px 20px;
}

.image-caption {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Focus Section */
.focus {
    background: var(--space-black);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.focus-card {
    background: linear-gradient(135deg, var(--space-blue), var(--space-dark));
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.focus-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    color: var(--gold);
}

.focus-icon svg {
    width: 100%;
    height: 100%;
}

.focus-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.focus-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Join Section */
.join {
    background: var(--space-dark);
}

.join-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.join-step {
    flex: 1;
    background: var(--space-blue);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.join-step:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--space-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.join-step h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-step p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.step-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-top: 20px;
}

.join-arrow {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.join-cta {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, var(--space-blue), var(--space-black));
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.cta-box h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefits-list li {
    color: var(--text-secondary);
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Charter Section */
.charter {
    background: var(--space-black);
}

.charter-content {
    max-width: 900px;
    margin: 0 auto;
}

.charter-section {
    background: var(--space-blue);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--gold);
}

.charter-section h3 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.charter-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.charter-section ul {
    list-style: none;
    padding-left: 0;
}

.charter-section li {
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.charter-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.charter-section strong {
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--space-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--space-blue);
    margin: 10% auto;
    padding: 40px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    color: var(--text-secondary);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gold);
}

.modal-content h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.modal-content ol {
    color: var(--text-secondary);
    margin-bottom: 25px;
    padding-left: 25px;
}

.modal-content li {
    margin-bottom: 10px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .join-steps {
        flex-direction: column;
    }
    
    .join-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}