﻿.gallery-large-section {
    background: #ffffff;
    padding: 70px 20px;
}

.gallery-large-container {
    max-width: 1300px;
    margin: auto;
}

.gallery-large-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1b5e20;
}

.gallery-large-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 10px auto 40px;
    color: #555;
    font-size: 16px;
}

/* Big & Close Grid */
.gallery-large-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Card */
.gallery-large-card {
    position: relative;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

    .gallery-large-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

    .gallery-large-card:hover img {
        transform: scale(1.08);
    }

/* Overlay */
.gallery-large-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

/* Button */
.gallery-large-btn-wrap {
    text-align: center;
    margin-top: 45px;
}

.gallery-large-btn {
    padding: 14px 38px;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-size: 16px;
    transition: background 0.3s ease;
}

    .gallery-large-btn:hover {
        background: #1b5e20;
    }

/* Responsive */
@media (max-width: 768px) {
    .gallery-large-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large-card {
        height: 280px;
    }
}
