/* ======================================================
   SCHOOL PREMIUM WEBSITE
   Version : 1.0
   Author  : ChatGPT
====================================================== */


/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1e293b;
    overflow-x:hidden;

}

a{
    text-decoration:none;
}

img{
    width:100%;
    display:block;
}

ul{
    list-style:none;
}


/* =========================
   COLOR
========================= */

:root{

    --primary:#2563eb;
    --secondary:#0f172a;
    --gold:#f59e0b;
    --white:#ffffff;
    --light:#f8fafc;
    --gray:#64748b;
    --shadow:0 15px 35px rgba(0,0,0,.08);
    --radius:18px;
    --transition:.35s;

}


/* =========================
   CONTAINER
========================= */

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}


/* =========================
   HEADER
========================= */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 0;

}

.logo{

    display:flex;

    align-items:center;

    color:white;

    gap:15px;

}

.logo img{

    width:55px;

}

.logo h2{

    font-size:22px;

}

.logo span{

    font-size:13px;

    opacity:.8;

}


/* =========================
   MENU
========================= */

nav ul{

    display:flex;

    gap:30px;

}

nav a{

    color:white;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#f59e0b;

}


/* =========================
   HERO
========================= */

.hero{

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    background:url("../images/hero.jpg") center center/cover no-repeat;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

    rgba(15,23,42,.85),

    rgba(37,99,235,.55)

    );

}

.hero-content{

    position:relative;

    z-index:10;

    text-align:center;

    color:white;

    max-width:850px;

}

.badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    padding:10px 25px;

    border-radius:50px;

    margin-bottom:25px;

}

.hero h1{

    font-size:62px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero h1 span{

    color:#fbbf24;

}

.hero p{

    font-size:20px;

    opacity:.9;

    margin-bottom:40px;

}


/* =========================
   BUTTON
========================= */

.hero-button{

    display:flex;

    justify-content:center;

    gap:20px;

}

.btn-primary{

    background:#2563eb;

    color:white;

    padding:16px 38px;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(37,99,235,.4);

}

.btn-secondary{

    border:2px solid white;

    color:white;

    padding:16px 38px;

    border-radius:50px;

    transition:.4s;

}

.btn-secondary:hover{

    background:white;

    color:#0f172a;

}