/* =========================
   HERO
========================= */

.photos-hero-wrapper {
    position: relative;
    min-height: 100vh;

    background-image: url("/images/couple\ 1.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.photos-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.photos-hero-wrapper nav,
.photos-hero-content {
    position: relative;
    z-index: 2;
}

.photos-hero-content {
    height: calc(100vh - 10vh);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
}

.photos-hero-content h2 {
    font-size: 6rem;
    margin-bottom: 2rem;
}

.photos-hero-content p {
    font-size: 2rem;
    max-width: 600px;
}

/* =========================
   FILTER
========================= */

.photo-filter-section {
    padding: 8rem 0;
    background: #f6f1ea;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.filter-tabs button {
    padding: 1rem 2rem;
    border: 1px solid #5a2d6c;
    background: transparent;
    color: #5a2d6c;
    font-size: 1.6rem;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.filter-tabs button.active,
.filter-tabs button:hover {
    background: #5a2d6c;
    color: #fff;
}

/* =========================
   PHOTO GRID
========================= */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* 3 per row → automatically makes rows */

.photo-card {
    overflow: hidden;
    border-radius: 12px;
    height: 350px;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: 0.4s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}
