﻿

.margin {
    margin-right: -5rem !important;
}
.padding {
    padding: 20px;
}
@media (max-width: 768px) {
    .margin {
        margin-right: 0rem !important;
    }

    .padding {
        padding: 20px !important;
    }
}

.colorred {
    color: #de4f32;
}

/* باکس خواننده */

.artist-box {
    display: inline-block;
    margin: 15px;
    text-align: center;
}

.artist-figure {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* گرد شدن */
    overflow: hidden; /* بیرون‌زدگی رو مخفی کن */
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .artist-figure:hover {
        border-color: #fff; /* وقتی هاور کنی دورش بوردر سفید بیاد */
        transform: scale(1.05); /* یه کم بزرگ بشه */
    }

    .artist-figure img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* عکس توی قاب دایره‌ای قشنگ قرار می‌گیره */
        border-radius: 50%;
    }

.artist-name {
    margin-top: 10px;
    font-size: 14px;
    color: #ddd;
}

.albums-wrapper {
    position: relative;
    z-index: 2; /* بیاد روی بک‌گراند */
    padding: 20px 0;
}

.custom-link {
    color: inherit; /* رنگ متن را از والد به ارث ببرد */
    text-decoration: none; /* زیرخط لینک را حذف می‌کند */
    cursor: pointer; /* نشانگر موس روی لینک */
}

    .custom-link:hover {
        /* اگر خواستی افکت هاور اضافه کنی */
        color: inherit;
    }

@media (max-width: 768px) {
    .background {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .row-mine {
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        margin-right: -10px;
        margin-left: 6px;
    }
}

@media (max-width: 768px) {
    .row-artist {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 14px;
        margin-left: -59px;
    }
}

/* ========== Footer Music & Albums ========== */
.footer_music_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.footer_album_list {
    display: block;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

    .footer_music_list .disc,
    .footer_album_list .disc {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 0 5px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

        .footer_music_list .disc:hover,
        .footer_album_list .disc:hover {
            transform: scale(1.05);
        }

    .footer_music_list img,
    .footer_album_list img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer_music_list .disc_title,
    .footer_album_list .disc_title {
        position: absolute;
        bottom: 0;
        width: 100%;
        font-size: 11px;
        text-align: center;
        color: #fff;
        background: rgba(0, 0, 0, 0.6);
        padding: 2px 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

.footer_list_title {
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
}

.footer_list {
    min-width: 150px;
}

/* ====== Header Search Box ====== */
.header-search {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 6px 14px;
    transition: all 0.3s ease;
}

    .header-search input {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 14px;
        outline: none;
        width: 150px;
        transition: width 0.4s ease;
    }

        .header-search input::placeholder {
            color: #aaa;
        }

    .header-search button {
        background: none;
        border: none;
        color: #de4f32;
        font-size: 18px;
        cursor: pointer;
        margin-right: 8px;
        transition: transform 0.2s ease;
    }

        .header-search button:hover {
            transform: scale(1.1);
        }

    .header-search:focus-within {
        border-color: #de4f32;
        box-shadow: 0 0 8px rgba(222, 79, 50, 0.4);
    }

    .header-search input:focus {
        width: 220px;
    }

/* ===== Hide desktop form on mobile ===== */
@media (max-width: 768px) {
    .header-search {
        display: none !important;
    }
}

/* ===== Search Icon (Mobile) ===== */
.search-toggle {
    display: none;
}

@media (max-width: 768px) {
    .search-toggle {
        display: inline-block;
        background: none;
        border: none;
        color: #de4f32;
        font-size: 20px;
        cursor: pointer;
        margin-left: 275px;
        transition: transform 0.2s ease;
    }

        .search-toggle:hover {
            transform: scale(1.1);
        }
}

/* ===== Search Modal (Mobile) ===== */
.search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

    .search-modal.show {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.search-modal-content form {
    background: #111;
    border-radius: 40px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    border: 1px solid #333;
    box-shadow: 0 0 15px rgba(222, 79, 50, 0.3);
    width: 100%;
    max-width: 400px;
}

.search-modal-content input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
}

    .search-modal-content input::placeholder {
        color: #aaa;
    }

.search-modal-content button {
    background: none;
    border: none;
    color: #de4f32;
    font-size: 20px;
    cursor: pointer;
    margin-right: 8px;
}

/* ===== About Page ===== */
.about-page {
    color: #f1f1f1;
}

.red-about-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.red-about-card {
    max-width: 900px;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 36px 30px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
}

.red-about-title {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 600;
}

.highlight {
    color: #de4f32;
}

.red-about-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #e0e0e0;
    margin-bottom: 16px;
}

    .red-about-text.small {
        opacity: 0.9;
        font-size: 0.95rem;
        margin-top: 12px;
    }

.contact-note {
    margin-top: 25px;
    color: #ccc;
}

.phone-link {
    color: #de4f32;
    text-decoration: none;
}

    .phone-link:hover {
        text-decoration: underline;
    }

/* ===== Contact Icons ===== */
.red-contact {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.red-contact-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: all 0.3s ease;
}

    /* Brand Colors */
    .red-contact-link.instagram {
        background: #E4405F;
    }

    .red-contact-link.whatsapp {
        background: #25D366;
    }

    .red-contact-link.telegram {
        background: #0088cc;
    }

    .red-contact-link.youtube {
        background: #FF0000;
    }

    .red-contact-link.phone {
        background: #2e89ff;
    }

    .red-contact-link:hover {
        transform: translateY(-4px);
        opacity: 0.9;
    }

/* Responsive */
@media (max-width: 520px) {
    .red-about-card {
        padding: 22px;
    }

    .red-about-title {
        font-size: 1.6rem;
    }

    .red-about-text {
        font-size: 0.95rem;
    }
}

/* بخش البوم جزئیات هنرمند */
.album-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.album-item {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

.album-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

    .album-link:hover {
        color: #de4f32;
        transform: translateX(-3px);
    }
.artist-album-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.artist-album-box {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* اگه دایره خواستی: 50% */
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .artist-album-box:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(222, 79, 50, 0.6);
    }

.artist-album-image {
    width: 100%;
    height: 100%;
    position: relative;
}

    .artist-album-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: inherit;
    }

.artist-album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 0 0 10px 10px;
}

    .artist-album-overlay span {
        display: inline-block;
        color: #fff;
        transition: color 0.3s ease;
    }

.artist-album-box:hover .artist-album-overlay span {
    color: #de4f32;
}

/* اسلایدر نسخه موبایل */

@media (max-width: 768px) {
    .home_slide img {
        height: 60vh;
    }
}
