/* Reset de estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #111111;
}

/* Fondo con una imagen elegante de moda masculina + efecto parallax */
body {
    background-image: url('https://images.unsplash.com/photo-1617137968427-85924c800a22?q=80&w=2000&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Capa oscura semitransparente para que el logo blanco destaque */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); 
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
}

.logo {
    max-width: 280px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease forwards;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #ffffff;
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
}

/* Estilos del contador */
.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: fadeIn 2.5s ease forwards;
    opacity: 0;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    min-width: 70px;
    line-height: 1;
}

.time-box p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999999;
    margin-top: 10px;
    font-weight: 600;
}

/* Pie de página y Redes Sociales */
footer {
    animation: fadeIn 3s ease forwards;
    opacity: 0;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

footer p {
    font-size: 0.8rem;
    color: #888888;
}

/* Animaciones */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Adaptación para dispositivos móviles */
@media (max-width: 768px) {
    .title { font-size: 2.2rem; letter-spacing: 5px; }
    .countdown { gap: 20px; }
    .time-box span { font-size: 2rem; }
}

@media (max-width: 480px) {
    .title { font-size: 1.8rem; letter-spacing: 3px; }
    .countdown { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .time-box { margin: 5px 10px; }
}
