body {
    background-image: url(../../ImagenesProyecto/nepal_roofs.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(143, 138, 138, 0.789);
    background-blend-mode: lighten;
    /* Remove fixed height and margin-bottom from body */
    min-height: 100vh;
    margin: 0;
    padding-top: 0; /* Remove padding-top to prevent issues with sticky navbar */
}

/* TITULO */
.white-strip {
  background-color: white; /* franja blanca */
  padding: 6px 0;           /* más estrecha */
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.white-strip h2 {    
  align-items: center;
  justify-content: center;  
  text-align: center;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000; 
  margin-top: 10px;
}


#texto {
    margin: 5%;
}

.med_gob_texto {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 2rem 1rem;
    font-family: 'Glacial Indifference', 'Helvetica Neue', Helvetica, Arial, sans-serif; 

}

.med_gob_texto p {
    padding: 3rem 5rem;
    text-align: justify;
    max-width: 90ch;
    border-radius: 10px;
    background-color: rgba(60, 60, 60, 0.937);
    color: white;
    margin-bottom: 2rem;
}

/**/


#med_gob_foto1 {
    background-image: url(../../ImagenesProyecto/nepal_roofs.jpg);
}

#med_gob_foto2 {
    background-image: url(../../ImagenesProyecto/nepal_mountains.jpg);
    display: none;
}

#med_gob_foto1,
#med_gob_foto2 {
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    width: 100%;
    margin-bottom: 10vh;
}

/* Add specific style to ensure navbar stays sticky */
.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .med_gob_texto p {
        padding: 2rem 1.5rem;
        text-align: justify;
    }
    
    main {
        margin-top: 1rem;
    }
}