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

body {
  font-family: Arial, sans-serif;
  background-color: black;
  font-size: 16px;
}

.main-header {
  background-color: #000000;
  color: white;
  padding: 10px 15px;
  display: flex;
  /* Put logo and toggle side-by-side */
  justify-content: space-between;
  align-items: center;
  height: 70px; /* fixed header*/
  font-family: 'Audiowide', sans-serif;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between logo and text */
}

.logo {
  height: 70px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  font-family: "Audiowide", sans-serif;
}

/* Hamburger */
.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.8em;
  cursor: pointer;
  /* Ensure it is visible on mobile */
  display: block;
  z-index: 10;
}

.main-nav {
  display: none;
  position: absolute;
  top: 50px; /* Adjust based on header height */
  left: 0;
  width: 100%;
  background-color: #222; /* Slightly different background for the menu */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

/* style when the menu is active */
.main-nav.is-open {
  display: block;
}

/* stack list items vertically */
.main-nav ul {
  list-style: none;
  padding: 10px 0;
}

.main-nav li a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  display: block;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

/* FOOTER */
footer {
  background-color: #1a1a1a;
  border-top: 2px solid #00d4ff;
  padding: 40px 20px 20px;
  color: white;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #00d4ff;
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: 'Audiowide', sans-serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00d4ff;
}

.footer-divider {
  border-top: 1px solid #333;
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.copyright {
  color: #888;
  font-size: 0.9em;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.social-links img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

/* ============ */
/* Small Phones */
/* ============ */
@media (min-width: 481px) {
  .main-header {
    padding: 15px 30px;
  }

  /* hide burger on desktop */
  .menu-toggle {
    display: none;
  }

  /* show nav on desktop */
  .main-nav {
    display: block; /* Override mobile 'display: none;' */
    position: static; /* Position normally in the flow */
    background: none;
    box-shadow: none;
    width: auto;
  }

  /* make the links horizontal */
  .main-nav ul {
    display: flex;
    gap: 25px;
    padding: 0;
  }

  .main-nav li a {
    padding: 5px 10px;
    border-bottom: none;
  }
}

.main-nav li a:hover,
.main-nav li a:focus {
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

/* =======--*/
/* Tablets+ */
/* =========*/
@media (min-width: 768px) {
  footer {
    padding: 50px 30px 30px;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .social-links {
    justify-content: flex-end;
  }
}

/* ======================================= */
/* Laptops & Large Tablets */
/* ======================================= */
@media (min-width: 770px) and (max-width: 1280px) {
}

/* ======================================= */
/* Large Desktops */
/* ======================================= */
@media (min-width: 1281px) {
}
