*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #0f0f0f;
    color: white;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* NAVBAR */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 8%;

    background: rgba(0,0,0,0.75);

    border-bottom: 2px solid rgba(245,176,65,0.25);

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow:
    0 0 25px rgba(245,176,65,0.15);
}

.logo{
    font-size: 32px;
    font-weight: bold;

    color: #f5b041;

    letter-spacing: 3px;

    text-shadow:
    0 0 10px rgba(245,176,65,0.6);
}

nav ul{
    display: flex;
    list-style: none;
}

nav ul li{
    margin-left: 30px;
}

nav ul li a{
    text-decoration: none;
    color: white;

    transition: 0.3s ease;

    font-size: 18px;
    font-weight: 500;

    display: inline-block;
}

nav ul li a:hover{
    color: #f5b041;

    text-shadow:
    0 0 10px rgba(245,176,65,0.8);

    transform: translateY(-2px);
}

/* HERO SECTION */

.hero{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;

    background:
    linear-gradient(rgba(0,0,0,0.65),
    rgba(0,0,0,0.4)),
    url('hero.jpg');

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-content h1{
    font-size: 80px;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -60px;

    text-shadow:
    0 0 10px rgba(255,255,255,0.7),
    0 0 20px rgba(245,176,65,0.5),
    0 0 40px rgba(245,176,65,0.4);
}

.hero-content p{
    font-size: 22px;
    margin-top: -30px;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-btn{
    display: inline-block;
    padding: 15px 35px;
    background-color: #f5b041;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s ease;
    margin-top: -20px;
}

.hero-btn:hover{
    transform: scale(1.08);

    box-shadow:
    0 0 25px rgba(245,176,65,0.8),
    0 0 50px rgba(245,176,65,0.5);
}

/* SECTIONS */

section{
    padding: 40px 8%;

    background: rgba(255,255,255,0.03);

    margin: 40px 5%;

    border-radius: 25px;

    backdrop-filter: blur(8px);

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 0 25px rgba(0,0,0,0.35);
}

section h2{
    font-size: 40px;
    color: #f5b041;
    margin-bottom: 20px;
}

section p{
    color: #ccc;
    font-size: 15px;
}

/* SONGS */

.song-container{
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: -20px;
    justify-content: center;

}

.song-card{
    background-color: #181818;
    padding: 15px;
    border-radius: 15px;
    width: 300px;
    transition: 0.3s ease;
    border: 1px solid #222;
}

.song-card img{
    width: 100%;
    height: 120px;

    object-fit: contain;

    display: block;
    border-radius: 10px;
    margin-bottom: 10px;
}

.song-card:hover{
    transform: translateY(-10px);
}

.song-card h3{
    margin-bottom: 10px;
    color: white;
}

.song-card a{
    text-decoration: none;
    color: black;
    background-color: #f5b041;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;

    display: inline-block;
    margin-top: 12px;
}

/* STUDIO & FASHION */

.studio,
.fashion,
.about{
    background-color: #151515;
    border-radius: 20px;
    margin: 40px 2%;
}

.product-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    justify-content: center;
    margin-top: 20px;
}

.product-card{
    background-color: #181818;

    width: 160px;

    padding: 15px;

    border-radius: 15px;

    border: 1px solid #222;

    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-title{
    margin-top: 25px;
    margin-bottom: 20px;
    color: #f5b041;
    font-size: 32px;

}

.product-card:hover{
    transform: translateY(-8px);

    box-shadow:
    0 0 25px rgba(245,176,65,0.25);
}

.product-card img{
    width: 100%;

    height: 140px;

    object-fit: contain;

    border-radius: 10px;

    margin-bottom: 10px;
}

.product-card h3{
    color: white;

    margin-bottom: 10px;
}

.product-card p{
    color: #ccc;

    margin-bottom: 15px;
}

.product-card a{
    text-decoration: none;

    background-color: #f5b041;

    color: black;

    padding: 10px 20px;

    border-radius: 30px;

    font-weight: bold;

    display: inline-block;

    transition: all 0.3s ease;
}

.product-card a:hover{
    transform: scale(1.05);

    background-color: white;
}

.product-card h3{
    text-transform: uppercase;
}

.category-title{
    text-transform: uppercase;
}

.fashion-main-title{
    text-transform: uppercase;
}

.fashion-main-title{
    font-size: 52px;
    color: #f5b041;
    margin-left: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.joggers-title{
    text-align: center;
}

.shoes-title{
    text-align: center;
    width: 100%;
}

footer{
    text-align: center;
    padding: 40px 20px;
    background-color: #111;
    margin-top: 60px;
}

footer h2{
    color: #f5b041;
    font-size: 42px;
    margin-bottom: 20px;
}

.footer-tagline{
    color: white;
    font-size: 22px;
    margin-bottom: 25px;
}

footer p{
    color: white;
    font-size: 18px;
    margin: 12px 0;
}

footer a{
    color: #f5b041;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover{
    text-decoration: underline;
}

.copyright{
    margin-top: 30px;
    font-size: 16px;
    color: #aaa;
}

/* MOBILE RESPONSIVE */

@media(max-width: 768px){

    .navbar{
        flex-direction: column;
    }

    nav ul{
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li{
        margin: 10px;
    }

    .hero-content h1{
        font-size: 45px;
    }

    .hero-content p{
        font-size: 18px;
    }

    section h2{
        font-size: 50px;
    }

.song-container{
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: -15px;
    justify-content: center;
    allign-items: 0px;
}

.song-card{
    width: 280px;

    background: rgba(255,255,255,0.04);

    border-radius: 20px;

    overflow: hidden;

    transition: 0.4s ease;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 0 20px rgba(0,0,0,0.4);
    
    padding: 10px;
}

.song-card:hover{
    transform: translateY(-10px);

    box-shadow:
    0 0 30px rgba(245,176,65,0.3);
}

.song-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: left center;
    display: block;
    border-radius: 10px;
}

.song-card h3{
    color: white;
    font-size: 20px;

    margin: 8px 0;
}

.song-card p{
    margin: 5px 0;
    color: #ccc;
}

.song-card a{
    display: inline-block;

    margin: 0 20px 25px;

    padding: 12px 25px;

    background: #f5b041;

    color: black;

    text-decoration: none;

    border-radius: 30px;

    font-weight: bold;

    transition: 0.3s ease;
}

.song-card a:hover{
    background: white;

    transform: scale(1.05);
}

.maa-img{
    object-position: center center;
}

@media screen and (max-width: 768px){

    body{
        overflow-x: hidden;
    }

    .navbar{
        padding: 15px 20px;
        padding-bottom: 10px;

        flex-direction: column;
        gap: 15px;
    }

    .logo{
        font-size: 24px;
        text-align: center;
    }

    nav ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav ul li{
        margin: 0;
    }

    nav ul li a{
        font-size: 16px;
    }

    .hero{
        height: 100vh;
        padding: 40px 20px;
        background-position: center;
    }

    .hero-content{
        margin-top: 80px;
    }

    .hero-content h1{
        font-size: 42px;
        line-height: 1.1;
        margin-top: 0;
    }

    .hero-content p{
        font-size: 18px;
        margin-top: 10px;
    }

    .hero-btn{
        padding: 14px 28px;
        font-size: 16px;
    }

    .song-container,
    .product-container,
    .setup-container{
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

.song-card,
.product-card,
.setup-card{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
.product-card{
    padding: 20px;
    margin: 0 auto;
}

}
    .song-card img,
    .product-card img,
    .setup-card img{
        width: 100%;
        height: auto;
    }

    h2{
        font-size: 40px;
        line-height: 1.2;
    }

    section{
        padding: 50px 10px;
    }

    footer{
        padding: 50px 20px;
    }

  section h2{
    font-size: 28px !important;
    line-height: 1.1;
    text-align: center;
    width: 90%;
    max-width: 100%;
    margin: 0 auto 25px auto;
    word-break: normal;
    position: relative;
}

.fashion-main-title{
    font-size: 40px;
    text-align: center;
    margin: 0 auto 30px auto;
    position: relative;
    left: 0px;
}

.navbar{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    width: 100%;
    left: 0;
}

.song-card,
.product-card,
.setup-card{
    margin: auto;
    max-width: 320px;
}

.hero-content{
    padding-top: 30px;
}

section{
    overflow: hidden;
}

}