/* ==========================================================================
   Design System & Variable Tokens - Emporio del Alfajor
   ========================================================================== */
:root {
    /* Color Palette from en-construccion.html */
    --color-bg-base: #FAF6F0;          /* Crema/Pastel Background */
    --color-primary: #2C160F;          /* Café/Espresso (brand-espresso) */
    --color-primary-light: #4c2c20;    /* Lighter warm espresso */
    --color-accent: #FF5500;           /* Naranjo (brand-orange) */
    --color-accent-hover: #e64d00;     /* Deeper orange */
    --color-muted: rgba(44, 22, 15, 0.75); /* Readable body text */
    
    /* Fonts */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 2.5rem 1.5rem;
}

/* Background Ambient Glows */
.ambient-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
}

.glow-1 {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, var(--color-accent) 0%, rgba(255,255,255,0) 70%);
}

.glow-2 {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, var(--color-primary) 0%, rgba(255,255,255,0) 70%);
}

/* ==========================================================================
   Layout Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.header {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-pre {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.brand-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   Hero Content & Main Panel
   ========================================================================== */
.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.status-content {
    padding: 1rem 0;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Large unencapsulated "Próximamente" heading */
.status-pretitle {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.status-title {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
}

.status-description {
    color: var(--color-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    border-top: 1px solid rgba(44, 22, 15, 0.08);
    padding-top: 2rem;
    width: 100%;
    animation: fadeIn 1.2s ease-out 0.4s both;
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-muted);
    font-weight: 500;
}

.copyright strong {
    color: var(--color-accent);
    font-weight: 700;
}

/* ==========================================================================
   Animations Keyframes
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   PC 16:9 Height Constraint & Responsiveness
   ========================================================================== */
@media (min-width: 992px) and (min-height: 500px) {
    body {
        height: 100vh;
        overflow: hidden;
        padding: 5vh 2rem;
    }
    
    .container {
        height: 100%;
        max-height: 600px; /* Constrains vertical spread on 16:9 PC screens */
        justify-content: space-between;
    }
    
    .header {
        margin-bottom: 0;
    }
    
    .main-content {
        margin-bottom: 0;
    }
    
    .footer {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    body {
        padding: 2.5rem 1rem;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    
    .status-pretitle {
        font-size: 1.15rem;
        letter-spacing: 0.15em;
    }
    
    .status-title {
        font-size: 1.8rem;
    }
    
    .status-description {
        font-size: 0.95rem;
    }
}
