/* Estilo General */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Contenedor de la Invitación */
.invitation-container {
    background: #ffffff;
    max-width: 1000px;
    width: 100%;
   /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
    /*border-radius: 10px;*/
    overflow: hidden;
}

/* Encabezado */
.header {
    text-align: center;
    /*padding: 20px;*/
    background-color: #ffffff;
    color: #333;
}

.header .pre-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    color: #145c94; /* Gris palo rosa */
}

.header .title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin: 10px 0;
    color: #145c94; /* Gris palo rosa oscuro */
}

.header .date {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    color: #145c94; /* Gris palo rosa */
}

.header video.responsive-video {
    width: 100%;
    height: auto;
}

/* Contenido Principal */
.main-content {
    /*padding: 20px;*/
    text-align: center;
    margin: 0 auto;
}

.main-content2 {
    padding: 30px;
    text-align: center;
    margin: 0 auto;
}

.main-content3 {
    padding: 10px;
    text-align: center;
    margin: 0 auto;
}

.imagenes {
    width: 100%;
    text-align: center;
    cursor: pointer;
    
}

section.imagenes img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}


/*
.invitation-details {
    margin-bottom: 40px;
}*/

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #0b5f17; /* Gris palo rosa oscuro */
}

.details-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.details-content img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.event-details {
    width: 50%;
}

.event {
    margin-bottom: 20px;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: #056b25; /* Gris palo rosa oscuro */
}

/* Sección de Confirmación de Asistencia */
.container {
    background: #b1d4b902;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.container:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 1rem;
    color: #4a4a4a;
    text-align: left;
    margin-bottom: 5px;
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

select, input[type="number"] {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

button {
    padding: 15px 20px;
    font-size: 1rem;
    color: white;
    background-color: #06a22f; /* Gris palo rosa oscuro */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0a7537; /* Gris palo rosa más oscuro */
}

.button2 {
    display: inline-block;
    padding: 15px 20px;
    font-size: 16px;
    color: white;
    background-color: #0e6e2b;
    border: none;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 200px;
}

.button:hover {
    background-color: #0056b3;
}

input, select, button {
    transition: all 0.3s ease;
}

.ubicacion {
    text-align: center;
    background-color: #ffffff;
    color: #504f4f;
    font-size: 1.5rem;
}

/* Pie de Página */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #0a7537; /* Gris palo rosa */
    color: #ffffff;
}

.footer p {
    margin: 0;
    font-size: 1.2rem;
}

/* Media Queries para Responsividad */
@media (max-width: 600px) {
    .header .title {
        font-size: 2.5rem;
    }

    .header .date {
        font-size: 1rem;
    }

    .details-content {
        flex-direction: column;
    }

    .details-content img,
    .event-details {
        width: 100%;
    }
}

