/* Gallery Hero */
.gallery-hero {
    height: 350px;
    background: url('./images/ourgallary.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed; /* Parallax effect */
}

.gallery-hero .overlay {
    background: rgba(0, 30, 60, 0.6); /* Deep blue overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 15px;
    padding: 20px 0;
    margin-left: 25px;
    margin-right: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #5378a8; /* Matches header blue */
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Load More Button */
.mt-50 { margin-top: 50px; }

.btn-outline {
    background: transparent;
    border: 2px solid #ff8c32; /* Orange from your brand */
    color: #ff8c32;
    padding: 10px 30px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #ff8c32;
    color: white;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 200px; }
}