/* Global Styles */
* {
    
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    

    

}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    
    background-image: image-set(
        url('../../images/background-image_m1lgpo_c_scale,w_200.jpg') 1x,
        url('../../images/background-image_m1lgpo_c_scale,w_485.jpg') 2x
    );

}

/* Header Styles */
.header-container {
    background-color: white;
    background-image: image-set(
        url('../../images/background-image_m1lgpo_c_scale,w_200.jpg') 1x,
        url('../../images/background-image_m1lgpo_c_scale,w_485.jpg') 2x
    );
    padding: 10px 0;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

}


.header-container .logo {
    max-width: 90px;
    margin-left: 5vw;
    mix-blend-mode: multiply;
}

nav {
    margin-right: 1vw;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #bf0603;
    text-decoration: none;
    font-weight: bold;

    border-bottom: 5px solid #bf0603;

    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;

    transition: background-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}




nav ul li a:hover {
    background-color: #bf0603;
    color: white;
    
   
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;

    color: #bf0603
}

/* Hide the navbar links on mobile devices initially */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        
        background-image: image-set(
        url('../../images/background-image_m1lgpo_c_scale,w_200.jpg') 1x,
        url('../../images/background-image_m1lgpo_c_scale,w_485.jpg') 2x
        );

        position: absolute;
        top: 67px; 
        right: 0;
        overflow-y: auto; 
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        width: 80%;
        z-index: 9999;
        gap:15px;
        
        
    }

    nav ul li {
        padding-top: 10px;
        width: 100%;
        margin-left: 0;
    }
    nav ul li a{
        
        box-shadow: none;
        border-radius: 0;
        
        width: 100%;
        display: block; 
        
        text-align:left;

    }

    .hamburger {
        display: block;
    }
    
    /* Show the nav when the 'active' class is added */
    nav ul.active {
        display: flex;
    }

    

    .hapja-puseve-container{
        width: 100vw !important;
        
        display: flex !important; 
        flex-direction: column !important; 
        gap: 15px !important;
        align-items: center;
    }

    .hapja-puseve-img{
        width: 100% !important;
        height: 30vh !important;

        
    }

    .hapja-puseve-container img{
        width: 100% !important;
        height: 30vh !important;
        display: block; 
        position: relative; 
        z-index: 1; 
    }

    .hapja-puseve-description{
        
        width: 100% !important;
        padding: 15px; 
        box-sizing: border-box; 
        position: relative; /* Ensure proper stacking order */
    z-index: 2; /* Bring description in front of the image */
    }

    h1{
        font-size: 16px;
    }

    .contact-container{
        flex-direction: column !important;
        gap: 10px !important;

    }

    .divider{
        display: none !important;
    }

    .information-container{
        padding: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;

        width: 100% !important;
    }

    .information-container p{
        margin: 15px !important;
        padding: 0 !important;
    }

    .person{
        margin-top: 15px !important;
        margin-bottom: 0 !important;
        width: 100% !important;

        padding-bottom: 0 !important;
    }

    .map-container{
        width: 88vw !important;
    }

    .map-container iframe{
        width: 100vw !important;
        padding: 0 !important;
        margin: 0 !important;
    }


    
   
}

.language{
    color:#bf0603;
    display: flex;
    flex-direction: row;
    gap: 2px;

    font-weight: bold;
    font-size: small;
    
   
}

.language a{
    cursor: pointer;
    text-decoration: underline;
    color: #bf0603;

}

.language p{
    margin: 0;
    padding: 0;
}






@keyframes  appear{
    from{
        opacity: 0;
        transform: translateX(-500px);  
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes  appear-bottom{
    from{
        opacity: 0;
        transform: translateY(500px);  
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes  appear-right{
    from{
        opacity: 0;
        transform: translateX(500px);  
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes  appear-skew-right{
    from{
        opacity: 0;
        transform: translateX(500px) skew(-43deg);  
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes appear-skew-left-2{
    0%{
        transform: skewX(53ded) translateX(-5000px);
        opacity: 0;
    }

    60%{
        transform: translateX(-2500px);
    }

    62%{
        transform: skewX(0deg) translateX(30px);
    }
    70%{
        transform: skewX(-20deg);
        opacity: 1;
    }
    80%{
        transform: skewX(0deg) translate(0);
    }

    90%{
        transform: skew(-5deg);
    }
    100%{
        transform: skew(0deg);
    }
}


.hapja-puseve-container{
    margin: 0;
    padding: 0;

    width: 100%;
    height: auto;
    background-image: image-set(
        url('../../images/background-image3_ph8gxm_c_scale,w_200.jpg') 1x,
        url('../../images/background-image3_ph8gxm_c_scale,w_664.jpg') 1.5x,
        url('../../images/background-image3_ph8gxm_c_scale,w_800.jpg') 2x
    );
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: row;
    gap:10px;

    
}

.hapja-puseve-img{
    width: 50%;

    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.hapja-puseve-img img{
    width: 50vw;
    height: 90vh;
    
}

.hapja-puseve-container h2{
    background-image: image-set(
        url('../../images/highlights-bg-4_q2spix_c_scale,w_200.png') 1x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_735.png') 1.5x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_991.png') 2x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_1104.png') 2.5x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_1344.png') 3x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_1400.png') 4x
    );
    background-size: 100% 100%;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0% 19.25%, 100% 0%, 100% 76.75%, 0% 100%);
    padding: 20px;
    text-align: center;
    color: white;

    animation: appear-bottom linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.hapja-puseve-container p{
    padding: 15px;
    text-align: justify;

    animation: appear-bottom linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
.hapja-puseve-container a{
    font-size: bolder;
    text-decoration: underline;
    color: #990202;
}

h1{
    background-image: image-set(
        url('../../images/highlights-bg-4_q2spix_c_scale,w_200.png') 1x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_735.png') 1.5x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_991.png') 2x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_1104.png') 2.5x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_1344.png') 3x,
        url('../../images/highlights-bg-4_q2spix_c_scale,w_1400.png') 4x
    );
    background-size: 100% 100%;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0% 19.25%, 100% 0%, 100% 76.75%, 0% 100%);
    
    padding: 20px;
    text-align: center;
    color: white;

    width: 75vw;

    animation: appear-bottom linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    
}

.contact-container{
    margin: 0;
    padding: 50px;

    width: 90vw;
    border-radius: 10px;
    height: auto;
    
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: row;
    gap:100px;


    
   
    background-image: image-set(
        url('../../images/background-image3_ph8gxm_c_scale,w_200.jpg') 1x,
        url('../../images/background-image3_ph8gxm_c_scale,w_664.jpg') 1.5x,
        url('../../images/background-image3_ph8gxm_c_scale,w_800.jpg') 2x
    );
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.3);
    



}

.divider{

    width: 7px; 
    background-color:#bf0603;
    border-radius: 5px;
}

.information-container{
    width: 50%;
    
}

.information-container p{
    font-size: larger;
    padding: 14px;
}

.person{
    border: #bf0603 solid 2px;

    border-radius: 10px;

    padding: 14px;

    margin-bottom: 55px;


}

.person p {
    padding: 0;
}
.map-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-container h2{
    color:#bf0603;
}

span{
    color: #bf0603;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    padding-left: 50px;
    padding-right: 50px;
}
footer p {
    margin: 0;
}

.adsolutions{
    width: 170px;
    height: auto;
    border-radius: 10px;

}
