/* =========================
   TOP INFO BAR – RESPONSIVE
========================= */


/* LOGO SECTION */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 100px;
  height: 45px;
  object-fit: contain;
}

.logo h1 {
  font-size: 22px;
  color: #f4c430;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}





.top-bar {
    background: linear-gradient(135deg, #f4c430, #ffb703);
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #f4c430;
}

/* DESKTOP / LARGE SCREENS */
.top-bar-container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT & RIGHT GROUPS */
.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-left span,
.top-right span {
  white-space: nowrap;
  font-weight: 500;
}

.top-bar a {
  color: #000000;          /* HIGH CONTRAST */
  text-decoration: none;
  font-weight: 600;
}

.top-bar a:hover {
  text-decoration: underline;
}


.top-left span,
.top-right span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 500;
}


/* =========================
   TABLET VIEW (<= 1024px)
========================= */
@media (max-width: 1024px) {
  .top-bar {
    font-size: 13.5px;
  }

  .top-left,
  .top-right {
    gap: 16px;
  }
}

/* =========================
   MOBILE VIEW (<= 768px)
========================= */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 6px;
    padding: 8px 10px;
    text-align: center;
  }

  .top-left,
  .top-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .top-bar {
    font-size: 13px;
  }
}

/* =========================
   SMALL MOBILE (<= 480px)
========================= */
@media (max-width: 480px) {
  .top-bar {
    font-size: 12px;
  }
}




/* HEADER (Black + Gold Theme) */
.main-header {
   background: linear-gradient(135deg, #1a1a1a, #000000);
  color: #ffffff;
  padding: 1rem 2rem;
  color: #f4c430;
  border-bottom: 3px solid #f4c430;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Header Layout */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo h1 {
  color: #f4c430;
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

/* Desktop Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  background: #f4c430;
  color: #000000;
  font-weight: bold;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  color: #f4c430;
  font-size: 2rem;
  cursor: pointer;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -260px;
    background: #000000;
    height: 100%;
    width: 220px;
    padding: 2rem 1rem;
    transition: 0.4s;
    border-left: 3px solid #f4c430;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links li {
    margin: 18px 0;
  }
}
