       @font-face {
    font-family: 'phonic-medium';
    src: url('assets/font/Phonic-Medium.woff2') format('woff2');
    
}
@font-face {
    font-family: 'Lateral-StandardRegular';
    src: url('assets/font/Lateral-StandardRegular.woff2') format('woff2');
    
}

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

body {
    font-family: "Lateral-StandardRegularr", sans-serif;
    background-color: #ffffff;

}

/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 1); /* Fondo blanco al 100% */
    z-index: 9999;
    filter: blur(100px); /* Inicio con desenfoque intenso */
    transition: opacity 1s ease-out, filter 1s ease-out; /* Suaviza el desenfoque y la opacidad */
    opacity: 1; /* Visible al inicio */
}

/* Main Content: Para prevenir el scroll durante la carga */
body.loading {
    overflow: hidden; /* Desactiva el scroll mientras carga */
}

body.loaded main {
    filter: blur(0); /* Quita el blur del contenido principal */
}

/* Estilos de la galería */


/* Header */

header {
  position: fixed;
  top: 50%;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% - 64px);
  z-index: 1000;
  mix-blend-mode: difference;
  
}

    header h1, header nav a {
      font-size: 1rem;
      text-decoration: none;
      color: #ffffff;
      
    }

    header nav a {
      margin-left: 20px;
      transition: .2s;
    }

    header h1 a {
      color: #ffffff;
      font-size: 1rem;
      font-weight: normal;
      text-decoration: none;
      transition: .2s;
      
    }

header nav a:hover{
        filter: blur(2px);
    }
header h1 a:hover{
        filter: blur(2px);
    }

/* Sección de Información */
#info-section {
    display: none;
    position: fixed;
    top: 50%;
    left: 64px;
    right: 64px;
    width: calc(100% - 128px);
    z-index: 500;
    text-align: left;
}

#info-section .info-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
}

#info-section .left-column {
    width: 28%;
}

#info-section .right-column {
    width: 18%;
}

#info-section h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.nav-title{
    font-size: 1rem;
    line-height: 1.5;
    color: #949494;
}
.text {
    font-size: 1rem;
    line-height: 1.5;
    color: #3C3C3B;
}


/* Desenfoque */
body.blur-main main {
    filter: grayscale(100%) blur(20px);
    pointer-events: none;
    opacity: 0.5;
}



/* Main Styles */


/* Footer Styles */
footer {
    position: fixed;
    bottom: 0;
    left: 32px;
    right: 32px;
    width: calc(100% - 64px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
}

footer .left,
footer .center,
footer .right {
    font-size: 0.9rem;
}
footer .left{
    display: flex;
    align-items: center;
    gap: 6px;
}
footer .left img{
    width: 16px;
}

footer a {
    text-decoration: none;
    color: #000000;
    transition: .2s;
}
footer a:hover {
    filter:blur(2px);
}

/*single*/

/*fin single*/

/* Media query para pantallas móviles (max-width: 768px) */
@media (max-width: 768px) {
    header{
        top:16px;
        width: 100%;
        display: inline-block;
        left: 0px;
        right: 0px;
    }
    header h1{
        width: 90%;
        margin:0 auto;
        text-align: center;
        margin-bottom: 16px;
    }
    nav{
        display: flex;
        width: 90%;
        align-items: flex-start;
        justify-content: center;
        gap: 48px;
        margin: 0 auto;
    }
    header nav a{
        margin-left: 0px;
    }
    
    #info-section{
        left: 0px;
        right: 0px; 
        top: 30%;
        width: 90%;
        margin: 0 auto;
    }
    #info-section .info-container{
        flex-direction: column;
        align-items: center;
    }
    #info-section .left-column, #info-section .right-column{
        width: 100%;
        text-align: center;
    }
    /* Ajuste para la galería en móviles */
    
    footer{
        width: 90%;
        left: 0px;
        right: 0px;
        margin: 0 auto;
        text-align: center;

    }
    
    footer .right {
        display: inline-block; /* Alinea los dos elementos horizontalmente */
        
    }

}