/* Topbar */
.topbar {
  background: var(--brand-primary);
  color: #c9d3e2;
  font-size: 12.5px;
  padding: 8px 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* Main Navigation Header */
nav.main {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav.main .wrap {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 16px 0;
  gap: 23%;
}

/* Logo Brand Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(
    160deg,
    var(--brand-primary),
    var(--brand-primary-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent-light);
  font-size: 18px;
}

.logo-text {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--brand-primary);
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--brand-accent);
  text-transform: uppercase;
  margin-top: 2px;
}

.akhyaar-icon {
  height: 30px;
  width: auto;
}

/* Navigation Elements */
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-primary);
}

.nav-links a.active {
  color: var(--brand-accent);
}

/* Global Footer */
footer {
  background: var(--brand-primary);
  color: #b9c4d6;
  padding: 44px 0 24px;
  margin-top: 20px;
}

footer a {
  color: inherit;
  text-decoration: none;
}

.foot-logo {
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.foot-sub {
  text-align: center;
  font-size: 12px;
  color: #8fa0bc;
  margin-bottom: 28px;
}

.foot-bottom {
  text-align: center;
  font-size: 11.5px;
  color: #6e80a0;
}

/* Global Responsive Structural Rules */
@media (max-width: 900px) {
  /* .nav-links {
    display: none;
  } */
}

.nav-container {
  display: flex;
  margin-right: 5px;
  align-items: center;
  justify-content: space-evenly;
  gap: 15px;
  /* background: blue; */
}

.dropdown {
  position: relative;
}

.dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon-img {
  width: 24px;
  height: 24px;
  display: block;
  /* filter: brightness(0) invert(1); */
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 200px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(13, 21, 38, 0.15);
  z-index: 1000;
  padding: 8px 0;
}

.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}

.dropdown-content a:hover {
  background-color: var(--bg-muted);
  color: var(--brand-primary);
  padding-left: 22px;
}

.dropdown-content a:active {
  background-color: var(--brand-accent);
  color: #1a1206;
}

@media (max-width: 600px) {
  .dropdown-content {
    min-width: 200px;
  }
}
.active {
  color: purple;
}
