/* ==========================
   HEADER STYLES
   ========================== */
.mm-header {
  background: #111;
  color: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.mm-logo img {
  max-height: 50px;
  width: auto;
}

/* Nav links (desktop) */
.mm-nav {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
  padding: 0;
}

.mm-nav li {
  display: inline-block;
}

.mm-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.mm-nav a:hover,
.mm-nav a.active {
  color: gold;
}

/* Hamburger toggle (hidden on desktop) */
.mm-nav-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}

/* ==========================
   FOOTER STYLES
   ========================== */
.mm-footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 20px;
}

.mm-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.mm-footer-col {
  flex: 1 1 200px;
}

.mm-footer h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: gold;
}

.mm-footer ul {
  list-style: none;
  padding: 0;
}

.mm-footer ul li {
  margin-bottom: 5px;
}

.mm-footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.mm-footer ul li a:hover {
  color: #fff;
}

.mm-footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* ==========================
   ANIMATIONS
   ========================== */
@keyframes mmSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mmSlideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* ==========================
   RESPONSIVE (Mobile <= 900px)
   ========================== */
@media (max-width: 900px) {
  .mm-header-inner {
    justify-content: space-between;
  }

  .mm-nav-toggle {
    display: block;
  }

  .mm-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem 0;
  }

  .mm-nav.mm-open {
    display: flex;
    animation: mmSlideDown 0.3s ease forwards;
  }

  .mm-nav.closing {
    display: flex;
    animation: mmSlideUp 0.3s ease forwards;
  }

  .mm-nav li {
    text-align: center;
    padding: 8px 0;
  }
}