body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    background-color: #f8f4f0;
    text-align: center;
}

h3 {
    color: gray;
}

a {
    color: #8b5e3c;
    font-weight: bold;
    text-decoration: none;
}
/* Contenedor principal */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Encabezado */

.hero {
    background-repeat: no-repeat;
    background: fixed;
    background-position: center;
    color: white;
    padding: 50px 20px;
    background-image: url("mulltimedia/banner.jpg"); 
}

.hero h2 {
    font-size: 25px;
    margin: 0;
    padding: 20px 20px;
    color: white;
    filter: none;
    font-style: italic;
}

.hero h1 {
    font-size: 45px;
    margin: 0;
    color: white;
    filter: none;
}

.hero p {
    font-size: 20px;
    font-style: italic;
    color: white;
    filter: none;
}

.hero img {
    width: 325px;
    height: auto;
    background-size:auto;
    backdrop-filter: grayscale(1) contrast(1.5) brightness(0.75);
    filter: none;
}

/* Evento */


.evento img {
    height: 300px;
    width: 350px;
    border-radius: 25px;
    box-shadow: 10px 10px 10px rgba(32,32,32,0.3);
}

.evento p {
    margin: 20px;
}

/* Hospedaje Recomendado */

#hospedaje-section {
    background-image: url("mulltimedia/puebla.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: fixed;
}

#hospedaje-section h2 {
    color: black;
}

.hotel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 20px 0;
    max-width: 600px;
    width: 90%;
    background-color: #f8f4f0;
    text-align: justify;
}

.hotel img {
    width: 200px;
    height: 175px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 15px;
}

.hotel-info {
    flex: 1;
}

.hotel-info h3 {
    margin: 0;
    color: #8b5e3c;
    font-size: 20px;
}

.hotel-info p {
    margin: 5px 0;
    color: #444;
    font-size: 16px;
}

.hotel-info a {
    display: inline-block;
    margin-top: 5px;
    color: #8b5e3c;
    text-decoration: none;
    font-weight: bold;
}

.hotel-info a:hover {
    text-decoration: underline;
}

/* Familia (padres y padrinos) */

.familia {
    text-align: center;
    margin: 40px 0;
    background-color: rgba(0, 0, 0, 0.05);
}

.padrinos-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.padrino {
    text-align: center;
}

.padrino img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #8b5e3c;
}

.padrino .nombre {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    color: #8b5e3c;
}

.padrino .rol {
    font-size: 16px;
    color: #444;
    margin-top: 2px;
}

/* Itinerario */

.itinerary h2 {
    color: #8b5e3c;
    font-size: 24px;
    margin-bottom: 10px;
}

.itinerary h3 {
    color: #444;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

#itinerario-section {
    background-image: url("mulltimedia/photo_2.jpg");
    background-position: center;
    background-size: contain;
}

.schedule-section {
    padding: 2px 0 13px 0;
    text-align: center;
    margin: 0 0 0 0;
    width: 60%;
    border-radius: 20px;
}

.schedule {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}


/* Estilos del evento */

.schedule-event {
    flex: 1;
    color: #444;
    text-align: left;
}


/* Botón de contacto WhatsApp*/

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s;
    width: fit-content;
    margin: 20px auto;
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.whatsapp-button:hover {
    background-color: #1ebd5a;
    transform: scale(1.05);
}


/* Secciones */

section {
    margin: 30px 0;
    padding: 20px;
    background: white;
    /*border-radius: 10px;*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #8b5e3c;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    color: #444;
}

/* Footer */
footer {
    background-image: url(mulltimedia/banner.jpg);
    color: white;
    padding: 20px;
    font-size: 18px;
}

footer p {
    color: white;
}
/* Diseño responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

/* Pop Up */

/* Fondo gris semitransparente */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Cuadro de pop-up */
.popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 400px;
}

/* Botón */
.popup button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    background-color: #8b5e3c;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Efecto hover en el botón */
.popup button:hover {
    background-color: #6a442a;
}

/* Estilos del botón de mute */
#mute-button {
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    background: #8b5e3c;
    color: white;
    border: none;
    border-radius: 10px 0px 0px 10px;
    padding: 10px 25px 10px 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 1;
}

/* Efecto hover */
#mute-button:hover {
    background: #6a442a;
}

/* Carrusel de fotos */

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f8f4f0;
    padding: 20px 0;
}

.carousel {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
    will-change: transform;
}

.random-size {
    height: 300px;
    width: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.direcciones p {
    text-align: justify;
    justify-content: center;
    align-items: center;
}

.frases {
    justify-content: center;
    align-items: center;
    font-style: italic;
    background-color:#ffff;
}