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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

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

/* Dark Mode */
body.dark-mode {
    background-color: #0d0d0d;
    color: #f5f5f5;
}

body.dark-mode .navbar {
    background-color: #1a1a1a;
}

body.dark-mode .team-member {
    background-color: #1a1a1a;
}

/* Navbar */
.navbar {
    background-color: #121212;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff3333;
}

.menu-toggle {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff3333;
}

.nav-links a i {
    margin-right: 8px;
}

.btn-toggle {
    background: none;
    border: 1px solid #ff3333;
    color: #e0e0e0;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-toggle:hover {
    background-color: #ff3333;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    text-align: center;
}

.team-section h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff3333;
}

.team-section h1 i {
    margin-right: 10px;
}

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

.team-member {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(255, 51, 51, 0.3);
}

.team-role {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff3333;
    margin-bottom: 15px;
}

.team-role i {
    margin-right: 8px;
}

.member {
    font-size: 1.1rem;
    margin: 8px 0;
}

.member strong {
    color: #e0e0e0;
}

/* Footer */
.footer {
    background-color: #121212;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
}

.footer a {
    color: #ff3333;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s, transform 0.6s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #121212;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

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

    .team-member {
        border-radius: 20px;
        aspect-ratio: auto;
        padding: 20px;
    }
}