/*========================
        GALLERY PAGE STYLES
========================*/

.gallery-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #E8F2F7 0%, #FFF9E6 100%);
    min-height: 400px;
    padding: 100px 0;
    text-align: center;
}

.gallery-hero .container {
    position: relative;
    z-index: 1;
}

.gallery-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.gallery-header p {
    font-size: 18px;
    color: #7A8FA3;
}

/*========================
    GALLERY CONTENT
========================*/

.gallery-content {
    padding: 80px 0;
    background: #fff;
}

.gallery-grid {
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(184, 212, 224, 0.15);
    margin-bottom: 30px;
    height: 300px;
    background: #f9fbfc;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 155, 213, 0.9), rgba(91, 155, 213, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/*========================
    GALLERY ABOUT
========================*/

.gallery-about {
    padding: 80px 0;
    background: #FAFBFC;
    border-top: 1px solid rgba(184, 212, 224, 0.2);
}

.gallery-about h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
}

.gallery-about p {
    font-size: 16px;
    color: #7A8FA3;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/*========================
    RESPONSIVE
========================*/

@media (max-width: 768px) {
    .gallery-header h2 {
        font-size: 36px;
    }

    .gallery-header p {
        font-size: 16px;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-header h2 {
        font-size: 28px;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-overlay h4 {
        font-size: 16px;
    }

    .gallery-overlay p {
        font-size: 12px;
    }
}
