/* Intro Section */
.photography-intro {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.photography-intro h1 {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.photography-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

/* Masonry Gallery */
.photo-gallery {
    padding: 40px 20px;
    background-color: var(--background);
}

.masonry-gallery {
    column-count: 3;
    column-gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.masonry-gallery img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.masonry-gallery img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        column-count: 1;
    }
}

/* CTA Section */
.photography-cta {
    text-align: center;
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.photography-cta h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.photography-cta p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0082b3;
}
