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

:root{
    --gold:#FFD700;
    --orange:#ff3c00;
    --dark:#0a0a0a;
    --card:#141414;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#fff;
    line-height:1.6;

    background:
    linear-gradient(
        rgba(0,0,0,.90),
        rgba(0,0,0,.90)
    ),
    url('../images/combat-bg.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.85)),
    url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?auto=format&fit=crop&w=1800&q=80')
    center center/cover no-repeat;
}

.hero h1{
    font-size:clamp(3rem,10vw,6rem);
    color:var(--gold);
    font-weight:900;
    letter-spacing:4px;
}

.hero p{
    font-size:1.2rem;
    max-width:650px;
    margin:20px 0 30px;
}

.hero-logo{
    margin-bottom:20px;
}

.hero-logo img{
    width:220px;
    max-width:60vw;
    filter:
        drop-shadow(0 0 10px rgba(255,215,0,0.4))
        drop-shadow(0 0 25px rgba(255,215,0,0.2));
    transition:0.3s;
}

.hero-logo img:hover{
    transform:scale(1.03);
}

.btn{
    background:var(--orange);
    color:#fff;
    text-decoration:none;
    padding:14px 32px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
    display:inline-block;
}

.btn:hover{
    transform:translateY(-3px);
}

nav{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(10,10,10,.9);
    backdrop-filter:blur(10px);
    padding:15px;
    text-align:center;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin:0 12px;
    font-weight:600;
}

nav a:hover{
    color:var(--gold);
}

section{
    padding:80px 20px;
}

.card{
    max-width:1100px;
    margin:auto;
    background:var(--card);
    padding:40px;
    border-radius:16px;
}

h2{
    color:var(--gold);
    text-align:center;
    margin-bottom:20px;
    font-size:2rem;
}

.about-text{
    text-align:center;
    max-width:750px;
    margin:auto;
    color:#ccc;
    font-size:1.1rem;
}

.services{
    list-style:none;
    max-width:500px;
    margin:20px auto;
}

.services li{
    margin:12px 0;
    font-size:1.05rem;
}

.services li::before{
    content:"⚡ ";
    color:var(--gold);
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:25px;
}

.gallery img{
    width:100%;
    border-radius:12px;
    height:320px;
    object-fit:cover;
}

.plans{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

.plan{
    background:#111;
    padding:25px;
    border-radius:12px;
    text-align:center;
    border:1px solid #222;
}

.plan h3{
    color:var(--gold);
    margin-bottom:10px;
}

.plan p{
    font-size:1.2rem;
    font-weight:700;
}

.offer-note{
    text-align:center;
    color:var(--gold);
    margin-top:25px;
    font-weight:600;
}

.join-form{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
    margin-top:20px;
}

.join-form input,
.join-form textarea{
    width:100%;
    max-width:500px;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#1e1e1e;
    color:#fff;
}

.join-form button{
    border:none;
    cursor:pointer;
    background:var(--gold);
    color:#000;
    font-weight:800;
    padding:14px 32px;
    border-radius:50px;
}

.contact-info{
    text-align:center;
}

.contact-info p{
    margin:10px 0;
    color:#ddd;
}

iframe{
    width:100%;
    height:320px;
    border:none;
    border-radius:12px;
    margin-top:25px;
}

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:14px 22px;
    border-radius:50px;
    font-weight:700;
}

.bg-section{
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    position:relative;
}

.overlay-card{
    background:rgba(15,15,15,0.88);
    backdrop-filter:blur(4px);
}

.trainers{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.trainer{
    background:#111;
    padding:25px;
    border-radius:12px;
    text-align:center;
    border:1px solid #222;
}

.trainer h3{
    color:#FFD700;
    margin-bottom:10px;
}

.tagline{
    color:#FFD700;
    font-size:1.4rem;
    font-weight:600;
    margin-top:10px;
}

footer{
    background:#000;
    text-align:center;
    padding:20px;
    color:#888;
}

@media(max-width:768px){
    .card{
        padding:25px;
    }

    nav a{
        margin:0 6px;
        font-size:.9rem;
    }
}

.nav-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-logo img{
    height:55px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:600;
}

.nav-links a:hover{
    color:#FFD700;
}

@media(max-width:768px){

    .nav-container{
        flex-direction:column;
        gap:10px;
    }

    .nav-links{
        text-align:center;
    }

    .nav-links a{
        margin:0 8px;
    }
}
.sub-brand{
    color:#FFD700;
    font-weight:800;
    letter-spacing:3px;
    margin-top:-10px;
    margin-bottom:20px;
}
.insta-btn{
    background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);
    margin-left:10px;
}
.instagram-float{
    position:fixed;
    right:20px;
    bottom:90px;
    background:linear-gradient(45deg,#F58529,#DD2A7B,#8134AF);
    color:white;
    padding:14px 18px;
    border-radius:50%;
    font-size:20px;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(0,0,0,0.3);
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:center;
}
/* Glow + Pulse Effect */
.glow-text{
    font-size:1.4rem;
    font-weight:900;
    letter-spacing:3px;
    color:#FFD700;
    text-transform:uppercase;
    animation: pulseGlow 2s infinite ease-in-out;
    text-shadow:
        0 0 5px #FFD700,
        0 0 10px #FFD700,
        0 0 20px rgba(255,215,0,0.6),
        0 0 40px rgba(255,215,0,0.4);
}

/* Pulse animation */
@keyframes pulseGlow{
    0%{
        transform:scale(1);
        text-shadow:
        0 0 5px #FFD700,
        0 0 10px #FFD700;
    }
    50%{
        transform:scale(1.08);
        text-shadow:
        0 0 10px #FFD700,
        0 0 25px #FFD700,
        0 0 45px rgba(255,215,0,0.8);
    }
    100%{
        transform:scale(1);
        text-shadow:
        0 0 5px #FFD700,
        0 0 10px #FFD700;
    }
}

/* ⚡ Lightning Flicker Effect */
.lightning-text{
    font-size:1.4rem;
    font-weight:900;
    letter-spacing:3px;
    color:#FFD700;
    text-transform:uppercase;
    position:relative;
    display:inline-block;
    animation: flicker 2.5s infinite;
}

/* Glow base */
.lightning-text{
    text-shadow:
    0 0 5px #FFD700,
    0 0 15px #FFD700,
    0 0 30px rgba(255,215,0,0.6);
}

/* ⚡ Flicker + lightning flash */
@keyframes flicker {

    0%{
        opacity:1;
        transform:scale(1);
        text-shadow:
        0 0 5px #FFD700,
        0 0 15px #FFD700;
    }

    10%{
        opacity:0.6;
    }

    12%{
        opacity:1;
    }

    20%{
        opacity:0.3;
    }

    22%{
        opacity:1;
        text-shadow:
        0 0 10px #fff,
        0 0 25px #FFD700,
        0 0 50px #FFD700;
    }

    40%{
        opacity:1;
    }

    60%{
        opacity:0.8;
    }

    80%{
        opacity:1;
        transform:scale(1.05);
    }

    100%{
        opacity:1;
        transform:scale(1);
    }
}
/* Active section highlight */
nav a.active{
    color:#000;
    background:#FFD700;
    padding:6px 12px;
    border-radius:20px;
    transition:0.3s;
    box-shadow:0 0 15px rgba(255,215,0,0.6);
}

/* Safe section animation (won't break layout) */
section{
    opacity:1;
    transform:none;
}

/* animation only when class is added */
section.show{
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.news-card{
    background:rgba(0,0,0,.8);
    border-radius:15px;
    overflow:hidden;
}

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.news-card h3{
    color:#FFD700;
    padding:15px;
}

.news-card p{
    padding:0 15px 15px;
}

.news-card .btn{
    margin:15px;
}

header{
    text-align:center;
    margin-bottom:40px;
}

header h1{
    color:#FFD700;
}

.results-container{
    max-width:1000px;
    margin:auto;
}

.result-card{
    background:#111;
    border-left:5px solid #FFD700;
    border-radius:15px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 0 15px rgba(255,215,0,.15);
}

.result-card h2{
    color:#FFD700;
}


header{
    text-align:center;
    margin-bottom:40px;
}

header h1{
    color:#FFD700;
}

.fighters-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.fighter-card{
    background:#111;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(255,215,0,.15);
}

.fighter-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.fighter-card h2{
    color:#FFD700;
    padding:15px;
}

.fighter-card p{
    padding:0 15px 20px;
}

.home-btn{
    display:inline-block;
    background:#FFD700;
    color:#000;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:30px;
}

.home-btn:hover{
    transform:translateY(-2px);
}
.back-home-btn{
    display:inline-block;
    background:#FFD700;
    color:#000;
    text-decoration:none;
    padding:12px 28px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:30px;
    transition:.3s;
    box-shadow:0 0 15px rgba(255,215,0,.35);
}

.back-home-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(255,215,0,.7);
}
.top-nav{
    max-width:1200px;
    margin:0 auto 30px auto;
}

.back-home-btn{
    background:#FFD700;
    color:#000;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:800;
    letter-spacing:1px;
    transition:.3s;
}

.back-home-btn:hover{
    background:#fff;
    transform:translateY(-2px);
}
