/**
 * Estilos Comunes - Jardín de Eventos
 * Estilos compartidos por todas las páginas del sitio
 */

/* Reset y base */
body {
    background-color: #000000;
    color: #f3f4f6;
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wixui-rich-text__text {
    font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Animaciones reutilizables */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradiente de texto dorado */
.gold-text-gradient {
    background: linear-gradient(to right, #C6A868, #F9E2AE, #C6A868);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Efectos de brillo para texto */
.text-glow {
    text-shadow: 0 0 10px rgba(198, 168, 104, 0.3), 0 0 20px rgba(198, 168, 104, 0.2);
}

.text-glow-strong {
    text-shadow: 0 0 15px rgba(198, 168, 104, 0.6), 0 0 30px rgba(198, 168, 104, 0.4);
}

/* Parallax */
.parallax-section,
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Grid masonry */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 1.5rem;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
