/* General styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: white;

}

#instagram {position:fixed; top: 30px; right:30px; z-index:500 !important;}
#menu {position:fixed; top: 30px; left:30px; z-index:500 !important;}

#menu-overlay {position:fixed; z-index:200; width:100%; height:100%; display:none; text-align:center;
background-color: rgba(0, 0, 0, 0.9);}


.underline {text-decoration: underline !important;}

.container-fluid {max-width: 1920px;}

.bg-image {
    background-image: url('background.jpg');
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.top-menu {
    z-index:301;
    position:fixed;
    width:100%; height:320px;
    background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.9) 0%,  
    rgba(0, 0, 0, 0.0) 100%); 
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.7) 10%,  
    rgba(0, 0, 0, 0.4) 50%,  
    rgba(0, 0, 0, 0.2) 100%); 
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align the logo at the top */
    align-items: center;
    text-align: center;
}


.go-down  {position:absolute; bottom:40px;}
.go-down img {height:30px;}

.logos {
    position:fixed;
    width:100%;
    left:0;
    z-index:300;

}

.logo {
    width: 220px; /* Adjust as needed */
    margin: 0px 0;
}

.logo1 {
    width: 220px; /* Adjust as needed */
    margin: 60px 0 10px;
}

.nav {

    transform: translate(-50%, -50%);
    position:absolute; top:50%; left:50%;
    font-weight: 400;
    
}

#contact {
    transform: translate(-50%, -50%);
    position:absolute; top:50%; left:50%;
    font-weight: 400;
    color:white;
    font-size:1.3rem;
}
#contact a {color:white;}
#contact a:hover {text-decoration: none; opacity:0.7;}

.nav-link {
    font-family: "Barlow", sans-serif;
    font-weight:500;
    color: #fff;
    margin: 0 0;
    padding: 0 0;
    font-size: 2.5rem;
    text-transform: uppercase;
    display:block;
    line-height:1.3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
    color: #fff;
}

.nav-lang {
    color:white;
    position:absolute;
    bottom: -100px;
    font-size:2rem;
}
.nav-lang:hover {
 
    color:white;
    opacity: 0.7;
    text-decoration:none
}

.content {
    padding: 20px 0;
    background-color: #fff;
}

.content .container {
    margin-top: 100vh;
}


.gallery-item {
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 1s, -webkit-transform 1s;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease-in-out;
   
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom the image to 120% on hover */
}

.show {opacity:1;}

.gallery-text {padding:5%; text-align:center; font-size:1.2rem;}


.about {background-color: #eaeae2; text-align:center; padding: 50px 20px 150px;}
.about h2 {margin-top:40px;}
.about h3 {margin-top:30px;}
.about p {margin-top:20px;font-size:1.1rem;}


footer {background-color: #c8c7c2; border-top:1px solid #666; font-size:1.1rem; padding-bottom:100px; }
.footer-about {background-color: #eaeae2; }

.footer-left {border-right:1px solid #666; padding:40px;padding-bottom:200px; }
.footer-right {padding:40px; padding-bottom:200px;}
footer a {color:black;}
footer a:hover {color:black; opacity:0.7; text-decoration: none;}
footer li {list-style-type: none; position:relative;}
footer img { height:30px; position:relative; left:8px;top:-3px;}


footer li.active::before {
    position:absolute;
    content: '';
    display: inline-block;
    vertical-align: middle;
    background-image: url('../img/caret.png');
    background-size: contain; 
    background-repeat: no-repeat;
    width: 6px; 
    height: 6px; 
    left:-20px;
    top:11px;
}


@media only screen and (max-width: 900px) {


    .nav-link {
      
        font-size: 2rem;
  
    }


    footer {font-size:1rem;}
    footer ul {padding-left:0px;}
    .footer-left { padding-bottom:0px;}
    .footer-right { padding-bottom:50px;}



    .logo {
        width: 150px; /* Adjust as needed */
        margin: 0px 0;
    }
    
    .logo1 {
        width: 150px; /* Adjust as needed */
        margin: 60px 0 10px;
    }


    .top-menu {
        height:250px;
    }

  }