:root {
    --white: #fff;
    --dark: #252525;
    --primary: #3b141c;
    --secondary: #f3961c;
    --light-pink: #faf4f5;
    --medium-gray: #ccc;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.15rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    --border-radius-s: 4px;
    --border-radius-m: 6px;
    --font-weight-medium: 500;
}

/* ==========================
   ARTISTS PAGE MAIN STYLES
   ========================== */

.artists-section {
    padding: 120px 0;
    background: var(--light-pink);
}

.artists-section .section-content {
    display: flex;
    gap: 50px;
    align-items: top;
    justify-content: space-between;
    color: var(--dark);
}

/* Sidebar */
.sidebar {
    width: 25%;
    border: 1px solid #eee;
    border-radius: 3px;
    padding: 15px;
    height: 68vh;
    top: 0;
    box-shadow: 0px 0px 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.searchbar {
    width: 100%;
    background-color: #eee;
    border-radius: 3px;
    padding: 9px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.searchbar input {
    border: none;
    outline: none;
    background: none;
    flex: 1;
}

.glass:hover {
    color: var(--secondary);
    cursor: pointer;
}

.fa-circle {
    color: var(--secondary);
}

/* Data Section */
.data {
    width: 73%;
    border-radius: 3px;
    height: 80vh;
    overflow: auto;
}

#root {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 10px;
    margin-top: 50px;
    text-align: center;
}

.img-box {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.images {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 3px;
}

.bottom {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    height: 110px;
    margin-bottom: 10px;
}

.bottom button {
    padding: 8px 30px;
    color: var(--white);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--primary);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: 0.3s ease;
}

.bottom button:hover {
    color: var(--primary);
    background: transparent;
}

/* Hide scrollbars */
.artists-section ::-webkit-scrollbar {
    display: none;
}

/* ==========================
   APPLYING SECTION
   ========================== */

.applying-section {
    padding: 50px 0 100px;
    background-color: var(--white);
}

.section-contentt {
    width: 85%;
    margin: 0 auto;
    box-shadow: 1px 1px 5px 10px var(--primary);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.section-contentt form .flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.section-contentt h3 {
    text-align: left;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-contentt form .division {
    display: flex;
    flex-direction: column;
}

.step {
    position: absolute;
    top: 100px;
    width: 100%;
    transition: 0.5s ease;
}

.section-contentt form input,
.section-contentt form select {
    height: 40px;
    padding: 0 20px;
    margin-bottom: 16px;
    background: var(--white);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--medium-gray);
    outline: none;
}

.section-contentt form input:focus,
.section-contentt form select:focus {
    border-color: var(--secondary);
}

.section-contentt form textarea {
    height: 100px;
    width: 100%;
    padding: 12px;
    resize: none;
    border-radius: var(--border-radius-s);
    border: 1px solid var(--medium-gray);
    outline: none;
}

.section-contentt form textarea:focus {
    border-color: var(--secondary);
}

.section-contentt ::placeholder {
    color: var(--dark);
}

.btn-box {
    width: 100%;
    margin: 30px auto;
    text-align: center;
}

.section-contentt form button {
    padding: 12px 35px;
    background: linear-gradient(to right, var(--primary), var(--medium-gray));
    border-radius: 30px;
    border: 0;
    outline: none;
    color: var(--white);
    cursor: pointer;
    font-size: var(--font-size-s);
}

.artists-section .social-icons {
    display: flex;
    gap: 25px;
}

.artists-section .sidefoot .social-icons a {
    font-size: 25px;
    color: var(--dark);
    transition: .3s ease;
}

.artists-section .sidefoot .social-icons a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top {
    border-radius: 3px;
    background-color: #eee;
    padding: 15px;
    text-align: center;
    font-size: var(--font-size-l);
}

.data {
    width: 73%;
    border-radius: 3px;
    height: 80vh;
    overflow: auto;
}

/* ==========================
   POPUP
   ========================== */

.popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.popup-content {
    height: 80%;
    width: 70%;
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    overflow-y: auto;
    position: relative;
}

.popup-content i {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Popup Info */
.info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    align-items: center;
}

.info .profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.personal-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    color: var(--dark);
}

.personal-info .bio-link {
    text-decoration: underline;
    font-size: var(--font-size-n);
    color: var(--secondary);
}

.portifolio {
    margin-top: 30px;
}

.portifolio h2 {
    color: var(--dark);
    margin-bottom: 5px;
    text-align: center;
    font-size: var(--font-size-m);
}

.portifolio .videos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5px;
    width: 100%;
}

.portifolio .videos img,
.portifolio .videos video {
    width: 25%;
    height: 250px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-book {
    padding: 12px 20px;
    background: var(--primary);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--primary);
    margin-top: 20px;
    transition: 0.3s ease;
}

.btn-book a {
    color: var(--white);
    font-size: var(--font-size-m);
    transition: 0.3s ease;
}

.btn-book:hover {
    color: var(--primary);
    background: transparent;
}

.btn-book:hover a {
    color: var(--primary);
}

/* ==========================
   RESPONSIVE MEDIA QUERIES
   ========================== */

@media screen and (max-width: 1200px) {
    #root {
        grid-template-columns: repeat(2, 1fr);
    }

    .popup-content {
        width: 85%;
        height: 85%;
    }
}

@media screen and (max-width: 900px) {
    .artists-section .section-content {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .sidebar {
        width: 90%;
        height: 50vh;
        text-align: center;
    }

    .data {
        width: 90%;
        height: auto;
    }

    .info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    #root {
        grid-template-columns: 1fr;
    }

    .box {
        margin-top: 20px;
    }

    .popup-content {
        width: 90%;
        height: 90%;
    }

    .info .profile img {
        width: 120px;
        height: 120px;
    }

    .portifolio .videos img,
    .portifolio .videos video {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.3rem;
        padding: 40px 0 60px;
    }

    .sidebar {
        padding: 10px;
    }

    .searchbar {
        gap: 10px;
    }

    .box {
        padding: 8px;
    }

    .bottom button,
    .btn-book {
        width: 100%;
        font-size: 0.9rem;
    }

    .popup-content {
        width: 95%;
        height: 95%;
        padding: 10px;
        border-radius: 3px;
    }

    .info .profile img {
        width: 100px;
        height: 100px;
    }

    .personal-info {
        font-size: 0.9rem;
        text-align: center;
    }
}