
/*
Theme Name: TKRO Pro Modern
Author: ChatGPT
Version: 2.0
Description: Theme premium modern untuk TKRO SMK Tamansiswa Mojoagung
*/

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

body{
    font-family: Arial, sans-serif;
    background:#0b1120;
    color:#fff;
    line-height:1.6;
}

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background:rgba(0,0,0,.8);
    backdrop-filter:blur(8px);
    padding:20px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav ul{
    display:flex;
    list-style:none;
    gap:20px;
}

nav a{
    color:#fff;
    text-decoration:none;
}

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d8?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:72px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
}

.btn{
    display:inline-block;
    margin-top:25px;
    background:#ff6600;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
}

section{
    padding:100px 0;
}

.title{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
}

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

.card{
    background:#111827;
    padding:30px;
    border-radius:20px;
    transition:.3s;
    border:1px solid rgba(255,255,255,.05);
}

.card:hover{
    transform:translateY(-10px);
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    gap:20px;
}

.stat-box{
    background:#111827;
    padding:30px;
    border-radius:20px;
}

footer{
    background:#020617;
    padding:40px 20px;
    text-align:center;
}

@media(max-width:768px){
    .hero h1{
        font-size:42px;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    nav ul{
        display:none;
    }
}
