/* Contenedor principal */
.reveal {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5efe6; /* Fondo en tono beige */
}

/* Título principal */
.text-info {
    font-size: 4rem;
    font-weight: bold;
    color: #8a6f56;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}

/* Tarjeta de evento */
.event-card {
    background: #fff;
    border: 3px solid #d4af37; /* Borde dorado */
    border-radius: 15px;
    padding: 25px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Título dentro de la tarjeta */
.event-card h2 {
    font-size: 3rem;
    margin-top: -10px;
    font-family: 'Times New Roman', Times, serif;
    color: #7a6652;
    margin-bottom: 10px;
}

/* Fecha y ubicación */
.event-date, .event-location {
    font-size: 3rem;
    font-weight: bold;
    color: #5a4a42;
    margin-bottom: 10px;
}

/* Imagen del salón */
.event-card img {
    width: 100%;
    border-radius: 10px;
    margin: 15px 0;
}

/* Dirección */
.event-card p {
    font-size: 25px;
    color: #4d3d33;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
}

/* Botón de ubicación */
.event-button {
    display: inline-block;
    background: #d8c3a5;
    color: #4d3d33;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

/* Efecto hover en el botón */
.event-button:hover {
    background: #c3a48f;
}

/* Responsivo */
@media (max-width: 600px) {
    .text-info {
        font-size: 2.5rem;
        margin-top: -20px;
    }

    .event-card {
        padding: 20px;
        width: 90%;
    }

    .event-card h2 {
        font-size: 35px;
    }

    .event-date, .event-location {
        font-size: 13px;
        margin-bottom: -15px;
    }

    .event-button {
        font-size: 20px;
        padding: 10px 20px;
    }
}

/*NO KIDS*/

/* Sección "Solo Adultos" */
.no-kids-section {
    text-align: center;
    padding: 30px 20px;
}

.flor-d{
    width: 200px;
    margin-top: -50px;
    height: auto;
}

/* Rectángulo con borde dorado */
.no-kids-text {
    display: inline-block;
    background: #fff;
    border: 3px solid #d4af37; /* Borde dorado */
    border-radius: 10px;
    padding: 20px 30px;
    font-size: 45px;
    font-family: 'Times New Roman', Times, serif;
    color: #5a4a42;
    max-width: 1500px;
    width: 90%;
    font-style: italic;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsivo */
@media (max-width: 600px) {
    .no-kids-text {
        margin-top: -20px;
        font-size: 25px;
        padding: 15px 20px;
    }
}

/*DRESS CODE SECTION*/

.dress-code-section {
    text-align: center;
    padding: 40px 20px;
    margin-top: -20px;
}

.dress-code-container {
    background: #fff;
    border: 3px solid #d4af37; 
    border-radius: 15px;
    padding: 30px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dress-code-title {
    font-size: 50px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    color: #8a6f56;
    margin-bottom: 20px;
}

.dress-code-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.dress-code-item {
    text-align: center;
    width: 45%;
}

.dress-code-item h3 {
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
    color: #7a6652;
    margin-bottom: 10px;
}

.dress-code-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain; 
    object-position: center; 
    border: 3px solid #d4af37;
    background-color: #fff; 
    padding: 5px; 
    margin-bottom: 10px;
}

.dress-code-item p {
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    color: #5a4a42;
    margin-bottom: 15px;
}

.dress-code-button {
    display: inline-block;
    background: #d8c3a5;
    color: #4d3d33;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    text-decoration: none;
    transition: background 0.3s;
}

.dress-code-button:hover {
    background: #c3a48f;
}

@media (max-width: 600px) {
    .dress-code-container {
        padding: 20px;
    }

    .dress-code-options {
        flex-direction: column;
        align-items: center;
    }

    .dress-code-item {
        width: 100%;
    }

    .dress-code-item img {
        width: 150px;
        height: 150px;
        margin-bottom: -10px;
    }
}

/* Animación de aparición */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    /* Inicia desde abajo */
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Cuando el elemento es visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
