/* Import existing navbar styles */
@import url('style.css');

body{
    font-family: Arial, sans-serif;
}
.heading {
    text-align: center;
    padding: 2rem 0;
    background-color: #8e1616;
    margin-bottom: 2rem;
    margin-top: 2rem;
    width: 80%;
    border-radius: 50px;
    margin-left: 10%;
}



.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    background: #8e1616;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 350px;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.artist-info {
    padding: 1.5rem;
    text-align: center;
}

.artist-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.artist-info .role {
    color: #ffffff;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.artist-info .shows {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.profile-btn {
    background-color: #D84040;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.profile-btn:hover {
    background-color: #D84040;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artist-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1rem;
    }

    .heading h1 {
        font-size: 2rem;
    }
}


/* Add to index.css */
.footer {
    background-color: #8E1616;
    color: #ffffff;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D84040;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

.mobile-signup {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-signup {
        display: block;
    }
    .icons {
        display: none;
    }
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;
    width: 100%;
    max-width: 600px;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

#searchInput {
    width: 100%;
    padding: 1rem 3rem 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    background: #8E1616;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#searchInput:focus {
    outline: none;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

#searchInput::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.2rem;
    pointer-events: none;
    transition: all 0.3s ease;
}
.no-results {
    color: #8E1616;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
}
.fa-spin {
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
    .search-container {
        max-width: 90%;
    }
}