/* ==========================================================================
   Design System & Variable Tokens - Barquillos Martina
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-base: #fdfbf7;         /* Extra soft warm cream */
    --color-primary: #24120a;         /* Deepest luxury dark chocolate */
    --color-primary-light: #482a1b;   /* Medium cocoa brown */
    --color-accent: #b07e38;          /* Richer warm gold/honey for contrast */
    --color-accent-hover: #966627;    /* Deeper gold */
    --color-muted: #5d4638;           /* Darker cocoa brown for readable body text */
    
    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', system-ui, -apple-system, 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: 3rem 1.5rem;
}

/* Background Ambient Glows */
.ambient-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    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: 680px;
    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;
}

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

.brand-title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.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-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.status-content {
    padding: 1.5rem 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: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.status-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.status-description {
    color: var(--color-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
    font-weight: 400; /* Changed from 300 to 400 for thicker typeface */
    line-height: 1.7;
}

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

.contact-info {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-weight: 500; /* Increased weight for legibility */
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(50, 29, 19, 0.08);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(212, 163, 89, 0.15);
    background: #ffffff;
}

.copyright {
    font-size: 0.75rem;
    color: var(--color-muted);
    opacity: 0.75;
    font-weight: 400; /* Slightly thicker */
}

/* ==========================================================================
   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: 580px; /* 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: 2.1rem;
    }
    
    .status-pretitle {
        font-size: 1.15rem;
        letter-spacing: 0.15em;
    }
    
    .status-title {
        font-size: 1.8rem;
    }
    
    .status-description {
        font-size: 0.95rem;
    }
}
