/* ===============================
   🧭 NAVIGATION BAR STYLESHEET — navbar.css
   Defines structure and appearance of site-wide top navigation
================================= */

/* ---------------------------------
   📌 SECTION: Navbar Container
---------------------------------- */
.navbar {
  background-color: #1a1a1a;
  color: #c9aa71;
  font-family: 'Cinzel', serif;
  border-bottom: 4px solid #c9aa71;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  z-index: 1000;
}

/* ---------------------------------
   🪙 SECTION: Left Side — Brand Area
---------------------------------- */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.founders-icon {
  height: 40px;
  width: auto;
}

.navbar-logo {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* ---------------------------------
   🔗 SECTION: Right Side — Nav Links
---------------------------------- */
.navbar-links {
  display: flex;
  gap: 1.5rem;
}

.navbar-links a {
  color: #c9aa71;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #ffffff;
}

/* ---------------------------------
   📱 SECTION: Mobile Responsiveness
---------------------------------- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-left {
    margin-bottom: 1rem;
  }

  .navbar-links {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
  }
}
