/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Define Retropix font from local file */
@font-face {
    font-family: 'Retropix';
    src: url('retropix.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Define TT Supermolot Neue font from local file */
@font-face {
    font-family: 'TT Supermolot Neue';
    src: url('TT Supermolot Neue Trial Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
}

/* Parallax stars animation */
#stars, #stars2, #stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#stars {
    width: 1px;
    height: 1px;
    background: transparent;
    animation: animStar 50s linear infinite;
    box-shadow: 
        1000px 500px #FFF, 300px 1200px #FFF, 1200px 800px #FFF,
        1500px 200px #FFF, 800px 1500px #FFF, 200px 1800px #FFF,
        1700px 900px #FFF, 600px 1300px #FFF, 1300px 300px #FFF,
        400px 1600px #FFF, 1600px 600px #FFF, 900px 1100px #FFF,
        1100px 100px #FFF, 500px 1400px #FFF, 1400px 700px #FFF,
        1800px 1200px #FFF, 200px 300px #FFF, 700px 400px #FFF,
        1550px 1550px #FFF, 450px 1750px #FFF, 1750px 450px #FFF,
        950px 50px #FFF, 50px 950px #FFF, 1850px 850px #FFF,
        850px 1850px #FFF, 400px 400px #FFF, 1450px 250px #FFF,
        250px 1450px #FFF, 1750px 1750px #FFF, 1150px 1350px #FFF;
}

#stars2 {
    width: 2px;
    height: 2px;
    background: transparent;
    animation: animStar 100s linear infinite;
    box-shadow: 
        200px 800px #FFF, 800px 200px #FFF, 1500px 500px #FFF,
        500px 1500px #FFF, 1200px 300px #FFF, 300px 1200px #FFF,
        1800px 700px #FFF, 700px 1800px #FFF, 1000px 100px #FFF,
        100px 1000px #FFF, 1600px 400px #FFF, 400px 1600px #FFF,
        1300px 900px #FFF, 900px 1300px #FFF, 600px 1100px #FFF,
        1900px 1300px #FFF, 1300px 1900px #FFF, 1750px 250px #FFF,
        250px 1750px #FFF, 1450px 1450px #FFF, 450px 450px #FFF,
        1850px 650px #FFF, 650px 1850px #FFF, 1050px 1550px #FFF,
        1550px 1050px #FFF, 350px 950px #FFF, 950px 350px #FFF,
        1700px 1700px #FFF, 500px 1900px #FFF, 1900px 500px #FFF;
}

#stars3 {
    width: 3px;
    height: 3px;
    background: transparent;
    animation: animStar 150s linear infinite;
    box-shadow: 
        500px 1000px #FFF, 1000px 500px #FFF, 1500px 200px #FFF,
        200px 1500px #FFF, 800px 1200px #FFF, 1200px 800px #FFF,
        1700px 400px #FFF, 400px 1700px #FFF, 1100px 600px #FFF,
        600px 1100px #FFF, 1300px 300px #FFF, 300px 1300px #FFF,
        900px 1400px #FFF, 1400px 900px #FFF, 700px 1600px #FFF,
        1800px 1800px #FFF, 200px 200px #FFF, 1700px 1000px #FFF,
        1000px 1700px #FFF, 1450px 550px #FFF, 550px 1450px #FFF,
        1850px 350px #FFF, 350px 1850px #FFF, 750px 1750px #FFF,
        1750px 750px #FFF, 950px 1850px #FFF, 1850px 950px #FFF,
        400px 800px #FFF, 800px 400px #FFF, 1600px 1600px #FFF;
}

@keyframes animStar {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-2000px);
    }
}

/* Container styles */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-height: 85vh;
}

/* Logo styles */
.logo-container {
    margin: 0 auto 15px;
    max-width: 200px;
}

.logo {
    width: 100%;
    height: auto;
}

/* Organization name */
.org-name {
    font-family: 'TT Supermolot Neue', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #f15a29;
}

/* Tagline */
.tagline {
    font-family: 'Retropix', monospace;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #e2e8f0;
}

/* Mission description */
.mission {
    max-width: 700px;
    margin: 0 auto 30px;
    background: rgba(27, 39, 53, 0.7);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #cbd5e1;
}

/* CTA button */
.cta-section {
    margin-bottom: 30px;
}

.cta-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    background-color: #f15a29;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #e04a20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer - Enhanced */
footer {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
    background: rgba(27, 39, 53, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 15px;
        display: flex;
        flex-direction: column;
    }
    
    .container {
        min-height: calc(100vh - 70px);
        padding: 15px;
        justify-content: flex-start;
        padding-top: 30px;
    }
    
    .org-name {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .logo-container {
        max-width: 180px;
        margin-bottom: 10px;
    }
    
    .mission {
        margin-bottom: 25px;
        padding: 15px;
    }
    
    .cta-section {
        margin-bottom: 25px;
    }
    
    footer {
        padding: 12px 0;
        margin-top: auto;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        min-height: calc(100vh - 60px);
        padding: 10px;
        padding-top: 20px;
    }
    
    .org-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .logo-container {
        max-width: 150px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .mission {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    footer {
        padding: 10px 0;
        font-size: 0.8rem;
    }
    
    .footer-content {
        padding: 0 15px;
    }
}