/* Responsive styling for mobile devices */
@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #1e0825;
        width: 100%;
        height: 80%;
        overflow: hidden;
        padding: 60px;
        text-align: center;
        transition: 0.3s;
        box-shadow:0 10px 27px rgba(0, 0, 0, 0.05);
    }
 
    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-logo{
        margin-top: 1rem;
    }
    
 .here-grid{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
 }
 .hero-card{
    width: 100%;
    height: 100%;
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    margin:auto;

}
.hero-card h1{
    text-align: center;
    color: #fff;
    font-size: 2rem;
}

.hero-card img{
    width: 100%;
    height: auto;
    object-fit: cover;
    
}
.hero-card a{
    display: inline-block;
    width: 100%;
    color: #1e0825;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
}
.contact-section,.grid{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 2px;
    height: 100%;
    padding-top: 10px;
}
.contact-section,.grid-card h3{
    font-size: 1.5rem;
    color:  #FF8533;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;

}

.contact-section,.grid-card h3{
    font-size: 1rem;
    color:  #FF8533;
    margin-bottom: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: left;
}

}

/* responsive styles starts here */

@media only screen and (max-width: 768px) {
    .contact-section,.grid{
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .contact-section h2{
        font-size: 1.5rem;
    }
    .contact-section form input,.contact-section form textarea{
        width: 100%;
        margin-bottom: 10px;
    }
    .contact-section form input[type="submit"]{
        margin-top: 10px;
    }
    .grid-card{
        margin-bottom: 10px;
    }
    .last p{
        margin-top: 20px;
        font-size: .6rem;
        line-height: 1rem;
    }
    .last a{
        color: #FF8533;
    }

    /* login section */
    .login-section{
        height: 100%;
        width: 90%;
        margin-bottom: 10px;
    }
    .login-section h2{
        font-size: 1.5rem;
        margin-bottom: 10px;
        font-weight: bold;
}
.form-group{
    margin-bottom: 10px;
    width: 100%;

}



/* sign up section */

.signup-form{
    width: 90%;
    height: 100%;
    margin-bottom: 2rem;
    margin-top: 8rem;
}


.signup-form h2{
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}
.footer-section{
    margin-bottom: 0;
}

}
@media (min-width: 1024px) {

    
    .signup-form h2{
        font-size: 1.5rem;
        margin-bottom: 10px;
        font-weight: bold;
    }
    .footer-section{
        margin-top: 13rem;
        margin-bottom: 0;
    }
    
}


/* music queries */

@media (min-width: 768px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .music-section h2 {
        font-size: 2.5em;
    }
}

@media (min-width: 1024px) {
    .music-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .music-card {
        padding: 20px;
    }

    .music-section h2 {
        font-size: 3em;
    }
}

@media (min-width: 1440px) {
    .music-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .music-card {
        padding: 25px;
    }

    .music-section h2 {
        font-size: 3.5em;
    }
}

@media (max-width: 1024px) {
    .about-row {
        flex-direction: column; /* Stack the columns */
    }
    
    .col {
        margin-bottom: 20px; /* Add spacing between stacked columns */
    }
}

/* For devices with max width 768px (small tablets and large phones) */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    p {
        font-size: 1rem;
    }
}

/* For devices with max width 480px (phones) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
        text-align: center; /* Center align for small screens */
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.9rem;
    }

    .col {
        padding: 5px; /* Reduce padding for smaller screens */
    }
    
    .col img {
        max-width: 100%; /* Ensure image stays within screen width */
        height: auto;
    }
}
/* Responsive Styling for All Devices */
@media (max-width: 1024px) {
    .login-section {
        padding: 25px;
        font-size: 1rem;
    }
    .footer-section{
        padding: 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .login-section h2 {
        font-size: 1.6rem;
    }

    label {
        font-size: 0.9rem;
    }

    input[type="submit"] {
        padding: 10px;
        font-size: 0.9rem;
    }

    p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .login-section h2 {
        font-size: 1.4rem;
    }

    label {
        font-size: 0.85rem;
    }

    input[type="submit"] {
        padding: 8px;
        font-size: 0.85rem;
    }

    p {
        font-size: 0.8rem;
    }
}

/* artist */
