/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');



/* ===========================
   RESET
=========================== */

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



html{
    scroll-behavior:smooth;
}



body{

    background:#060606;

    color:white;

    font-family:'Inter',sans-serif;

}



/* ===========================
   NAVIGATION
=========================== */

header{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(12px);

}



.navbar{

    width:100%;

    max-width:1300px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 40px;

    background:rgba(0,0,0,.25);

    backdrop-filter:blur(10px);

}



.logo{

    font-family:'Orbitron',sans-serif;

    color:#d6b45d;

    font-size:32px;

    letter-spacing:5px;

    font-weight:800;

    text-transform:uppercase;

    text-shadow:
    0 0 10px rgba(214,180,93,.45),
    0 0 25px rgba(214,180,93,.25);

}



.menu{

    list-style:none;

    display:flex;

    align-items:center;

    gap:40px;

    margin:0;

    padding:0;

}



.menu a{

    color:white;

    text-decoration:none;

    font-weight:600;

    letter-spacing:1px;

    position:relative;

    transition:.3s ease;

}


/* hover effect */

.menu a:hover{

    color:#d6b45d;

    text-shadow:
    0 0 10px rgba(214,180,93,.5);

}



/* ===========================
   HERO
=========================== */

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.72)),
    url("../background.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

}



.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:20px;

}


.hero-content h1{

    font-size:clamp(3rem,8vw,6rem);

    letter-spacing:8px;

    margin-bottom:20px;

    font-weight:800;

    text-transform:uppercase;

    text-shadow:0 0 25px rgba(255,255,255,.35);

}


.tagline{

    font-size:1.3rem;

    line-height:1.6;

    max-width:700px;

    margin:0 auto 35px;

    color:#e0e0e0;

}


/* ===========================
   BUTTON
=========================== */

.btn{

    display:inline-block;

    padding:15px 35px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.4);

    color:white;

    text-decoration:none;

    font-weight:600;

    letter-spacing:1px;

    backdrop-filter:blur(10px);

    transition:.3s ease;

}


.btn:hover{

    transform:translateY(-3px);

    background:rgba(255,255,255,.25);

}



/* ===========================
   CONTENT
=========================== */

section{

    padding:110px 30px;

}



.container{

    max-width:1100px;

    margin:auto;

}



h2{

    font-family:'Orbitron',sans-serif;

    color:#d6b45d;

    font-size:42px;

    margin-bottom:35px;

}



p{

    line-height:1.9;

    font-size:18px;

    color:#d2d2d2;

}



/* ===========================
   CARD
=========================== */

.card{

    margin-top:40px;

    background:#111111;

    border:1px solid rgba(214,180,93,.35);

    border-radius:18px;

    padding:35px;

    transition:.35s;

}



.card:hover{

    transform:translateY(-6px);

    box-shadow:0 0 30px rgba(214,180,93,.18);

}



/* ===========================
   FOOTER
=========================== */

footer{

    text-align:center;

    padding:45px;

    color:#999;

    border-top:1px solid #222;

}



/* ===========================
   MOBILE
=========================== */

@media(max-width:900px){

.menu{

display:none;

}

.hero h1{

font-size:52px;

letter-spacing:3px;

}

.tagline{

    font-size:18px;

}

}
/* ===========================
   SOCIAL LINKS
=========================== */

.social-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:35px;

}


.social-links a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:55px;

    height:55px;

    border-radius:50%;

    color:white;

    text-decoration:none;

    font-size:24px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.35);

    backdrop-filter:blur(10px);

    transition:.3s ease;

}


.social-links a:hover{

    color:#d6b45d;

    border-color:#d6b45d;

    transform:translateY(-3px);

    box-shadow:0 0 15px rgba(214,180,93,.35);

}
   .social-links a i{

    color:white;

}


.social-links a:hover i{

    color:#d6b45d;

}
.social-links a,
.social-links a:visited,
.social-links a i,
.social-links a:visited i {

    color:white !important;

}


.social-links a:hover,
.social-links a:hover i {

    color:#d6b45d !important;

}
/* ===========================
   RELEASE CARDS
=========================== */

.release-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:30px;

    margin-top:35px;

    text-align:center;

}


.release-card img{

    width:220px;

    max-width:100%;

    border-radius:15px;

    margin-bottom:20px;

}


.release-card h3{

    margin-bottom:10px;

}


.release-card p{

    margin-bottom:25px;

}


.release-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

    margin-top:40px;

}
