/* Fondo temático de febrero */
body {
    margin: 0;
    /*background: linear-gradient(to bottom, #FF1493, #FF69B4); /* Rosa y rosa claro */
    background: linear-gradient(to bottom, #FF0000, #FF69B4);
    color: white;
    font-family: 'Arial', sans-serif;
    /*overflow: hidden; /* Evitar scroll por los corazones */
}

/* Decoración en el encabezado */
#header-decoration {
    background: linear-gradient(to right, #FF69B4, #FF0000, #FF69B4); /* Rojo y rosa */
    /*height: 50px;*/
    /*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);*/
    min-height: 50px;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header-decoration h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* Decoración con corazones */
.heart {
    position: absolute;
    top: -10px;
    font-size: 20px;
    color: #FF1493; /* Color rosa oscuro */
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Variaciones para los corazones */
.heart:nth-child(odd) {
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
}

.heart:nth-child(even) {
    animation-duration: 15s;
    animation-timing-function: linear;
}

/* Estilos para los botones */
.btn {
    background-color: #FF1493 !important; /* Rosa oscuro */
    border-color: #FF69B4 !important; /* Rosa claro */
    color: #fff !important; /* Texto blanco */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Sombra para destacar */
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    background-color: #FF69B4 !important; /* Rosa claro al pasar el mouse */
    transform: scale(1.05); /* Efecto de aumento */
}

/* --- AGREGAR ESTO AL FINAL DE css/02_febrero.css --- */

/* 1. Arreglar el mensaje del encabezado (Amor y Amistad) */
#header-decoration h1 {
    color: #ffffff !important; /* Texto blanco */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Sombra oscura para contraste */
    font-weight: bold;
}

/* 2. Arreglar el Nombre (Laurita) y el Teléfono */
.titulo, 
.subtitulo {
    color: #ffffff !important; /* Texto blanco */
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra suave para darle volumen */
}

/* Opcional: Si el botón de WhatsApp se pierde, puedes ponerle un borde blanco */
.whatsapp {
    border: 2px solid #ffffff !important;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}