:root {
    --bg: #020202;
    --panel: #14141a;
    --text: #eaeaea;
    --muted: #9a9aa5;
    --accent: #e9e373;
    --highlight: #7EBDC2;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    background-color: var(--bg);
    color: var(--text);
}

/* ------------------------------- */
/*         ABOUT SECTION           */
/* ------------------------------- */

.about-section {
    width: 85%;
    text-align: center;
    margin: 0 auto;
}

.about-section h2{
    font-size: 5vh;
}

.about-section p {
    width: 50%;
    padding: 2vh;
    text-align: center;
    align-items: center;
    display: flex;
    font-size: 2vh;
    margin: 0 auto;
}
/* ------------------------------- */
/*         TEAM SECTION            */
/* ------------------------------- */

.team-section {
    text-align: center;
    font-size: 4vh;
    padding: 5vh;
}

.team-section h2 {
    margin: 0vh;
}

/* Team grid: centered cards with controlled width */
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center all cards */
    gap: 30px;
}

/* Vertical team card with max width */
.team-member {
    background: linear-gradient(180deg, #17171d, #101014);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    width: 100%;        /* mobile-friendly */
    max-width: 260px;   /* controlled width */
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Image on top */
.team-member img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.team-member:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Info below image */
.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.team-info h3 {
    font-size: 1.3rem;
    margin: 10px 0 5px;
}

.team-info .role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 10px;
}

.team-info .tag {
    font-size: 0.9rem;
    color: var(--highlight);
    line-height: 1.4;
}

.team-info .description {
    font-size: 0.9rem;
    color: var(--highlight);
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    justify-content: center;
}

.social-icon i {
    font-size: 1.3rem;
    color: var(--muted);
    transition: color 0.2s, transform 0.2s;
}

.social-icon:hover i {
    color: var(--accent);
    transform: translateY(-2px);
}

/* ------------------------------- */
/*         TEAM SECTION            */
/* ------------------------------- */

.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* cover the viewport */
    z-index: 0;
    filter: brightness(0.5); /* darken background so text pops */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    align-items: center;
    color: #fff;
    max-width: 800px;
    padding: 0 5px;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-content iframe{
    display: flex;
    width: 90%;      /* bigger */
    min-height: 405px;
    max-width: 1280px;
    margin: 5px auto;
    margin-top: -20px;
}

.hero-logo {
    display: block;
    width: 100%;      /* bigger */
    max-width: 1200px;
    margin: 0px auto;
}

.download-btn {
    padding: 15px 35px;
    background: #7cffcb;
    color: #0c0c0f;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.2s;
}

.download-btn:hover {
    background: #4cd1aa;
    transform: translateY(-3px);
}

footer {
    position: absolute;
    width: 100%;
    margin: 0;
    padding: 2vh;
    text-align: center;
    background-color: #17171d;
}