/* HERO */
.gallery-hero {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(120deg, #ff416c, #ff4b2b);
    color: white;
}

.gallery-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.gallery-hero span {
    color: #fff;
}

.gallery-hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 70px 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item img {
    width: 100%;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.gallery-item img:hover {
    transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    width: 80%;
    max-width: 650px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 48px;
    color: white;
    cursor: pointer;
}

/* WhatsApp Button (matches about page) */
.float-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 999;
}

.float-whatsapp img {
    width: 32px;
}
/* ------------------------------
   GALLERY PAGE
------------------------------- */

/* Gallery Grid */
.gallery-section {
    padding: 80px 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Gallery Card */
.gallery-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Hover effect */
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Image Styling */
.gallery-item img {
    width: 100%;
    height: 180px;          /* fixed height for consistency */
    object-fit: cover;      /* crop cleanly */
    transition: 0.35s ease;
}

/* Zoom on hover */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Optional bottom label (can remove) */
.gallery-label {
    padding: 10px 14px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #444;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .gallery-item img {
        height: 160px;
    }
}
