
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}


.header {
    background-image: url("./imagen/fuego2.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.header h1 {
    font-size: 2.5em;
    position: relative;
    z-index: 1;
}

.update-date {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    font-style: italic;
}

/* Contenido principal */
.content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.intro {
    max-width: 60%;
}

.calendar {
    max-width: 60%;
}

.note {
    font-style: italic;
    color: gray;
    margin-bottom: 10px;
}

.festival-list {
    list-style: none;
    padding: 0;
}

.festival-list li {
    margin-bottom: 10px;
}

/* Formulario de Contacto */
.contact-form {
    background-color: #fff8e1;
    padding: 20px;
    border: 1px solid #ffc107;
    border-radius: 8px;
    max-width: 30%;
}

.contact-form h3 {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.contact-form textarea,
.contact-form input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.contact-form button {
    width: 100%;
    background-color: #ffc107;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #e0a800;
}

/* Botón "ir arriba" */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 50%;
    font-size: 1em;
    cursor: pointer;
    display: none;
}

.scroll-top:hover {
    background-color: #555;
}

/* Mostrar botón "ir arriba" al hacer scroll */
body.onscroll .scroll-top {
    display: block;
}
