/* Estilos Generales */
:root {
    --primary-color: #0056b3; /* Un azul un poco más oscuro y profesional */
    --secondary-color: #495057; /* Un gris más oscuro */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --accent-color: #17a2b8; /* Un turquesa para acentos */
    --font-family: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente sutil en lugar de imagen para simplificar */
    background: linear-gradient(135deg, rgba(0,86,179,0.03) 0%, rgba(23,162,184,0.03) 100%);
    z-index: -1;
}

.container {
    max-width: 780px;
    padding: 45px 35px;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    z-index: 1;
    overflow: hidden;
}

/* Encabezado */
header {
    margin-bottom: 35px;
}

.logo {
    max-width: 170px;
    margin-bottom: 18px;
}

header h1 {
    font-size: 2.6em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

header .subtitle {
    font-size: 1.15em;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: 300;
}

/* Sección de Imagen Principal */
.hero-image-section {
    margin-bottom: 35px;
}

.hero-image {
    width: 100%;
    height: 320px; /* Ajusta según la proporción de la imagen que elijas */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Aviso de Construcción */
.construction-notice h2 {
    font-size: 1.9em;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 18px;
}

.construction-notice p {
    font-size: 1.08em;
    color: #444;
    margin-bottom: 22px;
}

/* Temporizador (Estilo básico, se puede mejorar) */
.countdown-timer {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    margin: 25px auto;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--primary-color);
    max-width: 400px;
}

.countdown-timer p { /* Estilo para el mensaje de fallback */
    margin: 0;
    color: var(--primary-color);
}


/* Información de Contacto */
.contact-info {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid #dee2e6;
}

.contact-info h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.contact-info p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 12px;
}

.email-link {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    padding: 14px 28px;
    border: 2px solid var(--accent-color);
    border-radius: 30px; /* Botón más redondeado */
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.email-link:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.email-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    fill: currentColor; /* El SVG usará el color del texto del enlace */
}

/* Pie de Página */
footer {
    font-size: 0.9em;
    color: var(--secondary-color);
    padding-top: 28px;
    margin-top: 25px;
}
.image-credit a {
    color: var(--secondary-color);
    text-decoration: none;
}
.image-credit a:hover {
    text-decoration: underline;
}

/* Responsividad */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 30px 20px;
    }

    header h1 {
        font-size: 2.1em;
    }
    .hero-image {
        height: 220px;
    }
    .construction-notice h2 {
        font-size: 1.7em;
    }
    .email-link {
        font-size: 1.1em;
        padding: 12px 24px;
    }
}
