/* ESTILOS Y REGLAS PERSONALIZADAS RESUENA FOTOGRAFÍA */

/* Scrollbar Estilizada con Acento Menta y Primario Oscuro */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
    background: #514343;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #CBF3F0;
}

/* Transición suave para los ítems de la galería */
.gallery-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hidden-item {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

/* Transiciones del Slider Hero */
.hero-slide {
    will-change: opacity;
}

/* Estilo para fuente script (Madelyn / Caveat fallback) */
.font-script {
    font-family: 'Caveat', 'Madelyn', 'Sacramento', cursive;
}
