/* ======================================================
   ROOT
====================================================== */

:root{

    --navy:#071b45;
    --navy-light:#0e2d67;
    --gold:#d4a017;
    --gold-light:#f3c44f;
    --white:#ffffff;
    --light:#f4f6fa;

    --glass:rgba(7,27,69,.55);

}

/* ======================================================
RESET
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:white;

    background:#071b45;

    overflow-x:hidden;

}

/* ======================================================
BACKGROUND
====================================================== */

.background{

    position:fixed;

    inset:0;

    background-image:url("squad.png");

    background-repeat:no-repeat;

    background-position:center center;

    /*
       IMPORTANT

       contain prevents distortion and cropping.

       On wider monitors you'll simply see
       navy margins on both sides.

    */

    background-size:contain;

    background-color:#071b45;

    z-index:-20;

}

.background-overlay{

    position:fixed;

    inset:0;

    background:rgba(7,27,69,.20);

    z-index:-15;

}

/* ======================================================
LOADER
====================================================== */

#loader{

    position:fixed;

    inset:0;

    background:#071b45;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:5000;

    transition:1s;

}

.loader-logo img{

    width:120px;

}

#loader h2{

    margin-top:20px;

    font-family:"Cinzel",serif;

    letter-spacing:2px;

}

#loader p{

    margin-top:10px;

    color:#ddd;

}

.loader-bar{

    margin-top:30px;

    width:300px;

    height:8px;

    border-radius:30px;

    overflow:hidden;

    background:#1d3568;

}

.loader-progress{

    width:0%;

    height:100%;

    background:linear-gradient(
    90deg,
    var(--gold),
    #ffd66b);

}

/* ======================================================
PAGE
====================================================== */

.page{

    width:min(1100px,95%);

    margin:auto;

    padding-top:100px;

    padding-bottom:140px;

}

/* ======================================================
HERO
====================================================== */

.hero{

    min-height:85vh;

    display:flex;

    align-items:center;

}

.hero-content{

    width:650px;

    padding:40px;

    background:rgba(7,27,69,.45);

    backdrop-filter:blur(18px);

    border-radius:24px;

    border:1px solid rgba(255,255,255,.12);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    background:var(--gold);

    color:#071b45;

    font-weight:700;

    border-radius:50px;

    margin-bottom:25px;

}

.hero h1{

    font-family:"Cinzel",serif;

    font-size:60px;

    line-height:1.15;

    margin-bottom:10px;

}

.hero h3{

    color:var(--gold-light);

    margin-bottom:25px;

    font-weight:500;

}

.hero p{

    font-size:18px;

    line-height:1.9;

    color:#ececec;

}

/* ======================================================
BUTTONS
====================================================== */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;

}

.btn-primary{

    text-decoration:none;

    padding:15px 35px;

    background:var(--gold);

    color:#071b45;

    border-radius:40px;

    font-weight:700;

    transition:.4s;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    text-decoration:none;

    padding:15px 35px;

    border-radius:40px;

    border:2px solid white;

    color:white;

    transition:.4s;

}

.btn-secondary:hover{

    background:white;

    color:#071b45;

}

/* ======================================================
SERVICES
====================================================== */

.services{

    padding:120px 0;

}

.section-title{

    text-align:center;

    font-family:"Cinzel",serif;

    font-size:44px;

    margin-bottom:60px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(290px,1fr));

    gap:35px;

}

.service-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    padding:35px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.15);

    transition:.45s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.service-card .icon{

    font-size:48px;

    margin-bottom:20px;

}

.service-card h3{

    color:var(--gold-light);

    margin-bottom:15px;

}

.service-card p{

    color:#f2f2f2;

    line-height:1.8;

}

/* ======================================================
CONTACT
====================================================== */

.contact{

    text-align:center;

    padding:80px 0;

}

.contact h2{

    font-family:"Cinzel",serif;

    font-size:42px;

}

.contact p{

    margin:20px 0 40px;

}

.contact-boxes{

    display:flex;

    gap:30px;

    justify-content:center;

}

.contact-boxes div{

    padding:25px;

    min-width:260px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

}

/* ======================================================
FOOTER
====================================================== */

footer{

    margin-top:80px;

    padding:35px 20px;

    text-align:center;

    background:rgba(7,27,69,.55);

    backdrop-filter:blur(12px);

    border-radius:20px;

}

footer a{

    color:var(--gold-light);

    text-decoration:none;

    font-weight:700;

}

/* ======================================================
FLOATING PROGRESSd
====================================================== */

.progress-modal{

    position:fixed;

    right:25px;

    bottom:25px;

    width:340px;

    background:rgba(7,27,69,.88);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:18px;

    padding:20px;

    z-index:999;

    box-shadow:0 15px 45px rgba(0,0,0,.35);

}

.progress-header{

    display:flex;

    justify-content:space-between;

    font-weight:700;

    margin-bottom:18px;

}

.progress{

    width:100%;

    height:10px;

    background:#2c467d;

    border-radius:30px;

    overflow:hidden;

    margin-bottom:18px;

}

.progress-fill{

    width:0%;

    height:100%;

    background:linear-gradient(
        90deg,
        var(--gold),
        #ffe38d
    );

}

/* ======================================================
MUSIC BUTTON
====================================================== */

.music-player{

    position:fixed;

    top:25px;

    right:25px;

    background:rgba(7,27,69,.82);

    padding:15px 20px;

    border-radius:60px;

    backdrop-filter:blur(15px);

    display:flex;

    align-items:center;

    gap:15px;

    cursor:pointer;

    z-index:1200;

    transition:.35s;

}

.music-player:hover{

    transform:translateY(-3px);

}

.music-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    background:var(--gold);

    color:#071b45;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    font-weight:bold;

}