* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: #0f0f1a;
    color: #e0e0ff;
    line-height: 1.7;
}

.hero {
    background: linear-gradient(135deg, #1a0033, #000000), url('data:image/svg+xml,...') center/cover;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(255,100,0,0.15), transparent 70%);
    pointer-events: none;
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ffd700, #ff6b00, #ff0033);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep 4s infinite alternate;
}
.rad { color: #ffd700; }
.had { color: #ff0033; }

.tagline {
    font-size: 1.5rem;
    color: #aaa;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

nav {
    margin-top: 2rem;
}
nav a {
    color: #ccc;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 600;
}
nav a:hover { color: #ffd700; }

.container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    margin: 2.5rem 0 1rem;
    font-size: 2rem;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 600;
}

section { margin-bottom: 3rem; }
p { font-size: 1.1rem; color: #ccc; }

footer {
    text-align: center;
    padding: 2rem;
    background: #000;
    color: #666;
    font-size: 0.9rem;
}

@keyframes sweep {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
/* Active nav link */
nav a.active {
    color: #ffd700;
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* Document cards */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.doc-card {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: #e0e0ff;
    transition: all 0.3s ease;
    border: 1px solid #333;
}
.doc-card:hover {
    transform: translateY(-8px);
    background: #16213e;
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}
.doc-card h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

/* Media gallery */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.media-grid img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    transition: transform 0.4s ease;
}

.media-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255,215,0,0.3);
    border-color: #ffd700;
}

.video-wrapper {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.video-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    
    pointer-events: none;
    z-index: 1;
}

.team-section {
    margin: 4rem 0;
    text-align: center;
}
.team-section h2 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
@media (min-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr); 
    }
}

/* Force 4 across on tablets */
@media (min-width: 900px) and (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    background: rgba(30, 30, 50, 0.8);
    border-radius: 20px;
    overflow: visble;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,215,0,0.2);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(255,215,0,0.3);
    border-color: #ffd700;
}

.team-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px 20px 0 0;
    border-bottom: 3px solid #ffd700;
}

.team-card h3 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
}

.team-card p {
    color: #ccc;
    font-size: 1rem;
    margin: 0.3rem 0;
}

.team-card a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.team-card a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* ——— GOLD GLOW HOVER EFFECT FOR NAV LINKS ——— */
nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 8px;
    transition: all 0.1s ease;
    position: fixed;
    overflow: hidden;
}

/* Subtle glow + color change on hover */
nav a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

nav a:hover::before {
    left: 100%;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    margin: 0 0.8rem;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: color 0.4s ease;
    z-index: 1;
}

/* Text turns gold on hover */
nav a:hover {
    color: #ffd700;
}

nav a:hover::before {
    left: 100%;
}

/* Optional: subtle glow around the text */
nav a:hover {
    text-shadow: 
        0 0 10px #ffd700,
        0 0 20px #ffd700,
        0 0 30px rgba(255, 215, 0, 0.6);
}