/* _content/Ceremony.RelojDeLuz/Pages/Login.razor.rz.scp.css */
.login-container[b-xbsxcsyl1i] {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--color-background-paper);
    background-image: var(--texture-paper);
}

.login-card[b-xbsxcsyl1i] {
    width: 100%;
    max-width: 420px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.login-logo-link[b-xbsxcsyl1i] {
    display: inline-block;
    margin-bottom: 1rem;
}

.login-logo-img[b-xbsxcsyl1i] {
    height: 4rem; /* 64px */
    width: auto;
    /* Invertimos el color del logo para que sea visible sobre fondo claro */
    filter: invert(1);
}

.login-title[b-xbsxcsyl1i] {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem; /* 28px */
    font-weight: 700;
    color: var(--color-text-dark);
}

.login-subtitle[b-xbsxcsyl1i] {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.login-form[b-xbsxcsyl1i] {
    text-align: left;
}

.login-error-message[b-xbsxcsyl1i] {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
}

/* Reutilizamos los estilos del formulario de contacto */
[b-xbsxcsyl1i] .form-field {
    margin-bottom: 1.25rem;
}

[b-xbsxcsyl1i] label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    display: block;
}

[b-xbsxcsyl1i] .input-element {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
    background-color: #F9FAFB;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
}

    [b-xbsxcsyl1i] .input-element:focus {
        outline: none;
        border-color: var(--color-accent-gold);
        box-shadow: 0 0 0 3px rgba(192, 164, 124, 0.25);
        background-color: white;
    }

[b-xbsxcsyl1i] .validation-error-text {
    color: #e53e3e;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

[b-xbsxcsyl1i] .form-actions {
    margin-top: 1.5rem;
}

[b-xbsxcsyl1i] .btn-primary-custom {
    width: 100%; /* Hacemos que el botón ocupe todo el ancho */
    text-align: center;
}
/* _content/Ceremony.RelojDeLuz/Shared/AboutSection.razor.rz.scp.css */
.about-section[b-4zfnc8v2lk] {
    position: relative;
    width: 100%;
    background-color: var(--color-background-paper);
    padding: 6rem 1.5rem;
    overflow: hidden;
}

.about-content-wrapper[b-4zfnc8v2lk] {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background-color: white;
    background-image: var(--texture-paper);
    color: var(--color-text-dark);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .about-content-wrapper[b-4zfnc8v2lk] {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        padding: 4rem;
    }
}

/* --- Estilos para la imagen y su animación --- */
.about-image-container[b-4zfnc8v2lk] {
    padding: 1rem;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    /* ===== CAMBIO A ALTURA DINÁMICA ===== */
    /* 1. La altura ahora es el 70% de la altura de la ventana. ¡Puedes ajustar este valor! */
    height: 70vh;
    /* 2. Añadimos una altura máxima para evitar que se vea demasiado grande en monitores muy altos. */
    max-height: 650px;
    overflow: hidden;
    /* Estado inicial de la animación (sin cambios) */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .about-image-container.is-visible[b-4zfnc8v2lk] {
        opacity: 1;
        transform: translateY(0);
    }

    .about-image-container img[b-4zfnc8v2lk] {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        object-position: center;
    }

/* --- Estilos para el texto usando tus variables --- */
.about-text-content .title-font[b-4zfnc8v2lk] {
    font-family: 'Great Vibes', cursive;
    color: var(--color-accent-gold);
    font-size: 3rem;
    line-height: 1;
}

.about-text-content .body-font[b-4zfnc8v2lk] {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-top: 1.5rem;
}
/* _content/Ceremony.RelojDeLuz/Shared/ContactSection.razor.rz.scp.css */
/* _content/Ceremony.RelojDeLuz/Shared/EmptyLayout.razor.rz.scp.css */
.empty-layout-container[b-bctp1ih89c] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--color-background-paper); /* Mantiene el color de fondo del sitio */
    padding: 2rem;
}
/* _content/Ceremony.RelojDeLuz/Shared/Footer.razor.rz.scp.css */
.footer-container[b-45dffwzldy] {
    background-color: var(--color-text-dark); /* Fondo oscuro de tu paleta */
    color: #9CA3AF; /* Gris claro para el texto, buena legibilidad */
    font-family: 'Montserrat', sans-serif;
}

.footer-content-wrapper[b-45dffwzldy] {
    max-width: 1280px; /* Ancho máximo, consistente con un diseño moderno */
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Una columna por defecto para móviles */
    gap: 2.5rem;
    text-align: center; /* Todo centrado en la vista móvil */
}

/* En pantallas de tablet y más grandes, cambiamos a un layout de 3 columnas */
@media (min-width: 768px) {
    .footer-content-wrapper[b-45dffwzldy] {
        grid-template-columns: repeat(3, 1fr);
        text-align: left; /* Alineamos el texto a la izquierda */
    }
}

.footer-column[b-45dffwzldy] {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Espacio entre los elementos de cada columna */
}

.footer-title[b-45dffwzldy] {
    font-size: 1rem; /* 16px */
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem; /* Pequeño espacio extra debajo del título */
}

.footer-text[b-45dffwzldy] {
    font-size: 0.875rem; /* 14px */
    line-height: 1.6;
}

.contact-info-group[b-45dffwzldy] {
    display: flex;
    flex-direction: column;
}

.footer-link[b-45dffwzldy] {
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}

    .footer-link:hover[b-45dffwzldy] {
        color: white;
        text-decoration: underline;
    }

.social-icons-group[b-45dffwzldy] {
    display: flex;
    gap: 1.5rem;
    justify-content: center; /* Centra los iconos en móviles */
}

@media (min-width: 768px) {
    .social-icons-group[b-45dffwzldy] {
        justify-content: flex-start; /* Alinea los iconos a la izquierda en escritorio */
    }
}

.social-icon-link[b-45dffwzldy] {
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

    .social-icon-link:hover[b-45dffwzldy] {
        transform: translateY(-2px) scale(1.1);
        color: white;
    }

.footer-copyright[b-45dffwzldy] {
    border-top: 1px solid #4B5563; /* Borde separador sutil */
    padding: 1.5rem 1.5rem;
}
/* _content/Ceremony.RelojDeLuz/Shared/GallerySection.razor.rz.scp.css */
.gallery-section[b-5tudk1ckm3] {
    width: 100%;
    padding: 6rem 1.5rem;
    background-color: var(--color-background-paper);
    background-image: var(--texture-paper);
}

.gallery-header[b-5tudk1ckm3] {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title[b-5tudk1ckm3] {
    font-family: 'Great Vibes', cursive;
    color: var(--color-accent-gold);
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 400;
}

.gallery-description[b-5tudk1ckm3] {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* --- El Mosaico de Imágenes --- */
.gallery-grid[b-5tudk1ckm3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item[b-5tudk1ckm3] {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    cursor: pointer;
}

    .gallery-item:nth-child(5n - 2)[b-5tudk1ckm3] {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(7n - 3)[b-5tudk1ckm3] {
        grid-row: span 2;
    }

    .gallery-item:nth-child(11n - 7)[b-5tudk1ckm3] {
        grid-column: span 2;
    }

@media (max-width: 768px) {
    .gallery-item:nth-child(5n - 2)[b-5tudk1ckm3],
    .gallery-item:nth-child(7n - 3)[b-5tudk1ckm3],
    .gallery-item:nth-child(11n - 7)[b-5tudk1ckm3] {
        grid-column: auto;
        grid-row: auto;
    }
}


.gallery-item img[b-5tudk1ckm3] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.gallery-item:hover img[b-5tudk1ckm3] {
    transform: scale(1.05);
}

.gallery-item-overlay[b-5tudk1ckm3] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.gallery-item:hover .gallery-item-overlay[b-5tudk1ckm3] {
    opacity: 1;
}

/* ===== NUEVOS ESTILOS PARA EL LIGHTBOX REAL ===== */
.lightbox-overlay[b-5tudk1ckm3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn-b-5tudk1ckm3 0.3s ease;
}

.lightbox-content[b-5tudk1ckm3] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image[b-5tudk1ckm3] {
    max-width: 100%;
    max-height: 90vh; /* La imagen nunca será más alta que el 90% de la pantalla */
    border-radius: 0.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.lightbox-close[b-5tudk1ckm3], .lightbox-prev[b-5tudk1ckm3], .lightbox-next[b-5tudk1ckm3] {
    position: absolute;
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .lightbox-close:hover[b-5tudk1ckm3], .lightbox-prev:hover[b-5tudk1ckm3], .lightbox-next:hover[b-5tudk1ckm3] {
        background: rgba(0,0,0,0.6);
    }

.lightbox-close[b-5tudk1ckm3] {
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
}

.lightbox-prev[b-5tudk1ckm3], .lightbox-next[b-5tudk1ckm3] {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.lightbox-prev[b-5tudk1ckm3] {
    left: -70px;
}

.lightbox-next[b-5tudk1ckm3] {
    right: -70px;
}

@keyframes fadeIn-b-5tudk1ckm3 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Media query para móviles */
@media (max-width: 768px) {
    .lightbox-prev[b-5tudk1ckm3], .lightbox-next[b-5tudk1ckm3] {
        top: auto;
        bottom: -60px;
        transform: none;
    }

    .lightbox-prev[b-5tudk1ckm3] {
        left: 25%;
    }

    .lightbox-next[b-5tudk1ckm3] {
        right: 25%;
    }
}
/* _content/Ceremony.RelojDeLuz/Shared/HeroCarousel.razor.rz.scp.css */
.hero-carousel[b-hyvzc9e7dd] {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Oculta cualquier parte de la imagen que se salga */
}

.overlay[b-hyvzc9e7dd] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Tono oscuro sutil para mejorar contraste */
    z-index: 1;
}

.slides .slide[b-hyvzc9e7dd] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el espacio sin deformarse */
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* La magia de la transición suave */
    z-index: 0;
}

    .slides .slide.active[b-hyvzc9e7dd] {
        opacity: 1; /* La imagen activa se hace visible */
    }

.hero-content[b-hyvzc9e7dd] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
}

.hero-title[b-hyvzc9e7dd] {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem; /* 80px */
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle[b-hyvzc9e7dd] {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem; /* 20px */
    margin-top: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 768px) {
    .hero-title[b-hyvzc9e7dd] {
        font-size: 3.5rem; /* 56px */
    }

    .hero-subtitle[b-hyvzc9e7dd] {
        font-size: 1rem; /* 16px */
    }
}
/* _content/Ceremony.RelojDeLuz/Shared/MainLayout.razor.rz.scp.css */
/*
  Aplica 'user-select: none' a componentes clave de la interfaz.
  Esto previene que el texto del men� y del carrusel pueda ser
  seleccionado por el usuario, mejorando la experiencia.
*/
[b-ch4c2kebpf] header,
[b-ch4c2kebpf] .hero-carousel {
    -webkit-user-select: none; /* Para navegadores Safari */
    -ms-user-select: none; /* Para Internet Explorer 10+ */
    user-select: none; /* Sintaxis est�ndar */
}
/* _content/Ceremony.RelojDeLuz/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-6ox6e3hi74] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-6ox6e3hi74] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-6ox6e3hi74] {
    font-size: 1.1rem;
}

.oi[b-6ox6e3hi74] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-6ox6e3hi74] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-6ox6e3hi74] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-6ox6e3hi74] {
        padding-bottom: 1rem;
    }

    .nav-item[b-6ox6e3hi74]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-6ox6e3hi74]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-6ox6e3hi74]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-6ox6e3hi74] {
        display: none;
    }

    .collapse[b-6ox6e3hi74] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/Ceremony.RelojDeLuz/Shared/Toast.razor.rz.scp.css */
.toast-container[b-142af2lwr6] {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1050; /* Un z-index alto para que aparezca sobre todo */
    min-width: 280px;
}

.toast[b-142af2lwr6] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    color: white;
}

    .toast.show[b-142af2lwr6] {
        opacity: 1;
        transform: translateX(0);
    }

.toast-body[b-142af2lwr6] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Variaciones de color según el nivel del toast */
.toast-success[b-142af2lwr6] {
    background-color: #16a34a; /* Verde */
    border-color: #15803d;
}

.toast-error[b-142af2lwr6] {
    background-color: #dc2626; /* Rojo */
    border-color: #b91c1c;
}

.toast-warning[b-142af2lwr6] {
    background-color: #f59e0b; /* Ámbar */
    border-color: #d97706;
    color: #1f2937; /* Texto oscuro para mejor contraste */
}

.toast-info[b-142af2lwr6] {
    background-color: #2563eb; /* Azul */
    border-color: #1d4ed8;
}
/* _content/Ceremony.RelojDeLuz/Shared/TopBar.razor.rz.scp.css */
/* TopBar.razor.css */
/* Estilos para los enlaces de navegación */
.nav-link-style[b-71paovdu87] {
    position: relative;
    padding-bottom: 0.25rem;
    color: inherit;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}

    .nav-link-style[b-71paovdu87]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-accent-gold);
        transition: width 0.3s ease-in-out;
    }

    .nav-link-style:hover[b-71paovdu87]::after,
    .nav-link-style.active[b-71paovdu87]::after {
        width: 100%;
    }


/* Estilos para la barra de navegación dinámica */
.top-bar-base.scrolled[b-71paovdu87] {
    background-color: white;
    color: var(--color-text-dark);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

    .top-bar-base.scrolled .nav-link-style[b-71paovdu87] {
        color: var(--color-text-dark);
    }

    .top-bar-base.scrolled .mobile-menu-button[b-71paovdu87] {
        color: var(--color-text-dark);
    }

.login-icon-link[b-71paovdu87] {
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
    color: inherit;
}

    .login-icon-link:hover[b-71paovdu87] {
        transform: scale(1.1);
        color: var(--color-accent-gold);
    }

/* ===== ESTILOS PARA EL MENÚ MÓVIL CON ANIMACIÓN ===== */
.mobile-menu-overlay[b-71paovdu87] {
    position: fixed;
    inset: 0;
    z-index: 40;
    background-color: white;
    background-image: var(--texture-paper);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 1. Definimos el estado inicial (invisible) y la animación */
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

    /* 2. Clase que C# añadirá para hacerlo visible */
    .mobile-menu-overlay.is-visible[b-71paovdu87] {
        opacity: 1;
    }

.mobile-menu-close-button[b-71paovdu87] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--color-text-dark);
    transition: transform 0.2s ease, color 0.2s ease;
}

    .mobile-menu-close-button:hover[b-71paovdu87] {
        transform: scale(1.1) rotate(90deg);
        color: var(--color-accent-gold);
    }

.mobile-menu-logo[b-71paovdu87] {
    height: 3rem;
    width: auto;
    margin-bottom: 3rem;
}

.mobile-menu-links[b-71paovdu87] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-menu-link[b-71paovdu87] {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

    .mobile-menu-link:hover[b-71paovdu87] {
        color: white;
        background-color: var(--color-accent-gold);
    }

