/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Load Local Poppins Font */
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0119; /* near-black background */
  color: #FFFFFF; /* white text */
  line-height: 1.6;
}

/* Header / Navbar */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: transparent; /* or use a dark shade like #0D0D0D */
}

.logo {
  font-size: 1.5rem;
  color: #FF8C00;
  font-weight: 600;
}

.navbar {
  position: relative;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FF8C00;
  cursor: pointer;
}

/* Navbar list */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 400;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #FF8C00;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .navbar ul {
    display: none; /* Hides navbar by default */
    flex-direction: column;
    background-color: #111111;
    position: absolute;
    top: 50px;
    right: 10px;
    width: 150px;
    padding: 10px;
    border-radius: 4px;
    z-index: 100;
  }

  .navbar.active ul {
    display: flex; /* Shows navbar when toggled */
  }
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #0D0D0D;
  color: #666666;
}
