
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    scroll-behavior: smooth;
    font-family: "poppins", "Helvetica Neue", Helvetica;
}
body{
    font-family: "poppins", "Helvetica Neue", Helvetica;
}
:root{
    primary-color: #1e0825;
    secondary-color: #FF8533;
    tertiary-color: #FFC233;
    quaternary-color: #F2F2F2;
}

.header {
    background-color: #1e0825;
    position: fixed;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar{
   margin: auto 10%;
}

.nav-item {
    margin-left: 2rem;
    list-style: none;
}
.nav-item a{
    text-decoration: none;
    color: #fff;
    transition: .3s ease;
}
.nav-item a:hover{
    color: #FF8533;
}

.nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.nav-link:hover {
    color: #FF8533;
}

.nav-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.nav-logo img{
    width: 50px;
}
.btn a{
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #FF8533;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn a:hover{
    background-color: #FFC233;
    color: #F2F2F2;
}

/* Hero section starts here */
.hero-section{
    background-color: #1e0825;
    width: 100%;
    height: 90%;
}
.here-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 10px;
    width: 80%;
    margin: auto;
    margin-top: 5rem;
}
.hero-card{
    width: 500px;
    height: 500px;
    margin-top: 2rem;
    
}

.hero-card img{
    width: 100%;
    object-fit: cover;
    animation: scale 6s ease-in-out infinite;
}


.hero-card h1{
   font-size: 4rem;
   text-transform: uppercase;
   font-family: "poppins", "Helvetica Neue", Helvetica;
   font-weight: 900;
   margin-top: 2rem;
   color: #F2F2F2;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-card a{
    display: inline-block;
    margin-top: 20px;
    color: #FFf;
    text-decoration: none;
    background-color: #FF8533;
    padding: 15px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-card a:hover{
    background-color: #FFC233;
}


@keyframes scale{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}





/* feaureed artists */
.featured-artists{
    width: 80%;
    margin: 0 auto;

}

.featured-artists h2{
    font-size: 2rem;
    color:  #DC5C82;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 6rem;
}
.artist-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
    justify-items: center;
    align-items: center;
}

