@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}   

body{
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #EBF5EE, #e3fff4);
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/*Estilos para el header de corpoboyacá*/
.back-arrow-cb{
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: #00805a;
    align-self: flex-start;
    align-items: center;
    display:flex;
    justify-content: center;
    align-content: center;
    justify-items: center;
    margin: 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.back-arrow-cb:hover{
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.back-cb{
    width: 20px;
    align-self: center;
}

.header-logo-cb{
    width: clamp(30px, 10vw, 60px);
    object-fit: contain;
    transition: transform 0.5s ease;
}   

.header-logo-cb:hover{
    cursor: pointer;
    transform: translateY(-2px);
}

.header-section-cb{
    display:flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-items: center;
    background-color: #00403d;
    padding: 0em 1vw 0em 1vw;
}

.header-content-container-cb{
    display: flex;
    flex-direction: column;
    width:100%;
}

.header-container-cb{
    display: flex;
    flex-direction: row;
    gap: 2vw;
    height: 12vh;
    width: 100%;
    padding: 0.8em 3vw 1em 3vw;
    align-items: center;
    width: 100%;
}

.header-content-cb{
    margin: 0;
    gap: clamp(1rem, 5vw, 6rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-content: space-between;
}

.header-title-cb{
    font-family: 'Roboto', sans-serif;
    font-size:  clamp(2rem, 2vw, 3rem);
    font-weight:600;
    margin: 0;
    align-items: center;
    align-self: center;
    justify-content: center;
    text-justify: center;
    color: #e3fff4;
}

.header-menu-container {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100%;
}


.nav-container-cb {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.nav-menu-cb {
    width: 100%;
    flex-wrap: wrap;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
    text-align: center;
    align-self: center;
}

.nav-menu-cb li a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #e3fff4;
    padding: 15px 20px 10px 20px;
    display: block;
    font-weight: 600;
    font-size: 17px; 
    align-items: center;
}

.nav-menu-cb li {
    text-align: center;
}

.nav-menu-cb li:hover{
    background-color: #b6cb1b;
    border-radius: 30px;
}

.nav-menu-cb li a:hover{
    color:#00403d;
}

.nav-link-active-cb{
    background-color: #b6cb1b;
    border-radius: 30px;
}



.menu-toggle-cb{
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #FFFF;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

@media screen and (max-width: 1240px) {
    .menu-toggle-cb{
        display: block;
        position: absolute;
        top: -25px;
        right: 20px;
    }

    .nav-container-cb {
        position: relative; 
    }

    .nav-menu-cb {
        position: absolute;
        top: 100%;
        left: 0; 
        flex-direction: column;
        background-color: #00403d;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        z-index: 999;
        margin: 0;
        padding: 0; 
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
        padding:0;
    }

    .nav-menu-cb.show {
        max-height: 400px; 
        opacity: 1;
        padding: 10px 0; 
    }

    .nav-menu-cb li {
        width: 100%;
        text-align: center;
        margin: 0; /* Resetear margin */
    }

    .nav-menu-cb li a {
        padding: 15px 20px;
        font-size: clamp(0.9rem, 1.5vw, 1.2rem);
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(227, 255, 244, 0.1); 
    }

    .nav-menu-cb li:last-child a {
        border-bottom: none; 
    }

    .nav-menu-cb li:hover {
        background-color: #b6cb1b;
        border-radius: 30px;
    }

    .nav-menu-cb li a:hover {
        color: #00403d;
    }
}

/*Estilos para el contenido de la página principal*/
.cb-austro-content-container{
    width:100%;
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: start;        
    justify-content: start;
}

.austro-cb-img{
    width: 100%;
    height: 45vh;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}

.austro-cb-content{
    display: flex;
    width:100%;
    flex-direction: column;
    gap: 4vh;
    justify-content: start;
    align-items: start;
}

.austro-cb-text-container{
    display: flex;
    width: 100%;
}

.austro-cb-text{
    font-family: 'Nunito', sans-serif;
    color: black;
    font-size: 18px;
    text-align: justify;
    font-weight: 600;
    padding: 1.5vh 5vw 0vh 5vw;
    
}

.austro-cb-title{
    font-size: 28px;
    font-weight: 800;
}

.austro-cb-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    height: 100%;
}

.austro-cb-options{
    height: 15vh;
    display: flex;
    flex-direction: row;
    gap: 2vw;
    width: 100%;
    justify-content: space-around;
    padding: 0vh 5vw 0vh 5vw;
}

.opc-block{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 4vh
}

.line-decoration{
    height: 1.5vh;
    width: 100%;
}

#line-1{
    background-color: #00805a;
}

#line-2{
    background-color: #b6cb1b;
}

.austro-cb-opc{
    padding: 1.5px;
    text-decoration: none;
    width: 100%;
    height: 50%;
    opacity: 0.9;
    display: flex; 
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden; 
    position: relative; 
    transition: transform 0.8s ease;
    background-color: #b6cb1b;
}

.austro-cb-opc:hover{
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


.austro-opc-text{
    font-size: clamp(0.9rem, 1.5vw, 1.5rem);
    font-weight: 700;
    color: white;
    text-align: center;
    position: relative; 
    z-index: 2; 
    margin: 0; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
}

.austro-opc-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 1; 
}


/*Estilos para el footer de corpoboyacá*/

#corpoboyaca-footer{
    background-color: #00403d;
    height: 20vh;
}

.footer-container{
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
    backdrop-filter: 8px;
    box-shadow: 2px 8px 4px 12px rgba(0.15, 0.15, 0.15, 0.15);
    margin-top: 2vh;
    background-color: #034C3C;
}

.footer-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 20vh;
}

.footer-txt{
    font-family: 'Nunito', sans-serif;
    color:#EBF5EE;
    font-weight: 600;
    font-size: 20px;
}

.footer-logo{
    height: clamp(40px, 8vw, 80px);;
    cursor: pointer;
}