/**
 * Galleria fotografica – Soft & Human
 */

.gallery-fullscreen {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 280px;
    overflow: hidden;
    margin: 0 auto;
    background-color: var(--color-bg-alt, #F5F0E8);
    border-radius: 0;
}

.gallery-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    pointer-events: none;
}

.gallery-control {
    pointer-events: auto;
    background-color: rgba(253, 251, 247, 0.85);
    color: var(--color-primary-dark, #4D7359);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.3rem;
    box-shadow: 0 2px 12px rgba(58, 61, 58, 0.12);
    min-width: 48px;
    min-height: 48px;
}

.gallery-control:hover,
.gallery-control:focus-visible {
    background-color: var(--color-white, #fff);
    transform: scale(1.05);
    outline: 2px solid var(--color-secondary, #D98A6C);
}

.gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}

.gallery-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(58, 61, 58, 0.2);
}

.gallery-indicator.active {
    background-color: var(--color-secondary, #D98A6C);
    transform: scale(1.15);
}

.gallery-section-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.gallery-section-title h2 {
    font-family: var(--font-serif, "Lora", serif);
    color: var(--color-primary-dark, #4D7359);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-section-title p {
    font-size: 1.05rem;
    color: var(--color-text-muted, #5C605C);
    max-width: 560px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .gallery-fullscreen {
        height: 65vh;
        border-radius: var(--radius-lg, 24px);
        max-width: 1140px;
        margin: 0 auto;
    }

    .gallery-section-title h2 {
        font-size: 2.2rem;
    }

    .gallery-control {
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-slide {
        transition: none;
    }
}
