/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background-color: #1a1a1a; /* Fondo oscuro elegante */
    background-image: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&q=80&w=1920'); /* Imagen de comida/restaurante de fondo */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Capa oscura para que el texto resalte */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

/* Logo */
.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* Títulos */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
    color: #d4a373; /* Tono ocre/tierra que combina con tu logo */
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Cuenta Regresiva */
.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.3);
    padding: 15px;
    min-width: 100px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4a373;
}

.time-box p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-text {
    font-weight: 600;
    margin-top: 5px;
    color: #d4a373;
}

/* Adaptabilidad para Móviles */
@media (max-width: 600px) {
    .title { font-size: 2rem; }
    .countdown-grid { gap: 10px; }
    .time-box { min-width: 70px; padding: 10px; }
    .time-box span { font-size: 1.5rem; }
    .logo { max-width: 180px; }
}

/* Estilos para Redes Sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 163, 115, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(212, 163, 115, 0.3);
}

.social-links a:hover {
    background: #d4a373;
    color: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
}

.footer p {
    margin-top: 40px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}