.artist-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.custom-gradient {
    background: linear-gradient(135deg, #db7a34, #b69d59);
}

.artist-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.artist-image-container {
    position: relative;
    height: 250px;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-image {
    transform: scale(1.05);
}

.artist-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.artist-info {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Custom origin orange color */
.bg-orange {
    background-color: #c75c15 !important;
    border-color: #FF6600 !important;
}

.page-link {
    border-radius: 0.25rem;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    background-color: transparent;       /* Transparent by default */
    color: #FF6600;                      /* Orange text */
    border: 1.5px solid #FF6600;         /* Orange outline */
}

/* Hover: fill with orange and white text */
.page-link:hover {
    background-color: #e65c00 !important;
    color: white !important;
    border-color: #e65c00 !important;
}

/* Active page: filled orange, white text, no pointer */
.pagination .active .page-link {
    background-color: #FF6600 !important;
    border-color: #FF6600 !important;
    color: white !important;
    cursor: default;
    pointer-events: none;
}

/* Non-active page links: orange outline, orange text */
.pagination .page-item:not(.active) .page-link {
    color: #FF6600;
    border: 1.5px solid #FF6600;
}


.toggle-details {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.toggle-details:hover {
    color: #2980b9;
}

.extra-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
    display: none;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.detail-icon {
    margin-right: 10px;
    color: #3498db;
    width: 20px;
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin: 30px auto;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.loading-spinner {
    display: none;
    margin-left: 8px;
}

.no-artists {
    text-align: center;
    padding: 50px;
    color: #7f8c8d;
    font-size: 1.2rem;
    grid-column: 1 / -1;
}

.artist-specialty {
    display: inline-block;
    background: #e8f4fc;
    color: #3498db;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 5px;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf1 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('../media/bhutan.png'); /* Adjusted path */
    background-repeat: repeat;
    background-size: 150px; /* Fixed size instead of percentage */
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.footer {
    margin-top: auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf1 100%);
    padding: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    background-image: url('../media/bhutan.png'); /* Adjusted path */
    background-repeat: repeat;
    background-size: 150px; /* Fixed size instead of percentage */
    background-attachment: fixed;
    margin-bottom: 1px;
}


.search-container {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 500px;
}

.search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.search-container input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-container input:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.2);
    outline: none;
}