body {
    margin: 0;
    font-family: Arial, sans-serif;
}
/* IMAGEN DE FONDO */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("img/Jardin_El_Capricho_Water_fontain01.jpg");
    background-size: cover;
    background-position: center;

    filter: blur(2px) brightness(0.6);
    transform: scale(1.05); /* evita bordes raros del blur */

    z-index: -2;
}

/* CAPA OSCURA ENCIMA DEL BLUR */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.35);

    z-index: -1;
}
.container {
    display: flex;
    height: 100vh;
}

/* IZQUIERDA (70%) */
.hoy {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
.mes{
    width: 15%;           
    display: flex;
    align-items: center;  
    justify-content: center; 

    font-size: 5rem;        
    font-weight: bold;
    color: white;

    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);

}
.card {
    width: 50%;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    align-items: center;
    display: flex;
}
/* Día grande a la izquierda */
.dia-grande {
    font-size: 3.5rem;
    font-weight: bold;
    min-width: 80px;
    align-items: center;
    justify-content: center;
    color: #000000;
}

/* Contenido derecha */
.contenido {
    flex: 1;
}

.hora {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.card h1 {
    margin: 0;
    font-size: 1.5rem;
}

.meta {
    font-size: 1rem;
    opacity: 0.8;
}

.descripcion {
    font-size: 0.9rem;
    opacity: 0.6;
}
.card h1 {
    margin-top: 0;
    font-size: 2.5em;
}

.meta {
    font-size: 1.2em;
    color: #555;
    margin: 10px 0;
}

.descripcion {
    margin-top: 20px;
    font-size: 1.2em;
}

/* DERECHA (30%) */
.proximos {
    width: 20%;
    background: #222;
    color: white;
    padding: 20px;
}

.proximos h2 {
    margin-top: 0;
}

.evento {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
}