/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
    

}

body {
    
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;


}
section {
    max-width: 1200px; 
    
}


/* Header and Navigation */
header {

    padding: 0 1rem;
    background-color: #343a40;
    height: auto;
    width: 100%;
    text-align:center;

}
#navigation-container {
    width: 1200px;
    margin: 0 auto;
    height: 70px;
  }
  
.navigation-bar {
    background-color: #343a40;
    height: 70px;
    width: 100%;
    text-align:center;
  }

.navigation-bar image {
    float: left;
}
.big-logo {
    max-width: 70%;
    height: auto;
    margin: 0 auto;
    align-self: center;

}

.logo {
    display: block;
    float: left;
    margin: auto;  
    max-height: 80px;
    width: auto;
    
}

.navigation-bar img{
    float:left;
    }
    .navigation-bar ul {
      padding: 0px;
      margin: 0px;
      text-align: center;
      display:inline-block;
      vertical-align:top;
    }
    
    .navigation-bar li {
      list-style-type: none;
      padding: 0px;
      height: 24px;
      margin-top: 4px;
      margin-bottom: 4px;
      display: inline;
    }
    
    .navigation-bar li a {
      color: rgb(255, 255, 255);
      font-size: 18px;
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      text-decoration: none;
      line-height: 70px;
      padding: 5px 15px;
      opacity: 0.8;
    }
    .navigation-bar ul li a:hover {
        color: #e63946;
    }
    #menu {
      float: right;
    }

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
            display: none; 

}

.language-switcher-rtl {
    left: 10px;
    right: auto;
}

.language-switcher a {
    margin: 0 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.language-switcher a:hover {
    color: #e63946;
}

/* Contact Section */
.contact-info {
    padding: 6rem 2rem;
    text-align: center;
    color: #0c141b;
    position: relative;
    overflow: hidden;
    
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #343a40;
}

.contact-card {
    background: #343a4007;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: inline-block;
    text-align: left;
   
}

.contact-card h1,
.contact-card h6,
.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card i {
    margin-right: 0.5rem;
}

.contact-card h1 {
    font-size: 2rem;
    color: #000000;
}

.contact-card h6 {
    font-size: 1rem;
    color: #6c757d;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: #343a40;
}

.contact-card a {
    color: #e63946;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    position: relative;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    header {
        height: 140px;
    }
    .nav-manu {
        display: none; /* Hide menu by default */
        flex-direction: column;
        background-color: #343a40;
        position: absolute;
         top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        /* z-index: 1;  */
    }

    .nav-manu.active {
        display: flex; /* Show menu when active */
    }
    .gallery-container{
        columns: 2;
    }
    .hamburger {
        display: none;
    }
    section h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
        color: #343a40;
    }
    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #343a40;
    }
    

}

@media (max-width: 768px) {


    header {
        height: 210px;
    }
 
    .nav-manu {
        display: none; /* Hide menu by default */
        flex-direction: column;
        background-color: #343a40;
        position: absolute;
         top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        /* z-index: 1;  */
    }

    .nav-manu.active {
        display: flex; /* Show menu when active */
    }

    .hamburger {
        display: none;
    }
    .big-logo{
        max-width: 50%;
    }
    section h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
        color: #343a40;
    }
    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #343a40;
    }
    .contact-card h1 {
        font-size: 1.6rem;
        color: #000000;
    }
    
    .contact-card h6 {
        font-size: 0.9rem;
        color: #6c757d;
    }
    
    .contact-card h3 {
        font-size: 1rem;
        color: #343a40;
    }
    


}

