/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
    background-color: #000; /* Fallback */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color, #007bff);
    border: none;
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Section Header */
.section-header {
    padding: 2rem 0;
}

.section-title {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--text-primary, #333);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary, #666);
    max-width: 600px;
    margin: 0 auto;
}

/* Pagination styles */
.pagination-container {
    margin: 3rem 0;
}

.total-artists {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pagination-nav .pagination {
    gap: 0.5rem;
}

.pagination-nav .page-link {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: var(--card-bg, #f8f9fa);
    color: var(--text-primary, #333);
    transition: all 0.3s ease;
}

.pagination-nav .page-item.active .page-link {
    background-color: var(--primary-color, #007bff);
    color: white;
}

.pagination-nav .page-item:not(.active) .page-link:hover {
    background-color: var(--primary-color-light, #e7f1ff);
    color: var(--primary-color, #007bff);
    transform: translateY(-2px);
}

.pagination-nav .page-item.disabled .page-link {
    background-color: var(--disabled-bg, #e9ecef);
    color: var(--text-muted, #6c757d);
    cursor: not-allowed;
}

@media (max-width: 576px) {
    .pagination-nav .pagination {
        gap: 0.25rem;
    }

    .pagination-nav .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Message when no artists found */
.no-artists {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg, #f8f9fa);
    border-radius: 10px;
    margin: 2rem 0;
}

.no-artists p {
    font-size: 1.2rem;
    color: var(--text-muted, #6c757d);
}

/* Grille des artistes responsive */
.artists-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .artists-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
}

/* Carte artiste */
.artist-card {
    background: var(--card-bg, #ffffff);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.artist-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Image de l'artiste en cercle */
.artist-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

/* Responsive image sizes */
@media (min-width: 1200px) {
    .artist-image {
        width: 220px;
        height: 220px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .artist-image {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .artist-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 767px) {
    .artist-image {
        width: 140px;
        height: 140px;
    }
}

/* Informations de l'artiste */
.artist-info {
    margin-top: 1rem;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #333);
}

.artist-country {
    color: var(--text-secondary, #666);
    margin-bottom: 0.5rem;
}

.track-count {
    font-size: 0.9rem;
    color: var(--text-muted, #888);
    background: var(--badge-bg, #f0f0f0);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    display: inline-block;
}
