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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(255, 255, 255, 0.1));
}

header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.2rem;
    color: #e0a060;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Main Content */
main {
    flex: 1;
    padding: 40px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(224, 160, 96, 0.1) 100%);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    border-left: 5px solid #e0a060;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e0a060;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero strong {
    color: #e0a060;
}

/* Poster Section */
.poster-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
}

.poster {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(224, 160, 96, 0.3);
}

/* About Section */
.about {
    margin-bottom: 60px;
}

.about h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #e0a060;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(224, 160, 96, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.mission-card:hover {
    background: rgba(224, 160, 96, 0.15);
    transform: translateY(-5px);
    border-color: #e0a060;
}

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e0a060;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon {
    background: linear-gradient(135deg, rgba(224, 160, 96, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    border-right: 5px solid #e0a060;
}

.coming-soon h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #e0a060;
}

.coming-soon p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(224, 160, 96, 0.3);
}

.contact-info p {
    font-size: 1rem;
    color: #e0a060;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    text-align: center;
    color: white;
    border-top: 1px solid rgba(224, 160, 96, 0.3);
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
    font-size: 0.95rem;
}

footer p:first-child {
    color: #e0a060;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero {
        padding: 30px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .about h2 {
        font-size: 1.6rem;
    }

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

    .coming-soon {
        padding: 30px;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 40px 15px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .hero, .coming-soon {
        padding: 20px;
    }

    .hero h2, .coming-soon h2 {
        font-size: 1.3rem;
    }

    main {
        padding: 20px 0;
    }
}
