:root {
  --highlight: #FFD700; /* Web Gold */
  --footer-bg: #000000;  /* Or use a dark navy like #0a0a23 */
  --footer-text: #ffffff;
}

.main-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: var(--highlight);
  margin-bottom: 12px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

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

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

.footer-section ul li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--highlight);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.footer-social-icons a[aria-label="Facebook"] { background-color: #1877F2; }
.footer-social-icons a[aria-label="Twitter"]  { background-color: #000; }
.footer-social-icons a[aria-label="Instagram"] {
  background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C, #F56040, #FCAF45);
}
.footer-social-icons a[aria-label="TikTok"] {
  background: linear-gradient(135deg, #69C9D0, #EE1D52);
}
.footer-social-icons a[aria-label="YouTube"]  { background-color: #FF0000; }

.footer-social-icons a:hover {
  transform: scale(1.1);
}

.copyright {
  text-align: center;
  color: #aaa;
  margin-top: 30px;
  font-size: 0.85rem;
}
