/* ==========================================
   I AM ABAZZ MUSIC PLATFORM
   assets/css/style.css
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0b0b0b;
    color:#ffffff;
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#ff6a00;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#111;
}

/* ===================
HEADER
=================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    background:rgba(0,0,0,.95);
    backdrop-filter:blur(15px);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 5%;
    border-bottom:1px solid rgba(255,106,0,.15);
}

.logo a{
    text-decoration:none;
    color:#ff6a00;
    font-size:32px;
    font-weight:800;
}

.search-box{
    width:35%;
}

.search-box input{
    width:100%;
    padding:12px 15px;
    border:none;
    outline:none;
    border-radius:30px;
    background:#171717;
    color:#fff;
}

nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-size:15px;
    transition:.3s;
}

nav ul li a:hover{
    color:#ff6a00;
}

/* ===================
HERO
=================== */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content h1{
    font-size:90px;
    font-weight:900;
    color:#fff;
}

.hero-content p{
    margin-top:15px;
    color:#ddd;
    font-size:22px;
}

.btn{
    margin-top:25px;
    display:inline-block;
    padding:14px 35px;
    background:#ff6a00;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#ff8935;
}

/* ===================
SECTION
=================== */

.section{
    padding:90px 5%;
}

.section h2{
    margin-bottom:40px;
    font-size:40px;
    color:#ff6a00;
}

/* ===================
CARDS
=================== */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#141414;
    border-radius:15px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card h3{
    padding:15px;
}

.card p{
    padding:0 15px 15px;
    color:#bbb;
}

.card audio{
    width:95%;
    margin:15px;
}

/* ===================
VIDEOS
=================== */

.video-card{
    background:#141414;
    border-radius:15px;
    overflow:hidden;
}

.video-card video{
    width:100%;
}

.video-card h3{
    padding:15px;
}

/* ===================
SHORTS
=================== */

.shorts-container{
    display:flex;
    gap:20px;
    overflow-x:auto;
}

.short-card{
    min-width:250px;
}

.short-card video{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:20px;
}

/* ===================
COMMUNITY
=================== */

.post{
    background:#141414;
    padding:25px;
    border-radius:15px;
}

.post h4{
    margin-bottom:10px;
    color:#ff6a00;
}

/* ===================
LIVE
=================== */

iframe{
    border:none;
    border-radius:15px;
}

/* ===================
FOOTER
=================== */

footer{
    background:#111;
    text-align:center;
    padding:50px 20px;
    margin-top:50px;
}

.footer-links{
    margin-bottom:20px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    margin:0 15px;
}

.footer-links a:hover{
    color:#ff6a00;
}

footer p{
    color:#888;
}

/* ===================
STATS
=================== */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.stat-box{
    background:#141414;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.stat-box h3{
    font-size:35px;
    color:#ff6a00;
}

.stat-box p{
    color:#aaa;
}

/* ===================
ALBUMS
=================== */

.album-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.album-card{
    background:#141414;
    border-radius:15px;
    overflow:hidden;
}

.album-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.album-card h3{
    padding:15px;
}

/* ===================
ARTISTS
=================== */

.artist-card{
    text-align:center;
    background:#141414;
    border-radius:20px;
    padding:25px;
}

.artist-card img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #ff6a00;
}

.artist-card h3{
    margin-top:15px;
}

/* ===================
LOGIN
=================== */

.login-form{
    max-width:500px;
    margin:auto;
    background:#141414;
    padding:40px;
    border-radius:20px;
}

.login-form input{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    background:#222;
    border:none;
    color:#fff;
    border-radius:8px;
}

.login-form button{
    width:100%;
    padding:14px;
    background:#ff6a00;
    border:none;
    color:#fff;
    cursor:pointer;
}

/* ===================
RESPONSIVE
=================== */

@media(max-width:1200px){

.search-box{
    display:none;
}

}

@media(max-width:991px){

.header{
    flex-direction:column;
    gap:15px;
}

.hero-content h1{
    font-size:60px;
}

.section h2{
    font-size:30px;
}

.stats{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero-content h1{
    font-size:40px;
}

.hero-content p{
    font-size:16px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.cards{
    grid-template-columns:1fr;
}

.stats{
    grid-template-columns:1fr;
}

.short-card{
    min-width:200px;
}

.short-card video{
    height:350px;
}

}

@media(max-width:480px){

.logo a{
    font-size:24px;
}

.section{
    padding:70px 20px;
}

.hero-content h1{
    font-size:32px;
}

}