/*
Theme Name:   Twenty Twenty-Five Child
Theme URI:    https://florine.ovh
Description:  Child theme for Twenty Twenty-Five with custom gallery layout
Author:       Florine
Author URI:   https://florine.ovh
Template:     twentytwentyfive
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  twentytwentyfive-child
*/

/* Custom styles for gallery page */
.gallery-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.gallery-title {
    font-family: 'Amatic SC', cursive;
    font-size: 4rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-title {
        font-size: 3rem;
    }

    .gallery-item img {
        height: 200px;
    }
}
