/* ===================== */
/* HERO - GALLERY       */
/* ===================== */

.hero-gallery {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #3d1445, #2b0f2f);
    padding: 20px;
}

.hero-gallery-content h1 {
    font-size: 52px;
    color: #f5c542;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-gallery-content p {
    font-size: 18px;
    color: #d0d0d0;
}

/* ===================== */
/* FILTER BUTTONS       */
/* ===================== */

.gallery-filters {
    padding: 50px 20px;
    text-align: center;
    background: #ffffff;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.filter-btn {
    padding: 12px 28px;
    background: #f9f7f3;
    color: #3d1445;
    border: 2px solid #f5c542;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f5c542;
    color: #2b0f2f;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #f5c542;
    color: #2b0f2f;
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* ===================== */
/* GALLERY GRID         */
/* ===================== */

.gallery-section {
    padding: 80px 20px;
    background: #ffffff;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 20, 69, 0.9), rgba(43, 15, 47, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 18px;
    font-weight: bold;
    color: #f5c542;
    text-align: center;
}

/* ===================== */
/* HIDDEN ITEMS         */
/* ===================== */

.gallery-item.hidden {
    display: none;
}

/* ===================== */
/* CTA SECTION          */
/* ===================== */

.cta {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f9f7f3, #ffffff);
}

.cta h2 {
    color: #67047a;
    margin-bottom: 15px;
    font-size: 32px;
}

.cta p {
    margin-bottom: 20px;
    color: #666666;
    font-size: 16px;
}

.cta button {
    padding: 14px 35px;
    background: #f5c542;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #2b0f2f;
}

.cta button:hover {
    background: #ffd86b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* ===================== */
/* RESPONSIVE           */
/* ===================== */

@media (max-width: 768px) {

    .hero-gallery {
        height: 40vh;
    }

    .hero-gallery-content h1 {
        font-size: 36px;
    }

    .hero-gallery-content p {
        font-size: 16px;
    }

    .gallery-filters {
        padding: 40px 15px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-overlay p {
        font-size: 16px;
    }

    .cta h2 {
        font-size: 26px;
    }

}

@media (max-width: 480px) {

    .hero-gallery {
        height: 30vh;
    }

    .hero-gallery-content h1 {
        font-size: 28px;
    }

    .hero-gallery-content p {
        font-size: 14px;
    }

    .gallery-filters {
        padding: 30px 10px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
        gap: 10px;
    }

    .gallery-section {
        padding: 40px 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    .gallery-overlay p {
        font-size: 14px;
    }

    .cta h2 {
        font-size: 22px;
    }

    .cta button {
        padding: 12px 25px;
        font-size: 14px;
    }

}
