

 
/* ===== ART PAGES ===== */

.art-page {
    display: none;
}

.art-page.active {
    display: block;
}


/* ===== MAIN ART BUTTONS ===== */

.art-main-tabs {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-top: 30px;
}

.art-main-button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #ffd6eb;
    color: hotpink;
    font-family: "lemonmilk", sans-serif;
    cursor: pointer;
    font-size: 15px;
}

.art-main-button:hover {
    transform: scale(1.03);
}


/* ===== BACK BUTTON ===== */

.art-back-button {
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    background-color: #ffd6eb;
    color: hotpink;
    cursor: pointer;
    margin-bottom: 15px;
}


/* ===== DIGITAL ART SUB TABS ===== */

.art-sub-tabs {
    display: flex;
    width: 100%;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.art-sub-button {
    flex: 1;
    padding: 12px 5px;
    border: none;
    background-color: #ffd6eb;
    color: hotpink;
    cursor: pointer;
    font-family: "lemonmilk", sans-serif;
    font-size: 12px;
}

.art-sub-button:first-child {
    border-radius: 10px 0 0 10px;
}

.art-sub-button:last-child {
    border-radius: 0 10px 10px 0;
}

.art-sub-button.active {
    background-color: hotpink;
    color: white;
}


/* ===== SUB CONTENT ===== */

.art-sub-content {
    display: none;
}

.art-sub-content.active {
    display: block;
}

/* =========================
   ART GALLERY
========================= */

.art-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.art-item {
    background-color: #fff0f8;
    padding: 10px;
    border-radius: 15px;
    height: fit-content;
    box-sizing: border-box;
}

.art-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* =========================
   GALLERY LIGHTBOX
========================= */

.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    background-color: rgba(0, 0, 0, 0.85);

    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}


/* IMAGE AGRANDIE */

.gallery-lightbox img {
    max-width: 85vw;
    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 10px;
}


/* =========================
   CLOSE BUTTON
========================= */

.gallery-close {
    position: absolute;

    top: 20px;
    right: 30px;

    font-size: 40px;

    color: white;

    cursor: pointer;

    font-family: Arial, sans-serif;

    z-index: 10001;
}


/* =========================
   ARROWS
========================= */

.gallery-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    font-size: 50px;

    color: white;

    cursor: pointer;

    user-select: none;

    font-family: Arial, sans-serif;

    z-index: 10001;
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .art-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-lightbox img {
        max-width: 80vw;
        max-height: 80vh;
    }

    .gallery-arrow {
        font-size: 35px;
    }
 }
 