
/* ==========================================
   Photography Page Styles
   ========================================== */

/* Page */

body {
    margin: 0;
    background: #F4EFE4;
    color: #333333;
    /* Inherit the site's font from style.css */
}

/* Header */

.page-header {
    padding: 80px 20px 60px;
    text-align: center;
    background: #E7DDC7;
    border-bottom: 1px solid #D2C7B1;
}

.page-header h1 {
    margin: 0;
    font-size: 4rem;
    letter-spacing: 2px;
    color: #4F4A42;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.8rem;
    }
}

/* Intro Photo */

.intro-photo {
    max-width: 1400px;
    margin: 30px auto 10px;
    padding: 0 40px;
}

.intro-photo img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

/* Introduction */

.photo-introduction {
    max-width: 900px;
    margin: 40px auto 70px;
    padding: 0 30px;
    text-align: center;
}

.photo-introduction p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #5E564A;
    margin-bottom: 25px;
}

/* Gallery */

.gallery-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    background: #FCFAF5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #5E564A;
}

.featured-photo {
    margin-bottom: 35px;
}

.featured-photo img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-grid img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform .25s ease;
}

.photo-grid img:hover {
    transform: scale(1.02);
}
