/*
Theme Name: Digy Group Premium Placeholder (Image BG)
Theme URI: https://digygroup.com
Author: Digy Group
Description: Tema premium para proyectos en desarrollo. Fondo de imagen corporativa y contacto vía WhatsApp.
Version: 2.1
License: GNU General Public License v2 or later
*/

:root {
    --digy-blue-dark: #0f172a; /* Azul oscuro corporativo */
    --digy-blue: #1e40af;      /* Azul más vibrante para acentos */
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --text-dark: #1e293b;
    --text-light: #64748b;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* --- NUEVO FONDO DE IMAGEN --- */
    background-image: url('https://digyevents.com/wp-content/uploads/2025/12/white-background-1.jpg');
    background-size: cover;      /* Asegura que cubra toda la pantalla */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat;
    background-attachment: fixed; /* El fondo se queda fijo al hacer scroll */
    /* ----------------------------- */
    
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.card {
    background: #ffffff;
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    /* Sombra un poco más pronunciada para contrastar con el fondo claro */
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    text-align: center;
}

.card-header-bar {
    height: 12px;
    background: var(--digy-blue-dark);
    width: 100%;
}

.card-content {
    padding: 3.5rem 3rem;
}

.logo-area {
    margin-bottom: 2.5rem;
}

.custom-logo {
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.site-title-fallback {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--digy-blue-dark);
    text-decoration: none;
    letter-spacing: -1px;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--digy-blue-dark);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

p.description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
    padding: 0 1rem;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
    width: 80%;
    max-width: 320px;
}

.whatsapp-btn:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    fill: currentColor;
}

footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--digy-blue-dark); /* Color ligeramente más oscuro para que se lea bien sobre el fondo */
    opacity: 0.8;
    width: 100%;
}

/* Responsivo */
@media (max-width: 640px) {
    .card-content {
        padding: 2.5rem 1.5rem;
    }
    h1 {
        font-size: 1.75rem;
    }
    .whatsapp-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}
