@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #0d1321;
  line-height: 1.6;
  padding-top: 100px; /* Push content down below sticky header */
}

/* Sticky Header */
#stickyHeader {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Menu Bar Styling */
.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* Logo */
.header-logo {
  height: 80px;
  width: 200px;
  object-fit: contain;
  margin: 0;
  padding: 0;
  display: block;
}

/* Navigation Links */
.menu-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.menu-links a {
  text-decoration: none;
  color: #0d1321;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #fca311;
}

/* Toggle Button */
.mobile-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #0d1321;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 1001;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; /* Below header */
    right: 20px;
    background-color: #f4f4f4;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 200px;
  }

  .menu-links.active {
    display: flex;
  }

  .menu-links li {
    padding: 10px 0;
    text-align: right;
  }
}
