/* UBICACIÓN: talentos/artistas/artistas.css */

body { background-color: #0a0a0a; color: #e0e0e0; font-family: 'Montserrat', sans-serif; }

/* Header */
.artist-header {
    height: 45vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
    background: url('../../assets/img/fondos/theater-bg.jpg') center/cover fixed;
}
.overlay-header { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.8); }
.header-content { position: relative; z-index: 2; }
.header-content h1 { font-family: 'Cinzel', serif; font-size: 3.5rem; color: #fff; text-shadow: 0 5px 15px rgba(0,0,0,0.8); margin-bottom: 10px; }
.header-content p { font-size: 1.1rem; color: #ccc; letter-spacing: 2px; text-transform: uppercase; }

/* Barra de Herramientas */
.tools-bar { background: #141414; padding: 20px 0; border-bottom: 1px solid #222; position: sticky; top: 80px; z-index: 10; }
.tools-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }

.search-box { position: relative; flex: 1; min-width: 250px; }
.search-box input { 
    width: 100%; padding: 12px 40px; background: #0a0a0a; border: 1px solid #333; color: white; 
    border-radius: 30px; font-family: 'Montserrat', sans-serif;
}
.search-box i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #555; }

.filter-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn { 
    background: transparent; border: 1px solid #333; color: #888; padding: 8px 20px; 
    border-radius: 50px; cursor: pointer; transition: 0.3s; text-transform: uppercase; font-size: 0.75rem; font-weight: bold;
}
.filter-btn.active, .filter-btn:hover { border-color: #e50914; color: #fff; background: #e50914; }

/* Grid */
.artists-section { padding: 60px 0; min-height: 50vh; }
.artists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }

/* Card */
.artist-card { background: #141414; border: 1px solid #222; transition: 0.4s; position: relative; overflow: hidden; border-radius: 8px; }
.artist-card:hover { transform: translateY(-5px); border-color: #e50914; box-shadow: 0 10px 40px rgba(229, 9, 20, 0.15); }

.artist-img-box { height: 400px; overflow: hidden; position: relative; }
.artist-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(40%); }
.artist-card:hover img { transform: scale(1.1); filter: grayscale(0); }

.card-socials { position: absolute; top: 15px; right: 15px; display: flex; flex-direction: column; gap: 10px; z-index: 3; opacity: 0; transform: translateX(20px); transition: 0.3s; }
.artist-card:hover .card-socials { opacity: 1; transform: translateX(0); }
.card-socials a { width: 35px; height: 35px; background: rgba(0,0,0,0.7); color: white; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.2s; }
.card-socials a:hover { background: #e50914; }

.artist-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2)); 
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding-bottom: 80px; opacity: 0; transition: 0.3s;
}
.artist-card:hover .artist-overlay { opacity: 1; }
.quote { color: #fff; font-style: italic; margin-bottom: 20px; font-size: 0.9rem; padding: 0 20px; text-align: center; }

.btn-view-profile {
    padding: 10px 25px; background: #fff; color: #000; text-transform: uppercase; 
    text-decoration: none; font-weight: bold; font-size: 0.8rem; transition: 0.3s;
}
.btn-view-profile:hover { background: #e50914; color: white; }

.artist-info { padding: 20px; text-align: center; background: #111; border-top: 1px solid #222; position: relative; z-index: 4; }
.artist-info h3 { font-family: 'Cinzel', serif; font-size: 1.3rem; margin: 5px 0 0; color: #fff; }
.specialty { font-size: 0.7rem; text-transform: uppercase; font-weight: bold; letter-spacing: 2px; display: block; margin-bottom: 5px; }

.no-data { text-align: center; padding: 50px; color: #555; grid-column: 1/-1; width: 100%; }
.no-data i { font-size: 3rem; margin-bottom: 15px; }

@media (max-width: 768px) { 
    .header-content h1 { font-size: 2.5rem; } 
    .tools-flex { flex-direction: column; align-items: stretch; }
}