@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Press+Start+2P&display=swap');

:root {
    --neon: #00ff9f;
    --neon2: #ff00ff;
    --bg: #0a0a0f;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 2px solid var(--neon);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: var(--neon);
    text-shadow: 0 0 15px var(--neon);
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10,10,15,0.80), rgba(10,10,15,0.80)),
                url('covers/background.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, transparent 40%, var(--neon) 200%);
    opacity: 0.07;
}

.hero-content img {
    width: 260px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px var(--neon));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px var(--neon)); }
    to { filter: drop-shadow(0 0 45px var(--neon)); }
}

.hero-content h1 {
    font-size: 5.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--neon), 0 0 40px var(--neon);
    color: white;
}

.hero-content .subtitle {
    font-size: 2rem;
    color: var(--neon2);
    text-shadow: 0 0 20px var(--neon2);
    margin-bottom: 30px;
}

/* Przycisk */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: white;
    padding: 20px 55px;
    border: 3px solid var(--neon);
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s;
    text-shadow: 0 0 10px var(--neon);
    box-shadow: 0 0 30px rgba(0, 255, 159, 0.5);
}

.btn:hover {
    background: var(--neon);
    color: black;
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 255, 159, 0.8);
}

section { padding: 100px 0; }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon);
}

/* Nasza Ekipa */
.ekipa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.member-card {
    background: #12121a;
    border: 2px solid #28283a;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s;
}

.member-card:hover {
    border-color: var(--neon);
    transform: translateY(-15px);
    box-shadow: 0 0 35px rgba(0, 255, 159, 0.3);
}

.member-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid var(--neon);
    margin-bottom: 15px;
    object-fit: cover;
}

.member-card h3 {
    color: white;
    margin-bottom: 8px;
}

.member-card .role {
    color: var(--neon2);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #aaa;
    font-size: 1.4rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--neon);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #050507;
    padding: 80px 20px;
    text-align: center;
    border-top: 2px solid var(--neon2);
    margin-top: 50px;
}