body {
    background-color: #f3eee2;
}
.gallery-page-content {
    padding: 100px 20px 50px;
    text-align: center;
}

.gallery-page-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #b38061;
    margin-bottom: 0;
    margin-top: -70px;

}

.gallery-page-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-link {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; 
}

.photo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.photo-link:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.photo-link:hover img {
    transform: scale(1.05); 
    filter: brightness(1.1); 
}


.footer-romantico {
    background-color: #b38061;
    color: white;
    text-align: center;
    padding: 40px 30px;
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.footer-romantico p {
    margin: 7px 0;
    font-size: 1rem;
    font-weight: 300;
}