/* BASE */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background: #000;
    position: relative;
    overflow-x: hidden;
}

/* Tiger-style accent stripes using your exact colors */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0%, transparent 65%, #FFD700 67%, transparent 69%),
        linear-gradient(125deg, transparent 0%, transparent 55%, #005BBB 57%, transparent 59%),
        linear-gradient(135deg, transparent 0%, transparent 45%, #D40000 47%, transparent 49%);
    opacity: 0.22;
    pointer-events: none;
    z-index: -1;
}

/* NAVIGATION */
nav {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 0.7;
}

.nav-logo {
    height: 55px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

.hero img {
    max-width: 60%;
    height: auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-top: 20px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* BUTTONS */
.button {
    background: #D40000;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s, transform 0.15s;
}

.button:hover {
    background: #a30000;
    transform: translateY(-2px);
}

/* CONTENT SECTIONS */
.section {
    background: rgba(0,0,0,0.55);
    padding: 40px 25px;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.section h2 {
    margin-top: 0;
}

/* TEAM PAGE */
.profile-row {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 380px;
    margin: 15px auto;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px;
    text-decoration: none;
    color: #FFD700;
    transition: background 0.25s, transform 0.15s;
}

.profile-row:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px);
}

.profile-pic {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #ddd;
}

.name-text {
    font-size: 1.2rem;
    font-weight: bold;
}

/* DIVIDER */
.divider {
    border-left: 2px solid rgba(255,255,255,0.2);
    height: 100px;
    margin: 0 20px;
}

/* MOBILE */
@media (max-width: 600px) {
    nav {
        gap: 12px;
        padding: 10px;
    }

    .nav-logo {
        height: 45px;
    }

    .hero img {
        max-width: 80%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 25px;
        width: 92%;
    }

    .profile-row {
        max-width: 95%;
    }

    .profile-pic {
        width: 60px;
        height: 60px;
    }

    .name-text {
        font-size: 1rem;
    }
}
