/*
Theme Name:   Astra Child Argay
Theme URI:    https://argay.ar
Description:  Tema hijo de Astra personalizado para Argay.ar - Magazine LGBTIQ+
Author:       Argay Team
Author URI:   https://argay.ar
Template:     astra
Version:      1.0.0
Text Domain:  astra-child-argay
*/

/* ====================================
   ESTILOS PERSONALIZADOS DE ARGAY.AR
   ==================================== */

/* Aquí puedes agregar tus estilos personalizados */

/* === SPINNER DE CARGA === */

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

body.loaded #page-loader {
    opacity: 0;
    pointer-events: none;
}

/* Spinner arcoíris temática LGBTIQ+ */
.spinner-rainbow {
    width: 50px;
    height: 50px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top-color: #e40303;
    border-right-color: #ff8c00;
    border-bottom-color: #ffed00;
    border-left-color: #008026;
    animation: spin-rainbow 1.2s linear infinite;
    position: relative;
}

.spinner-rainbow::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top-color: #24408e;
    border-right-color: #732982;
    animation: spin-rainbow 0.8s linear infinite reverse;
}

@keyframes spin-rainbow {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .spinner-rainbow {
        width: 40px;
        height: 40px;
    }
}