﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f8f9fb;
}

/* HERO */
.gallery-hero {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

    .gallery-hero h1 {
        font-size: 52px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .gallery-hero p {
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.7;
    }

/* SECTION */
.gallery-section {
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f766e;
    margin-bottom: 60px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 18px;
        transition: transform 0.4s ease;
    }

    /* Hover Animation */
    .gallery-card:hover img {
        transform: scale(1.08);
    }

    .gallery-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

/* Overlay Content */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px 15px;
    color: #fff;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    transition: 0.4s ease;
    opacity: 0;
}

.gallery-card:hover .overlay {
    opacity: 1;
    bottom: 0;
}

/* Overlay Text */
.overlay h3 {
    font-size: 20px;
    font-weight: 700;
}

.overlay p {
    font-size: 15px;
    margin-top: 8px;
}

/* COLOR BORDERS FOR DIFFERENT CARDS */
.card-green img {
    border: 6px solid #2e7d32;
}

.card-blue img {
    border: 6px solid #1565c0;
}

.card-orange img {
    border: 6px solid #ef6c00;
}

.card-purple img {
    border: 6px solid #6a1b9a;
}

.card-red img {
    border: 6px solid #c62828;
}

.card-gold img {
    border: 6px solid #f9a825;
}

.card-teal img {
    border: 6px solid #00897b;
}

.card-pink img {
    border: 6px solid #d81b60;
}

.card-indigo img {
    border: 6px solid #3949ab;
}

/* PRESENCE SECTION */
.gallery-presence {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

    .gallery-presence h2 {
        font-size: 44px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .gallery-presence p {
        font-size: 18px;
        max-width: 850px;
        margin: 0 auto;
        line-height: 1.7;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }
}
/* ===== VIEW MORE BUTTON ===== */
.gallery-viewmore {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

    .view-more-btn:hover {
        background: linear-gradient(135deg, #14b8a6, #0ea5e9);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }
