﻿.gallery-section {
    background: url('/Content/Images/galarybk.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

    .gallery-section::before {
        content: "";
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        inset: 0;
        z-index: -1;
    }

.gallery-content {
    max-width: 1200px;
    margin: auto;
    color: white;
    text-align: center;
}

.gallery-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease;
}

.gallery-header p {
    font-size: 1.1em;
    max-width: 700px;
    margin: auto;
    animation: fadeInUp 1s ease;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

    .gallery-item img {
        width: 100%;
        border-radius: 10px;
    }

    .gallery-item:hover {
        transform: scale(1.05);
    }

    .gallery-item h4 {
        margin-top: 10px;
        font-size: 1.2em;
        color: #ffeb3b;
    }

    .gallery-item p {
        font-size: 0.9em;
        color: #f1f1f1;
    }

.view-more-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #ff4081;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

    .view-more-btn:hover {
        background: #e91e63;
    }

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