.featured-artists h2{
    font-size: 1.5rem;
    color:  #DC5C82;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.featured-artists img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}


.artist-card img:hover{
    transform: scale(1.1);
}
.artist-card{
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    width: 320px;
    max-height: 500px;
}

.artist-card h3{
    font-size: 1.5rem;
    color:  #333;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.artist-card p{
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.artist-card a{
    display: inline-block;
    padding: 10px 20px;
    background-color:  #DC5C82;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: .8em;
}

.artist-card a:hover{
    background-color: transparent;
    border: 1px solid  #DC5C82;
    color: #DC5C82;
}

.featured-artists p{
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.music-section h2{
    font-size: 2rem;
    color:  #DC5C82;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 2rem;
}

/* About section begins here */

.about-section {
    margin-top: 4rem;
    width: 100%; /* Ensure full-width section */
    background-color: #f9f9f9; /* Optional background */
    padding: 40px 20px; /* Add padding for spacing */
    box-sizing: border-box; /* Include padding in total width/height */
}

.about-row {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap */
    justify-content: space-between; /* Space out items evenly */
    align-items: center; /* Vertically align items */
    max-width: 1200px;
    margin: 0 auto; /* Center the row */
}

.col {
    flex: 1; /* Equal column width */
    padding: 15px;
}

.col img {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove inline spacing */
    border-radius: 10px; /* Optional styling */
}

h1, h3 {
    margin: 0;
    color: #ffffff; /* Text color */
}

.about-section p {
    color: #ffffff; /* Lighter text color */
    line-height: 1.6; /* Improve readability */
}

.col img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 5px;
}
.about-container,.col h3{
    font-size: 1rem;
    color:  #FF8533;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.row.col img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 5px;
}

.about-container,.col h1{
    font-size: 1.5rem;
    color:  #FF8533;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}
.about-container,.col p{
    font-size: 1rem;
    color: #1e0825;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5;
}


.about-section i{
    font-size: .5rem;
    color:  #FF8533;
    padding-right: 20px;
}


/* contact section begins here */

/* music starts here */
.music-section{
    width: 90%;
    margin: auto;
}
.music-section h2{
    margin-top: 6rem;
}
.music-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
    justify-items: center;
    align-items: center;
   
  
}
.music-card{
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 350px;
}

.music-grid img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}


.spinning {
    animation: spin 2s linear infinite;
    animation-play-state: paused; /* Default state: paused */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



/* Reuse spinning effect */
.spin {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
#ImageSpinFever {
    transition: transform 0.5s;
}

/* Reuse spinning effect */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

img {
    animation: spin 2s linear infinite;
    animation-play-state: paused; /* Start paused */
    transform: rotate(0deg); /* Default rotation */
    transition: transform 0.3s ease; /* Smoothly reset rotation */
}



.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.controls button {
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.controls button:hover {
    background: #1e0825;
}

.controls input[type="range"] {
    width: 100%;
    margin-left: 10px;
}




.music-grid h3{
    font-size: 1.5rem;
    color:  #333;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;

}
.music-grid p{
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.5;
}

.music-grid a{
    display: inline-block;
    padding: 10px 20px;
    background-color:  #DC5C82;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    font-size:.8em;
    cursor: pointer;
}


/* contact starts here */
.contact-section{
    width: 90%;
    height: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}
.contact-section,.grid{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 200px;
}

.contact-section,.grid-card h3{
    font-size: 2rem;
    color:  #FF8533;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: left;
}

.contact-section,.grid-card p{
    font-size: 1rem;
    color: #1e0825;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.contact-section h2{
    font-size: 2rem;
    color:  #1e0825;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 10px;
}


.contact-section form input,.contact-section form textarea{
    width: 100%;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 15px;
}

.contact-section form input{
    margin-bottom: 10px;
}
.contact-section form textarea{
    min-height: 100px;
    resize: vertical;
    margin-bottom: 10px;
}

.contact-section form input[type="submit"]{
    display: inline-block;
    padding: 15px 20px;
    background-color:  #1e0825;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-section form input[type="submit"]:hover{
    background-color: #FF8533;
}

.contact-section.error-message{
    color: red;
    margin-bottom: 20px;
}

/* footer starts from here */

.footer-section{
    width: 100%;
    height: 200px;
    color: #fff;
    padding: 20px;
    text-align: center;
    background-image: url(img/footer-01.png);
    background-size: cover;
    margin-top: 3rem;
    margin-bottom: 0px;
}
.row{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    text-align: left;

}

.footer-section h3{
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: bold;
}

.footer-section p{
    font-size: 0.8rem;
    margin-bottom: 30px;
}

.footer-section a{
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}

/* custom styles for social media icons */

.social-media-icons{
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.social-media-icons a{
    display: inline-block;
    margin-right: 20px;
}

.social-media-icons a img{
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-media-icons a:hover img{
    transform: scale(1.1);
}
.last p{
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1rem;
}
.last a{
    color: #FF8533;
}


/* sign up for css starts here */

.signup-form{
    width: 500px;
    margin: auto;
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-top: 8rem;
    margin-bottom: 50px;
    text-align: center;
}

.signup-form h2{
    font-size: 2rem;
    color:  #FF8533;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.signup-form form input{
    width: 100%;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 15px;
    margin-bottom: 10px;
}

.signup-form form input[type="submit"]{
    display: inline-block;
    padding: 15px 20px;
    background-color:  #FF8533;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-form form input[type="submit"]:hover{
    background-color: #FFC233;
}

.signup-form .error-message{
    color: red;
    margin-bottom: 20px;
}

/* sign in form css starts here  */

.login-section{
    width: 500px;
    margin: auto;
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-top: 8rem;
    margin-bottom: 50px;
    text-align: center;
}

.login-section h2{
    font-size: 2rem;
    color:  #FF8533;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.login-section form input{
    width: 100%;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 15px;
    margin-bottom: 10px;
}

.login-section form input[type="submit"]{
    display: inline-block;
    padding: 15px 20px;
    background-color:  #FF8533;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* artist dashboard */

.artist-dashboard{
    width: 80%;
    margin: auto;
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-top: 6rem;
    margin-bottom: 50px;
    text-align: center;
}

.artist-dashboard h2{
    font-size: 2rem;
    color:  #FF8533;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.artist-dashboard ul li{
    list-style: none;
    margin-bottom: 10px;
}

.artist-dashboard ul li a{
    color: #FF8533;
    text-decoration: none;
}

.artist-dashboard.artist-profile{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}


/* bar playing */

