* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #DFBD36;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    margin: 20px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #FFDE59;
    color: #000000;
}

.nav-links a.active {
    background-color: #FFDE59;
    font-weight: bold;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    margin: 20px;
    background-color: #000000;
    border-radius: 10px;
}

.hero-section.image-left {
    flex-direction: row-reverse;
}

.hero-content {
    flex: 1;
    background-color: #DFBD36;
    border-radius: 10px;
    padding: 20px;
    margin: 0 1rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: black;
}

.hero-content a {
    color: #000000;
    text-decoration: solid;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #FFDE59;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #FFDE59;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 1rem;
}

.slogan-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-section,
    .hero-section.image-left {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin: 0 0 2rem 0;
    }

    .hero-image {
        margin: 0;
    }
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background: #000000;
    margin: 0;
    padding: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 1s infinite;
    margin: 0;
    padding: 0;
}

@keyframes twinkle {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.hero-section {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
}

.hero-section.hidden {
    opacity: 0;
    transform: translateY(100px);
}

.hero-section.show {
    opacity: 1;
    transform: translateY(0);
}

footer {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
}

footer.hidden {
    opacity: 0;
    transform: translateY(100px);
}

footer.show {
    opacity: 1;
    transform: translateY(0);
}

.team-title {
    text-align: center;
    color: #DFBD36;
    margin: 40px 0;
    font-size: 3rem;
}

.team-section {
    margin: 40px 20px;
    padding: 20px;
    background-color: #000000;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
}

.team-section.hidden {
    opacity: 0;
    transform: translateY(100px);
}

.team-section.show {
    opacity: 1;
    transform: translateY(0);
}

.team-section h2 {
    color: #DFBD36;
    text-align: center;
    margin-bottom: 30px;
}

.members-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.member-card {
    background-color: #DFBD36;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-card h3 {
    margin: 10px 0;
    color: #000000;
}

.member-card p {
    color: #000000;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .members-container {
        flex-direction: column;
        align-items: center;
    }
    
    .member-card {
        width: 100%;
        max-width: 300px;
    }
}

.members-grid-2 {
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.members-grid-4 {
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.members-grid-7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.members-grid-7 .member-card {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
}

@media (max-width: 768px) {
    .members-grid-2,
    .members-grid-4,
    .members-grid-7 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.smaller-image {
    width: 300px !important;
    height: 300px !important;
    object-fit: contain !important;
}

.medium-image {
    width: 400px !important;
    height: 400px !important;
    object-fit: contain !important;
}

.missions-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.mission-card {
    background-color: #DFBD36;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.mission-photo {
    width: 200px;
    height: 200px;
    margin: 15px auto;
    border-radius: 10px;
    overflow: hidden;
}

.mission-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-card h3 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.mission-card p {
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .missions-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .missions-container {
        grid-template-columns: 1fr;
    }
    
    .mission-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}