/*
Theme Name: Estudio Yoga SaaS
Description: Theme profesional para plataforma SaaS de estudios de yoga. Diseñado específicamente para estudio.yoga con funcionalidades coming soon y preparado para integración con el sistema SaaS.
Author: Estudio Yoga Team
Version: 1.0.0
License: GPL v2 or later
Text Domain: estudio-yoga-saas
Tags: yoga, saas, coming-soon, responsive, modern
*/

/* ==========================================================================
   RESET Y BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   TYPOGRAPHY Y COLORES BASE
   ========================================================================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f8f9f5 0%, #e8f0e3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5d4a;
}

/* ==========================================================================
   LAYOUT PRINCIPAL
   ========================================================================== */

.eys-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

/* ==========================================================================
   LOGO
   ========================================================================== */

.eys-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 4px 8px rgba(106, 130, 89, 0.1));
}

/* ==========================================================================
   TYPOGRAPHY ESPECÍFICA
   ========================================================================== */

.eys-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #6a8259;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.eys-subtitle {
    font-size: 1.2rem;
    color: #7a8a7a;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ==========================================================================
   COMING SOON BADGE
   ========================================================================== */

.eys-coming-soon {
    background: rgba(106, 130, 89, 0.1);
    border: 2px solid rgba(106, 130, 89, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-block;
    font-size: 1.1rem;
    color: #6a8259;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   ELEMENTOS DECORATIVOS ZEN
   ========================================================================== */

.eys-zen-circle {
    position: fixed;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(106, 130, 89, 0.1);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    z-index: -1;
}

.eys-zen-circle::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(106, 130, 89, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .eys-container {
        padding: 1rem;
    }
    
    .eys-logo {
        max-width: 250px;
        margin-bottom: 2rem;
    }
    
    .eys-title {
        font-size: 2rem;
    }
    
    .eys-subtitle {
        font-size: 1rem;
    }
    
    .eys-coming-soon {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .eys-zen-circle {
        width: 120px;
        height: 120px;
        top: 5%;
        right: 5%;
    }
    
    .eys-zen-circle::after {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .eys-logo {
        max-width: 200px;
    }
    
    .eys-title {
        font-size: 1.5rem;
    }
    
    .eys-zen-circle {
        display: none;
    }
}