/* ========== HEADER ========== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #161a20;
  padding: 15px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin-right: 10px;
  border-radius: 50%;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #menu-toggle:checked ~ nav ul.nav-links {
    display: flex;
  }

  nav ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #161a20;
    padding: 10px 0;
  }

  nav ul.nav-links li {
    text-align: center;
    padding: 10px 0;
  }
}


/* ========== FOOTER ========== */
.ultimate-footer {
  background: #1a1d24;
  color: #ddd;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-item img {
  display: block;
}

.logo-block img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.info-block {
  flex: 1;
}

.info-line {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

.footer-divider {
  border: 0;
  border-top: 1px solid #444;
  margin: 25px auto;
  width: 90%;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 20px auto 0;
}

.about-section,
.links-section {
  flex: 1;
  min-width: 240px;
}

.about-section h4,
.links-section h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.about-section p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.links-section ul {
  list-style: none;
  padding: 0;
}

.links-section li {
  margin: 6px 0;
}

.links-section a {
  color: #7fbfff;
  text-decoration: none;
  font-size: 0.95rem;
}

.links-section a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: #9fc7ff;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  padding-left: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #6ab0ff;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 14px;
}

.footer-links a:hover::before {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
