/* ==========================================================================
    Страница Артистов
   ========================================================================== */

.artists-hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    padding: 200px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(17, 17, 16, 0.8) 0%, rgba(41, 40, 41, 0.2) 100%);
}

.artists-hero__title {
    color: #E4AD2B;
    font-size: 170px;
    font-family: "A La Russ", sans-serif;
    font-weight: 500;
    line-height: 142.50px;
    text-shadow: 0px 5px 4px rgba(0, 0, 0, 0.81);
    margin: 0;
}

.artists-hero__subtitle {
    color: white;
    font-size: 36px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 400;
    line-height: 50px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.81);
    margin: 20px 0 30px;
}

.artists-hero__cities {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 400;
    line-height: 35px;
}

.artists-hero__cities span {
    color: #E4AD2B;
    font-weight: 500;
}

/* ==========================================================================
    Сетка артистов
   ========================================================================== */

.artists-grid {
    max-width: 1600px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.artist-card {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 2px solid rgba(228, 173, 43, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: rgba(228, 173, 43, 0.7);
    box-shadow: 0 20px 40px rgba(228, 173, 43, 0.25);
}

.artist-card__image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-color: rgba(30, 30, 30, 0.5);
    position: relative;
    border-bottom: 2px solid rgba(228, 173, 43, 0.3);
    overflow: hidden;
}

.artist-card__image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.651);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-card__image-overlay {
    opacity: 1;
}

.artist-card__image-overlay span {
    color: #e9ae26;
    font-size: 18px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(228, 173, 43, 0.26);
    border: 2px solid rgba(190, 141, 28, 0.658);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-card__info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.artist-card__name {
    color: #E4AD2B;
    font-size: 32px;
    font-family: "UNCAGE", sans-serif;
    font-weight: 700;
    line-height: 36px;
    margin: 0 0 0 0;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
}

.artist-card__city {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.artist-card__genre {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}

.artist-card__time {
    margin-top: auto;
    padding-top: 15px;
    color: white;
    font-size: 18px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(228, 173, 43, 0.15);
    padding: 8px 16px;
    border-radius: 8px;
    align-self: flex-start;
}

.artist-card__time svg {
    flex-shrink: 0;
    color: #E4AD2B;
}

/* ==========================================================================
    Модальное окно артиста
   ========================================================================== */

.artist-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10004;
    padding: 1.5rem 1rem;
    overflow-y: auto;
}

.artist-modal_active {
    display: flex;
}

.artist-modal__backdrop {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 30px 60px;
    box-sizing: border-box;
}

.artist-modal__content {
    position: relative;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.98) 0%, rgba(17, 17, 16, 0.98) 100%);
    border: 2px solid rgba(228, 173, 43, 0.4);
    border-radius: 20px;
    padding: 2.2rem 2.4rem 2.6rem;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65);
    animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.artist-modal__close {
    position: absolute;
    top: 46px;
    right: -4px;
    width: 50px;
    height: 50px;
    background: rgba(40, 40, 38, 0.92);
    border: 1px solid rgba(228, 173, 43, 0.55);
    border-radius: 50%;
    color: #E4AD2B;
    font-size: 2.2rem;
    line-height: 46px;
    text-align: center;
    cursor: pointer;
    transition: all 0.22s ease;
    z-index: 10;
}

.artist-modal__close:hover {
    background: rgba(228, 173, 43, 0.22);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 22px rgba(228, 173, 43, 0.38);
}

.artist-modal__image {
    width: 100%;
    max-height: 100vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    object-position: center;
}

.artist-modal__title {
    color: #E4AD2B;
    font-family: "UNCAGE", sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 42px;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.artist-modal__meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.artist-modal__city,
.artist-modal__genre {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: "Lucida Sans Unicode", sans-serif;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.artist-modal__date {
    font-size: 1.7rem;
    font-family: 'Inter', sans-serif;
    color: #ddd;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.artist-modal__date svg {
    flex-shrink: 0;
    color: #E4AD2B;
}

.artist-modal__description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 2rem;
    text-align: justify;
}

.artist-modal__social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(228, 173, 43, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    flex-shrink: 0;
}

.social-link_vk {
    background: rgba(0, 119, 255, 0.15);
    border-color: rgba(0, 119, 255, 0.4);
    color: #0077FF;
}

.social-link_vk:hover {
    background: rgba(0, 119, 255, 0.3);
    border-color: rgba(0, 119, 255, 0.7);
    transform: translateY(-3px);
}

.social-link_telegram {
    background: rgba(0, 136, 204, 0.15);
    border-color: rgba(0, 136, 204, 0.4);
    color: #0088CC;
}

.social-link_telegram:hover {
    background: rgba(0, 136, 204, 0.3);
    border-color: rgba(0, 136, 204, 0.7);
    transform: translateY(-3px);
}

/* Скроллбар для модального окна */
.artist-modal-content::-webkit-scrollbar {
    width: 8px;
}

.artist-modal-content::-webkit-scrollbar-track {
    background: rgba(20, 20, 18, 0.7);
    border-radius: 4px;
}

.artist-modal-content::-webkit-scrollbar-thumb {
    background: rgba(228, 173, 43, 0.35);
    border-radius: 4px;
    border: 2px solid rgba(20, 20, 18, 0.7);
}

.artist-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(228, 173, 43, 0.55);
}

/* ==========================================================================
    Заглушка-силуэт (нет фото артиста)
   ========================================================================== */

.artist-card__image_placeholder {
    background: linear-gradient(160deg, rgba(35, 33, 28, 0.95) 0%, rgba(22, 21, 18, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-silhouette {
    width: 120px;
    height: 120px;
    opacity: 0.55;
}

.artist-modal__silhouette {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(35, 33, 28, 0.95) 0%, rgba(22, 21, 18, 0.98) 100%);
    border-radius: 12px;
    padding: 60px 0;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(228, 173, 43, 0.15);
}

.artist-modal__silhouette .artist-silhouette {
    width: 160px;
    height: 160px;
    opacity: 0.45;
}

.artists-hero__subtitle,
.artists-hero__cities,
.artist-card__image-overlay span,
.artist-card__city,
.artist-card__genre,
.artist-card__time,
.artist-modal__city,
.artist-modal__genre,
.artist-modal__description,
.social-link {
    font-weight: 700;
}
