
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f1ec;
    color: #333;
}

.hero {
    background: url('../img/afiche.jpg') center/cover no-repeat;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 40px;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 0;
}

.hero h2 {
    font-weight: 300;
    margin-top: 10px;
}

.fecha {
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contenido {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 10%;
    gap: 40px;
    background: white;
}

.col-texto {
    flex: 1 1 400px;
}

.col-texto h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.col-texto p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.evento h4 {
    margin-top: 25px;
    font-weight: 600;
}

.col-imagen {
    flex: 1 1 350px;
}

.col-imagen img {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 6px;
}

footer {
    background: #1f1f1f;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .contenido {
        padding: 40px 5%;
    }
}
