body {
    background: #f8f8f8;
}



/* Gallery specific styles only */

.gallery-section {
    padding: 110px 0 40px 0;
    min-height: 70vh;
}
.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #7a1c1c;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(139,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}
.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(139,0,0,0.18);
    z-index: 2;
}
@media (max-width: 600px) {
    .gallery-title {
        font-size: 1.5rem;
    }
    .gallery-grid {
        gap: 12px;
    }
    .gallery-grid img {
        height: 300px;
    }
} 