/*
Theme Name: Vegetalistos Custom Theme
Theme URI: https://vegetalistos.com
Author: Irvin
Description: Tema personalizado a la medida para Vegetalistos, desarrollado con HTML, CSS puro y PHP.
Version: 1.0
Tested up to: 6.4
Requires PHP: 7.4
Text Domain: vegetalistos
*/

/* =========================================
   Página de Mantenimiento - Vegetalistos
========================================= */

:root {
    --azul-vegetalistos: #1ca3d9;
    --verde-lima: #c4f000;
    --verde-oscuro: #004d25;
    --blanco: #ffffff;
    
    /* Variables de tipografías */
    --font-titulos: 'Dela Gothic One', sans-serif;
    --font-parrafos: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.mantenimiento-body {
    font-family: var(--font-parrafos);
    background-color: var(--azul-vegetalistos);
    color: var(--blanco);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mantenimiento-container {
    text-align: center;
    z-index: 10;
    padding: 20px;
    max-width: 600px;
    width: 100%;
}

/* Estilos para el logo */
.logo-mantenimiento {
    max-width: 280px;
    height: auto;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.2)); 
}

/* Tipografías y Textos */
.tagline {
    font-family: var(--font-titulos);
    color: var(--verde-lima);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title {
    font-family: var(--font-titulos);
    font-size: 2.8rem;
    color: var(--blanco);
    margin-bottom: 15px;
    line-height: 1.2;
}

.description {
    font-family: var(--font-parrafos);
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.slogan-brand {
    font-family: var(--font-parrafos);
    display: inline-block;
    background-color: var(--verde-lima);
    color: var(--verde-oscuro);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700; /* Negrita para que resalte */
    font-size: 1.1rem;
}

/* =========================================
   Decoraciones y Formas Orgánicas
========================================= */
.ola-inferior {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--blanco);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1;
}

.forma-organica {
    position: absolute;
    background-color: var(--verde-lima);
    opacity: 0.8;
    z-index: 0;
}

.forma-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(20deg);
}

.forma-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 10%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(-15deg);
    background-color: var(--verde-oscuro);
}

/* =========================================
   Responsive Design (Móviles y Tablets)
========================================= */
@media (max-width: 768px) {
    .logo-mantenimiento {
        max-width: 200px;
    }

    .tagline {
        font-size: 1rem;
    }

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .slogan-brand {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .forma-1 {
        width: 80px;
        height: 80px;
        top: 5%;
        left: -10px;
    }

    .forma-2 {
        width: 60px;
        height: 60px;
        bottom: 15%;
        right: -10px;
    }

    .ola-inferior {
        height: 100px;
        bottom: -30px;
    }
}