/*
Theme Name: Luvalu
Author: Anibal
Version: 1.0
*/

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #111;
}

/* LANDING */

/* LANDING */

body.luvalu-landing-body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ea4b07 !important;
}

/* CUADRO CENTRAL */

.luvalu-box {
    width: 420px;
    height: 420px; /* fijo en vez de aspect-ratio por compatibilidad */
    background: #f3e6df;
    border: 5px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

/* LOGO */

.luvalu-logo {
    max-width: 220px;
    margin-bottom: 35px;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

/* BOTONES */

.luvalu-buttons {
    width: 100%;
    display: flex;
    flex-direction: column !important;
    gap: 18px;
}

.luvalu-btn {
    width: 100%;
    padding: 14px 0;
    background: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.luvalu-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

