*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#050505;
    color:white;
}

/* NAVBAR */

.navbar{
    background:#0a0a0a;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:55px;
}

.navbar nav{
    display:flex;
    gap:30px;
}

.navbar nav a{
    text-decoration:none;
    color:white;
}

/* HERO */

.hero{
    height:420px;
    position:relative;

    background:url('assets/bg.jpg') center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{
    font-size:70px;
    letter-spacing:2px;
}

/* ABOUT SECTION */

.about-section{
    padding:100px 8%;
}

.container{
    max-width:1200px;
    margin:auto;
}

.container h2{
    font-size:55px;
    margin-bottom:20px;
}

.intro{
    color:#cfcfcf;
    font-size:18px;
    margin-bottom:50px;
}

.about-card{
    background:#111;
    border:1px solid rgba(255,0,0,.15);
    border-radius:15px;
    padding:45px;
}

.about-card h3{
    color:#ff2a2a;
    margin-top:25px;
    margin-bottom:12px;
}

.about-card p{
    color:#d5d5d5;
    line-height:1.9;
}

/* STATS */

.stats-section{
    padding:50px 8% 100px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#111;
    border:1px solid rgba(255,0,0,.15);
    border-radius:15px;
    text-align:center;
    padding:40px;
}

.stat-box h3{
    font-size:42px;
    color:#ff2a2a;
}

.stat-box p{
    margin-top:10px;
    color:#ccc;
}

/* FOOTER */

.footer{
    background:#0a0a0a;
    text-align:center;
    padding:70px 8%;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-bottom:25px;
}

.footer-links a{
    color:white;
    text-decoration:none;
}

.footer h3{
    color:#ff2a2a;
    margin-bottom:20px;
}

.footer p{
    color:#ccc;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.copyright{
    margin-top:35px;
    color:#999;
}

.copyright span{
    color:#ff2a2a;
}

.about-card ul{
    margin:15px 0 25px 25px;
}

.about-card ul li{
    color:#d5d5d5;
    margin-bottom:10px;
    line-height:1.8;
}

/* MOBILE */

@media(max-width:768px){

    .hero-content h1{
        font-size:42px;
    }

    .container h2{
        font-size:36px;
    }

    .stats-section{
        grid-template-columns:1fr 1fr;
    }

    .about-card{
        padding:25px;
    }

    .footer-links{
        flex-direction:column;
        gap:15px;
    }
}