@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



/* General Styles */
 

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  margin: 0;
  bottom: 0;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #000000b4; /* Semi-transparent black */
  color: #fff;
  width: 97%;
  margin: auto;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

/* Logo Styling */
.logo {
  font-size: 1.8rem;
}

/* Navbar Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  color: white;
  /* transition: color 0.3s; */
}

.nav-links li a:hover {
  color: #bbbaba;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;  /* Space for three lines */
  height: 25px; /* Adjust height of hamburger container */
  justify-content: space-between; /* Space between the lines */
  background-color: transparent; /* Ensure no background color */
  border: none; /* Remove any border */
}

.menu-toggle .bar {
  display: block;
  height: 3px;  /* Height of each line */
  width: 100%;  /* Full width of the container */
  background-color: white;  /* Color of the lines */
  border-radius: 5px;  /* Optional: Rounded edges of the lines for a softer look */
  margin: 2px 0; /* Space between each line */
}

/* Hamburger Icon Hover Effect */
.menu-toggle:hover .bar {
  background-color: white;  /* Keep the color on hover */
}

/* Responsive Styles */
@media screen and (max-width: 768px) {

  .navbar{
    height: 60px;
  }

  .navbar .logo{
    font-size: 20px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;  /* Dark background for mobile menu */
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    text-align: center;
    /* border-radius: 10px; */
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  header .logo img{
    width: 60%;
  }
}


/* Content Section */
.content {
  padding: 20px;
  text-align: center;
}

/* Footer Styling */
.footer {
  background-color: black;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-about, .footer-links, .footer-location {
  flex: 1;
  min-width: 250px;
}

.footer-about h3, .footer-links h3, .footer-location h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style-type: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-location .map-container {
  margin-top: 20px;
}

.footer-bottom {
  background-color: #222;
  padding: 10px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-about h3, .footer-links h3, .footer-location h3 {
    font-size: 1.2rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}
