.photo-gallery {
    padding: 2rem 0;
}

.photo-gallery h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-main {
    max-width: 600px;
    flex: 1;
}

.gallery-main img {
    width: 100%;
    border-radius: 1rem;
}

.gallery-main p {
    text-align: center;
    margin-top: 0.5rem;
    color: var(--text);
    opacity: 0.8;
}

.gallery-placeholder {
    padding: 4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    color: var(--mut);
}