* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.4s ease-in;
}

/* Header Styles */
header {
  background: var(--black-color);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  align-items: center;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  padding: auto 20px;
  transition: 0.5s;
}

.logo:hover {
  padding: auto 20px;
  color: #ff0000;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1rem;
}

.nav-links a {
  color: #ecf0f1;
  font-size: var(--text);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.5s ease;
}

.nav-links a:hover {
  color: var(--active-color);
}

.nav-links .current {
  color: var(--active-color);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  position: auto;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 32px;
  height: 3px;
  background: var(--white-color);
  margin: 3px 0;
  transition: all 0.4s ease;
  transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--dark-color);
  transition: right 0.3s ease;
  padding-top: 6rem;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin: 0;
}

.mobile-menu ul li a {
  color: var(--text-color);
  font-size: var(--display-medium-mobile);
  text-decoration: none;
  padding: 1rem;
  display: block;
  border-radius: 4px;
  transition: background-color 0.5s ease;
}

.mobile-menu ul li a:hover {
  color: #34495e;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav {
    padding: 0 1rem;
  }

  main {
    padding: 1rem;
    margin-top: 70px;
  }

  .hero {
    padding: 2rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  .logo {
    font-size: var(--logo-text-mobile);
    padding: auto 20px;
    transition: 0.5s;
  }
}

/* JUNK


.nav {
  position: sticky;
  top: 1.2rem;
  z-index: 2;
}



.nav .nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav .main-menu-list {
  display: flex;
  align-items: center;
}

.nav .main-menu-list a {

}

.nav .main-menu-list a:hover {
  color: var(--active-color);
}





/* NAV BAR */
.mobile-menu a {
  font-family: '12Bold';
  font-size: var(--display-medium-mobile);
  text-transform: uppercase;
  line-height: 0.8;
}

.mobile-menu {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-items: center;
}

.nav .main-menu {
  display: none;
}

.nav .mobile-menu {
  display: flex;
}

/* MOBILE NAVIGATION -------------------- */

/* .nav .mobile-menu-toggle img {
    height: 40px;
    width: 40px;
  }
  .nav .mobile-menu {
    display: flex;
    align-items: center;
  }

  .nav .mobile-menu-toggle {
    cursor: pointer;
    color: white;
  }

  .nav .mobile-menu-list {
    position: absolute;
    width: inherit;
    height: inherit;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-color);
    transform: translateY(-150%);
    transition: transform 0.5s ease-in;
  }

  } */
