* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Gilda Display;
    background-color: #ffffff;
    color: #7d683b;
    line-height: 1.6;
}

.contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Encabezado */
header {
    text-align: center;
    padding: 60px 0 30px;
}

.nombres-pareja {
    line-height: 1;
    margin: 16px auto;
    color: #7D683B;
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 8px;
    padding-bottom: 15px;
}

.informacion-boda {
    font-size: 16px;
    letter-spacing: 1px;
}

.fecha-ubicacion {
    line-height: 1;
    margin: 8px 0;
    font-family: Cormorant Garamond;
    letter-spacing: 3px;
    color: #7D683B;
    font-size: 21px;
    line-height: 21px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Navegación - Efecto hover mejorado */
nav {
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
    display:block;
}

.contenedor-navegacion {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-family: Cormorant Garamond;
    letter-spacing: 2px;
    color: #7D683B;
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
    line-height: 1;
    margin: 0 auto;
    padding: 8px 8px 12px; /* Aumenté el padding-bottom para más espacio */
    text-decoration: none;
    transition: all 0.25s;
    width: fit-content;
}

.elemento-navegacion {
    margin: 0 15px;
    cursor: pointer;
    transition: color 0.3s;
    position: relative; /* Necesario para el pseudo-elemento */
    padding-bottom: 8px; /* Espacio adicional para el subrayado */
}

/* Efecto hover mejorado con línea personalizada */
.elemento-navegacion:hover {
    text-decoration: none; /* Eliminamos el subrayado por defecto */
}

.elemento-navegacion:hover::after {
    content: '';
    position: absolute;
    bottom: 0; /* Posicionamos en la parte inferior */
    left: 0;
    width: 100%;
    height: 3px; /* Línea más gruesa */
    background-color: #7D683B; /* Mismo color que el texto */
    border-radius: 2px; /* Bordes redondeados */
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

/* Opcional: Efecto de animación al hacer hover */
.elemento-navegacion::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #7D683B;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}




/* Sección Hero */
.hero {
    position: relative;
    height: 80vh;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Secciones de contenido */
.seccion {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.titulo-seccion {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    font-family: Gilda Display;
    color: #7D683B;
}

.contenido-seccion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: Cormorant Garamond;
    line-height: 1.8;
    font-size: 18px;
}

/* Galería */
.galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.elemento-galeria {
    height: 250px;
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-family: Cormorant Garamond;
    border-radius: 5px;
}

/* Pie de página */
footer {
    padding: 40px 0;
    text-align: center;
    font-family: Cormorant Garamond;
    font-size: 14px;
    color: #7D683B;
}

/* Media Queries */
@media (max-width: 768px) {
    .nombres-pareja {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .elemento-navegacion {
        margin: 0 10px;
        font-size: 13px;
    }
    
    .galeria {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nombres-pareja {
        font-size: 22px;
    }
    
    .contenedor-navegacion {
        flex-direction: column;
        align-items: center;
    }
    
    .elemento-navegacion {
        margin: 5px 0;
    }
    
    .galeria {
        grid-template-columns: 1fr;
    }
}


@media (min-width: 768px) {
    .css-89kbvu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 0 16px;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 52px auto 20px;
    }
}

@media (min-width: 640px) {

.css-7lxdao {
    border-bottom: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 72px 20px 0;
    width: 315px;
    border-right: 1px solid #7D683B;
}

}

.css-89kbvu {
    letter-spacing: 2.23px;
    line-height: 1.3;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 12px auto;
    padding: 0 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-family: Gilda Display;
    color: #7D683B;
    font-size: 38px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
}


.css-1e30inf {
    
    text-align: center;
}

@media (min-width: 768px) {
    .css-19cvhdm {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px 0 20px 72px;
        width: 315px;
    }
}

.css-1wdcik1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    margin: 48px 0 24px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.css-15r1rym {
    margin: 8px 0;
}

.css-ufm1t5 {
    line-height: 1;
    margin: 32px 0 8px 0;
    font-family: Gilda Display;
    color: #7D683B;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.css-w4zvyh {
    margin: 8px 0;
    font-family: Cormorant Garamond;
    letter-spacing: 3px;
    color: #7D683B;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}

.css-w715lq {
    margin: 4px 0;
    font-family: Cormorant Garamond;
    letter-spacing: 2px;
    color: #7D683B;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
}

.css-ci1e0s {
    margin: 8px 0;
    max-width: 460px;
    white-space: pre-line;
    font-family: Cormorant Garamond;
    letter-spacing: 2px;
    color: #7D683B;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
}

.css-46vu21 {
    padding: 32px 16px;
    display: block;
    min-width: 310px;
    width: 310px;
    text-align: end;
}

.css-1votii7 {
    margin: 12px 0;
    line-height: 1;
    font-family: Cormorant Garamond;
    letter-spacing: 3px;
    color: #7D683B;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.css-1dtrpt2 {
    padding: 32px 16px;
}

.css-ifwy3a {
    margin: 12px 0;
    font-family: Cormorant Garamond;
    letter-spacing: 2px;
    color: #7D683B;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
}

.css-1wr11k6 {
    margin: 2px 0;
}

.css-sz6vxp {
    padding: 0 18px 16px;
    font-family: Gilda Display;
    color: #7D683B;
    font-size: 55px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.css-408rqn {
    line-height: 1.75;
    font-family: Cormorant Garamond;
    letter-spacing: 1px;
    color: #7D683B;
    font-size: 15px;
    font-weight: 600;
    margin: 12px 0;
    text-align: center;
}

.css-1lyvt0g {
    padding: 20px 18px 0;
    font-family: Cormorant Garamond;
    letter-spacing: 3px;
    color: #7D683B;
    font-size: 21px;
    line-height: 21px;
    font-weight: 600;
    text-transform: uppercase;
    border-top: 1px solid #7D683B;
}

.css-10xb0p9 {
    letter-spacing: 3.4px;
    line-height: 1;
    margin: 52px auto;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}


        /* Estilos adicionales para las dos columnas */
        .ceremonia-container {
            display: flex;
            margin: 20px 0;
            border-radius: 4px;
            overflow: hidden;
            border-bottom: 1.5px solid rgba(125, 104, 59, 15%);
        }
        
        .hora-columna {
            flex: 0 0 40%;
            padding: 20px;
            text-align: center;
            display: flex;
            justify-content: right;
            font-size: 1.5em;
            font-family:Cormorant Garamond;
        }
        
        .detalles-columna {
            flex: 1;
            padding: 20px;
        }
        .divide{
                 border-bottom: 1.5px solid rgba(125, 104, 59, 15%);
        }
        
        .detalles-columna h4 {

    margin: 12px 0;
    line-height: 1;
    font-family: Cormorant Garamond;
    letter-spacing: 3px;
    color: #7D683B;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
        }
        
        .detalles-columna .lugar {

            margin-bottom: 5px;
        }
        
        .detalles-columna .direccion {

            font-size: 0.9em;
        }
        
  .css-78076r {
    word-break: break-word;
    padding: 0px 80px;
    margin: 1.1em auto;
    font-family: "Cormorant Garamond";
    letter-spacing: 2px;
    color: rgb(125, 104, 59);
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
}

  .peque {
    font-size: 17px;
    }
  .grande {
    font-size: 19px;
    font-weight: bold;
    font-family: Arial;
    letter-spacing: 3px;
  }
  
  .subraya{
    text-decoration:underline;
  }
  
  .subraya2{
text-decoration: underline;
    text-underline-offset: 10px; /* Ajusta este valor */
  }
  
    .justifica{
    text-align: justify;
    padding:2px 180px;
  }


a {
    background-color: transparent;
    color: inherit;
    text-decoration: inherit;

}
p {
    font-size: var(--tkww-union-typography-scale-300-font-size, 1.1rem);
    line-height: var(--tkww-union-typography-scale-300-line-height, 1.5);
}

/* ========== MENÚ HAMBURGUESA PARA MÓVIL (700px o menos) ========== */
@media (max-width: 768px) {
    .contenedor {
        padding: 0 15px;
    }
    
    /* Header móvil */
    header {
        padding: 30px 0 20px;
        position: relative;
    }
    
    .nombres-pareja {
        font-size: 32px;
        letter-spacing: 4px;
        line-height: 1.2;
        margin: 12px auto;
        padding-bottom: 10px;
    }
    
    .fecha-ubicacion {
        font-size: 18px;
        letter-spacing: 2px;
        line-height: 1.3;
    }
    

    .cerrar{
        display:none;
    }    

    
@media(max-width:768px){  

    .barra {
        font-size: 2.4em;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;

        position: sticky;
        top: 0;
        background: white;
        z-index: 100;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

.hamburguesa {
    cursor: pointer;
}

    .titulo {

        position: absolute;
        left: 100px;

    }
    
    nav{
        display:none;
        z-index:1000;
        position: absolute;
        top: 0px;
        left:0px;
        background-color:#ffffff;
        width:100%;
        height:100%;
    }
    .contenedor-navegacion{
        text-align:center;
        padding: 30px 50px 50px 50px;
        display:block;
        width: unset;
    } 
    
    .elemento-navegacion{
        font-family: Cormorant Garamond;
        letter-spacing: 2px;
        color: #7D683B;
        font-size: 19px;
        font-weight: 600;
        text-transform: none;
        border-bottom: 2px solid transparent;
        display: block;
        letter-spacing: 2px;
        line-height: 2;
        width:100%;

    } 
    
    .elemento-navegacion:hover{
        background-color:#eeeeee;
    }  
  
.elemento-navegacion:hover::after {
    content: unset;
    position: unset;
    bottom: 0; /* Posicionamos en la parte inferior */
    left: 0;
    width: 100%;
    height: unset; /* Línea más gruesa */
    background-color: #ffffff; /* Mismo color que el texto */
    border-radius: unset; /* Bordes redondeados */
    transform: unset;
    transition: unset;
}

/* Opcional: Efecto de animación al hacer hover */
.elemento-navegacion::after {
    content: unset;
    position: unset;
    bottom: unset;
    left: unset;
    width: 100%;
    height: unset;
    background-color: #ffffff;
    border-radius: unset;
    transform: unset;
    transition: unset;
    transform-origin: unset;
}
  

    .cerrar{
        position: absolute;
        top: 5px;
        left: 5px;
        display:block;
        font-size:2em;
        font-family:Arial;
        font-weight: lighter;
        margin: 2px 2px 10px 2px;
        cursor:pointer;
    }
    
    
    
    .nombres-pareja {
        font-size: 50px;
    }
    
    img{
        min-width:80%;
    }
    
    #fondo{
        min-height:30%;
    }
} 

@media(min-width:769px){
    .barra{
        display:none;
    }
} 
    
  
  @media(max-width:600px){
    img{
        min-width:90%;
    }
} 

  @media(max-width:500px){
    img{
        min-width:99%;
    }
} 
}