/* ================= RESPONSIVE ================= */

/* Tablet (768px and below) */
@media (max-width: 991px) {

    .gallery-main {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-bottom {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .main-large img {
        height: auto;
        width: 100%;
    }

    .gallery-img .img2 {
        width: 180px;
        height: 180px;
    }

    .gallery-img .img3 {
        height: auto;
        width: 100%;
    }

    .year-badge {
        bottom: 10%;
        left: 10%;
        padding: 0.8rem 1rem;
    }

    .content-section {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Mobile (576px and below) */
@media (max-width: 576px) {

    .image-gallery {
        padding: 1rem;
        min-height: auto;
    }

    .gallery-main {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-bottom {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-img img {
        width: 100%;
        height: auto;
    }

    .gallery-img .img2 {
        width: 140px;
        height: 140px;
        margin: auto;
    }

    .year-badge {
        position: static;
        margin-top: 1rem;
        text-align: center;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .contact-counter {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-card {
        padding: 0.7rem;
    }
}


/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {

    .image-gallery {
        max-width: 100%;
    }

    .content-section {
        padding: 3rem;
    }

    .gallery-img .img2 {
        width: 244px;
        height: 244px;
    }
}