@font-face {
    font-family: 'LEDLIGHT';
    font-style: normal;
    font-weight: 400;
    src: url('LEDLIGHT.woff') format('woff');
}

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #888888;
    --accent: #e01030;
    --accent-dim: rgba(224, 16, 48, 0.15);
    --glow: 0 0 8px rgba(224, 16, 48, 0.4), 0 0 20px rgba(224, 16, 48, 0.15);
    --glow-strong: 0 0 10px rgba(224, 16, 48, 0.5), 0 0 30px rgba(224, 16, 48, 0.2), 0 0 60px rgba(224, 16, 48, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
    transition: background 0.3s;
}
nav.scrolled {
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
}
.nav-logo {
    font-family: 'LEDLIGHT', 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--text-primary);
    text-decoration: none;
}
.nav-logo span { color: var(--accent); text-shadow: var(--glow); }
.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
    background: var(--accent-dim);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 28px; height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(224,16,48,0.05) 0%, transparent 70%);
}
.hero-subtitle {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: var(--glow);
}
.hero-title {
    font-family: 'LEDLIGHT', 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 12vw, 140px);
    letter-spacing: 8px;
    line-height: 0.95;
    margin-bottom: 30px;
    text-shadow: var(--glow-strong);
}
.hero-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    max-width: 700px;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2s ease-in-out infinite;
}
.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========== SECTIONS ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    text-shadow: var(--glow);
}
.section-title {
    font-family: 'LEDLIGHT', 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(224, 16, 48, 0.1);
}

/* ========== DISCIPLINES GRID ========== */
.disciplines { padding: 100px 40px; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
}
.card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}
.card:hover .card-bg { transform: scale(1.05); }
.card-icon { font-size: 64px; opacity: 0.15; }
.card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 2;
}
.card-category {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    text-shadow: var(--glow);
}
.card-title {
    font-family: 'LEDLIGHT', 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(224, 16, 48, 0.12);
}
.card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
    font-weight: 300;
}
.card-arrow {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s;
    z-index: 2;
}
.card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* ========== ABOUT STRIP ========== */
.about-strip {
    padding: 80px 40px;
    background: var(--bg-secondary);
    text-align: center;
}
.about-strip p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
}
.about-strip strong { color: var(--text-primary); font-weight: 500; }

/* ========== CONTACT ========== */
.contact { padding: 100px 40px; text-align: center; }
.contact-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.contact-btn {
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
}
.contact-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0a0a;
}
.contact-btn.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0a0a;
}
.contact-btn.primary:hover {
    background: #ff2040;
    border-color: #ff2040;
    box-shadow: var(--glow);
}

/* ========== PAGE TEMPLATE ========== */
.page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(224,16,48,0.04) 0%, transparent 70%);
}
.page-hero .hero-subtitle { margin-bottom: 16px; }
.page-hero .hero-title { font-size: clamp(48px, 8vw, 100px); }

.gallery-grid {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.gallery-item {
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-placeholder {
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }

.page-description {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px 40px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
}

/* ========== CONTACT FORM ========== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    border: none;
    border-radius: 4px;
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}
.form-submit:hover { background: #ff2040; box-shadow: var(--glow); }

/* ========== FOOTER ========== */
footer {
    padding: 30px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
    nav { padding: 16px 20px; background: rgba(10,10,10,0.97) !important; backdrop-filter: blur(20px); }
    .nav-logo { font-size: 18px; letter-spacing: 2px; }
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 18px; }
    .disciplines { padding: 60px 20px; }
    .grid { grid-template-columns: 1fr; }
    .card { height: 300px; }
    .gallery-grid { padding: 40px 16px; grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery-item.wide { grid-column: span 1; }
    .contact-links { flex-direction: column; align-items: center; }
}
