﻿/* Gallery Page Sections - Frontend Styles */

/* Edit button styles are centralized in style.css */
/* See: "UNIFIED EDIT BUTTON STYLES" section */

/* Modern Gallery Grid */
.modern-gallery-section {
    padding: 60px 20px;
    background: white;
}

.modern-gallery-section h2 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* 
 * NOTE: All gallery layout styles are now in gallery-lightbox.css
 * This file only contains section and edit button styles
 */

/* Legacy overlay for backward compatibility */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

/* Stats Section */
.gallery-stats-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.gallery-stats-section h2 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.gallery-stats-section .stats-grid {
    margin: 0 -15px;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-stats-section .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cf-primary);
    margin-bottom: 10px;
}

.gallery-stats-section .stat-label {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-stats-section .stat-number {
        font-size: 2.5rem;
    }
}
