
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}









/* LOGO */
h1.m-0.display-4.text-uppercase.text-white {
    font-family: "Zilla Slab", serif;
    font-weight: 300;
    font-style: normal;
    margin-left: 5%;
    font-size: 34px;
}




/*titulo en medio de imagen principal */
h1.display-1.text-white.m-0 {
    font-family: "Zilla Slab", serif;
    font-weight: 10px;
    font-style: normal;
    margin-left: 25%;
    font-size: 84px;
}

/* Estilo base para pantallas grandes */
h1.display-1.text-white.m-0 {
    font-family: "Zilla Slab", serif;
    font-weight: 300;         /* Usamos 300 porque '10px' no es válido para font-weight */
    font-style: normal;
    margin-left: 5%;
    font-size: 84px;
}

/* Pantallas medianas (tabletas: <= 991px) */
@media (max-width: 991px) {
    h1.display-1.text-white.m-0 {
        font-size: 60px;
        margin-left: 4%;
    }
}

/* Pantallas pequeñas (teléfonos: <= 767px) */
@media (max-width: 767px) {
    h1.display-1.text-white.m-0 {
        font-size: 40px;
        margin-left: 3%;
        text-align: center;
    }
}

/* Teléfonos muy pequeños (<= 480px) */
@media (max-width: 480px) {
    h1.display-1.text-white.m-0 {
        font-size: 28px;
        margin-left: 0;
        text-align: center;
    }
}





/* EFECTO DE ENTRADA */
body {
    opacity: 0;
    animation: fadeInBody 1s ease-in forwards;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

.title1-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    gap: 10px;


}



.Cuadro1{
    background-color: black;
}

.about-title {
    font-size: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #D9D9D9;
    margin: 0;
}

.about-subtitle {
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: lighter;
    color: #E5E5E5;
    margin: 0;
}

.quote {
    margin-top: 5%;
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: lighter;
    color: #8e8b8b;
}

@media (max-width: 768px) {
    .title1-container {
        height: 50vh;
        margin-top: 10%;
    }

    .about-title {
        font-size: 42px;
       
    }

    .about-subtitle {
        font-size: 35px;
    }

    .quote {
        font-size: 16px;
        margin-right: 10%;
    }
}

.grid-asia1, .grid-asia2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 10px;
    max-width: 90%;
    margin: auto;
    margin-bottom: 5%;
    margin-top: 5%;
}

.image-asia1 {
    grid-column: span 3;
}

.image-asia1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-asia2, 
.image-asia3, 
.image-asia4, 
.image-asia5, 
.image-asia6, 
.image-asia8, 
.image-asia9, 
.image-asia10, 
.image-asia11, 
.image-asia12, 
.image-asia13,
.image-asia14 {
    grid-column: span 1;
}

.grid-asia1 img, .grid-asia2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-asia3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.image-asia11 img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .image-asia3 {
        padding: 10px;
    }
}

.gridasia3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 200px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.gridasia3 img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gridasia3 {
        gap: 40px;
    }

    .gridasia3 img {
        height: 300px;
    }
}

.filemuseo {
    max-width: 70%;
    display: block;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .filemuseo {
        height: auto;
    }
}

.filemuseo2 {
    max-width: 150%;
    width: 120%;
    display: block;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .filemuseo2 {
       
        width: 100%;
        max-width: 150%;
    }
}





.image-footer {
    width: 100%;
    height: 1400px;
    background: url('https://sosupics.com/PORTFOLIO/ASIA/EDITADAS/IMG_20240420_194827.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 20px;
}

.footer-text {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    font-family: Arial, sans-serif;
}

