/* ─── Reset & Base ─────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    background-image: url('/static/img/fondo-galaxia2.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ─── Logos ────────────────────────────────────────────────────────── */
.logo-monogram {
    width: 100px;
    max-width: 20vw;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.logo-wordmark {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-bottom: 4rem;
}

/* ─── Typewriter ───────────────────────────────────────────────────── */
.typewriter {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.2rem, 4vw, 2.5rem); /* Ajustado para mejor lectura en móvil */
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    min-height: 3.5rem;
    font-weight: 400;
}

.cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ── Coordinates ──────────────────────────────────────────────────── */
.coordinates {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    color: #aaaaaa; /* Ligeramente más claro para contraste sobre galaxia */
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.location-date {    
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.8rem, 2vw, 1.2rem); /* Ligeramente más pequeño que las coordenadas */
    color: #aaaaaa; /* Un gris un poco más apagado para jerarquía */
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    text-transform: uppercase;
    }

/* ─── Tarjeta VIP ──────────────────────────────────────────────────── */
.vip-card {
    width: 100%;
    max-width: 380px; /* Tamaño ideal para que parezca una tarjeta real */
    height: auto;
    margin-bottom: 3rem;
    border-radius: 12px;
    /* Sutil brillo blanco para destacar como "VIP" sin romper el B/N */
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08), 
                0 2px 8px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15), 
                0 4px 12px rgba(255, 255, 255, 0.1);
}

/* ─── CTA Button ──────────────────────────────────────────────────── */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.cta-button:active {
    transform: translateY(0);
}
 
/* ─── Footer ─────────────────────────────────────────────────────── */
footer {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #666666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ─── Responsive: Ajustes específicos para móviles ───────────────── */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .logo-wordmark {
        max-width: 300px;
        margin-bottom: 3rem;
    }
    
    .typewriter {
        margin-bottom: 2.5rem;
        min-height: 3rem;
    }
    
    .coordinates {
        margin-bottom: 2rem;
    }
    
    .vip-card {
        max-width: 320px; /* Ligeramente más pequeña en móvil para no ocupar toda la pantalla */
        margin-bottom: 2.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        margin-bottom: 3rem;
        width: 100%;
        max-width: 320px;
    }
    .location-date {
        font-size: 0.75rem; /* Tamaño mínimo legible en móvil */
        letter-spacing: 0.1em; /* Reducido para que no se corte en pantallas pequeñas */
        margin-bottom: 2rem;
    }
   
}
