.photography-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.photography-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.photography-hero h1 {
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: white;
    font-size: 3rem;
    font-weight: 600;
}

/* --- Intro Section --- */
.photography-intro {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: justify;
}

/* --- Categories Section --- */
.photography-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.photo-category {
    width: 350px;
    text-align: center;
}

.photo-category img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.photo-category h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.photo-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 6px;
    background: black;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.photo-btn:hover {
    background: #444;
}