@charset "utf-8";
/* CSS Document */

/*logo */
.logo-header {
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid #ddd;
	
  }

  .logo-container {
    display: flex;
    align-items: center;
	margin-left: 1rem; /* or use padding-right */
  }

  .logo-image {
    height: 90px;
    width: 90px;
    object-fit: contain;
    margin-right: 0.2rem; /* tighter spacing */
  }

  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37; /* gold color */
    font-family: 'Georgia', serif;
    margin-left: 0; /* ensure no default spacing */
  }

.nav-links,
.nav-links ul,
.dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Navbar */
.navbar {
  background: #fff;
  background-image:url(../images/navbarbg.jpg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  position: fixed;
  width: 100%;
  max-height:15vh;
  z-index: 999;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .25rem 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin-right: 2rem; /* or use padding-right */

}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-family:"Century Gothic", Century, "Century Schoolbook";  
  
}

.nav-links a:hover{
  text-decoration: none;
  color: #f3f3f3;
  font-weight: 500;
  font-family:"Century Gothic", Century, "Century Schoolbook";  
  
}
.nav-links .dropdown {
  position: relative;
}

.nav-links i {
  display: none; /* Hide by default */
  margin-right: 0.6em;
  color: #ff6600; /* Optional: icon color */
  min-width: 16px;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 2.5rem;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 999;
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  padding: 0.75rem 1rem;
  display: block;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
   margin-right:1rem;
   color:#CCCCCC;
}

.business-btn {
  background-color: #ff6600;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  font-family: "Century Gothic", Century, "Century Schoolbook";
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.business-btn:hover {
  background-color: #cc5200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.profile-btn {
  background-color: #0099cc;
  color: #fff !important;
  padding: 18px 28px;
  border-radius: 6px;
  font-weight: bold;
  font-family: "Century Gothic", Century, "Century Schoolbook";
  font-size:20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.profile-btn:hover {
  background-color: #cc5200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}


  
  /* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    display: none;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
	padding: 2rem 0; /* Top and bottom spacing */
  }
  .nav-links.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  
  .nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 300;
  font-size:larger;
  /*margin-left:1.5em;*/
  }

  .nav-links i {
   display: inline-block; /* Show icons in mobile */
   margin-left:1.5em;
   color:#333;
  }
  
  .business-btn {
  background-color: #ff6600;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  font-family: "Century Gothic", Century, "Century Schoolbook";
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-left:1.5em;
}

.business-btn:hover {
  background-color: #cc5200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.profile-btn {
  background-color: #0099cc;
  color: #fff !important;
  padding: 18px 28px;
  border-radius: 6px;
  font-weight: bold;
  font-family: "Century Gothic", Century, "Century Schoolbook";
  font-size:20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.profile-btn:hover {
  background-color: #cc5200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
}

