/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

/* Navigation Menu (Common for both About Us and Homepage) */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px; /* Reduced padding to match homepage */
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 26px; /* Adjusted for consistency */
  font-weight: bold;
  color: #d4af37;
  font-family: 'Lora', serif;
}

.navLinks {
  list-style: none;
  display: flex;
  gap: 30px; /* Adjusted to reduce space between links */
  padding: 0;
  margin: 0;
}

.navLinks li {
  display: inline;
}

.navLinks a {
  color: white;
  text-decoration: none;
  font-size: 18px; /* Adjusted font size */
  font-family: 'Lora', serif;
  font-weight: normal;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.navLinks a:hover {
  color: #d4af37;
}

/* Search */
.searchContainer {
  display: flex;
  align-items: center;
  margin-right: 60px; /* Adjusted to fit the layout better */
}

.searchBar {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid gold;
  outline: none;
  font-size: 14px;
  background: black;
  color: white;
  width: 180px;
  transition: 0.3s;
  font-family: 'Lora', serif;
}

.searchBar:focus {
  border-color: #d4af37;
}



/* Button */
.button {
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border: 2px solid gold;
  background: transparent;
  color: gold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
  font-family: 'Lora', serif;
}

.button:hover {
  background: gold;
  color: black;
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 20px;
  background-color: black;
  width: 100%;
  font-size: 14px;
  color: #aaa;
  text-align: center;
}

/* Mobile Menu Styles */
#menu {
  display: flex;
}

@media screen and (max-width: 768px) {
  #menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
  }

  #menu.show {
    display: flex; /* Shown when 'show' class is added */
  }

  /* Adjust Navbar for Mobile View */
  .navbar {
    padding: 20px 50px; /* Reduced padding for smaller screens */
  }

  .navLinks {
    gap: 30px; /* Reduced gap for a tighter layout on mobile */
  }

  .navLinks a {
    font-size: 18px; /* Slightly smaller font size */
  }

  /* Adjust Search Bar for mobile */
  .searchContainer {
    display: none; /* Hide search on small screens */
  }

  /* Adjust logo size */
  .logo {
    font-size: 26px; /* Smaller logo on mobile */
  }
}
