*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111;
    color:#f5f5f5;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:90px 0;
}

h1,h2,h3{
    font-weight:700;
}

h2{
    text-align:center;
    margin-bottom:40px;
    color:#f6c453;
    font-size:2.2rem;
}

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(8px);
}

.navbar{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    color:#f6c453;
    font-size:1.5rem;
    font-weight:700;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.navbar ul li{
    list-style:none;
}

.navbar a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.navbar a:hover{
    color:#f6c453;
}

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("images/sonic-logo.png");
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    width:90%;
    max-width:850px;
}

.hero h1{
    font-size:4rem;
    color:#f6c453;
    margin-bottom:15px;
}

.hero h2{
    color:white;
    margin-bottom:25px;
}

.hero p{
    margin-bottom:35px;
    font-size:1.1rem;
}

.btn{
    display:inline-block;
    background:#f6c453;
    color:#111;
    padding:14px 34px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:white;
}

#about{
    background:#181818;
}

#about p{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-card{
    background:#222;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:#f6c453;
    margin-bottom:15px;
}

#songs{
    background:#141414;
}

.song-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

.song-card{
    background:#222;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    transition:.3s;
}

.song-card:hover{
    transform:translateY(-10px);
}

.song-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.song-card h3{
    margin:20px 0;
}

.listen-btn{
    display:inline-block;
    margin-bottom:25px;
    padding:12px 28px;
    background:#f6c453;
    color:#111;
    text-decoration:none;
    border-radius:25px;
    font-weight:bold;
}

.listen-btn:hover{
    background:white;
}

#contact{
    background:#181818;
    text-align:center;
}

#contact p{
    margin-bottom:18px;
}

.social-buttons{
    margin-top:30px;
}

.social-buttons a{
    display:inline-block;
    margin:10px;
    padding:14px 28px;
    background:#f6c453;
    color:#111;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}

.social-buttons a:hover{
    background:white;
}

footer{
    background:#000;
    text-align:center;
    color:#999;
    padding:25px;
}

@media(max-width:768px){

.hero h1{
    font-size:2.6rem;
}

.hero h2{
    font-size:1.2rem;
}

.navbar{
    flex-direction:column;
}

.navbar ul{
    flex-wrap:wrap;
    justify-content:center;
    margin-top:15px;
}

.song-card img{
    height:220px;
}

}