/* ---------- Navbar ---------- */
.navbar {
    width: 100%;
    background: white;
    padding: 0px 6px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.08);
}
body {
    padding-top: 10px;  /* adjust to navbar height */
}

.nav-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 45px;
	margin-right : auto;
	margin-left : 15px;
    width: auto;
    object-fit: contain;
}
.brand-name {
	margin-right : auto;
	margin-left: auto;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    font-size: 17px;
    color: black;
    font-weight: 500;
}

/* ---------- Hamburger & Mobile Menu ---------- */
.hamburger {
    font-size: 28px;
    position: relative;
    cursor: pointer;
    display: none;
	top: 50%;
  z-index: 3000;
}

.mobile-menu {
    display: none;
    position: absolute;
    right: 15px;
    top: 70px; /* Slightly below navbar */
    width: 180px;  /* CONTROL THE BOX SIZE */
    background: white;
    padding: 15px 20px;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 10px;
    z-index: 2000; /* makes sure it appears ABOVE navbar */
}

.mobile-menu a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}
.mobile-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding-left: 10px;
    transition: 0.2s ease;
}


/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
	
	.hamburger {
    display: block;
	margin-right: 15px;
    margin-left: auto;
    font-size: 25px;
    cursor: pointer;
    padding: 10px;
}


    .mobile-menu.active {
        display: flex;
         flex-direction: column;
         
    }
}






/* Footer */

.site-footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  z-index: 999;
}


.footer-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

/* Very Small Logoes – same style as navbar */

.footer-logo,
.footer-iso {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* Text Styling */

.tagline {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  font-size: 13px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.copy {
  font-size: 12px;
  width: 100%;
  margin-top: 5px;
  opacity: 0.7;
}

/* Mobile Friendly */

@media (max-width: 600px) {
  .footer-content {
    gap: 10px;
  }
  .footer-logo, .footer-iso {
    height: 24px;
  }
}
