/* =====================================
   InstaAuth Sitemap — Left-Aligned & Clean
   ===================================== */

/* Wrapper */
.sitemap-wrapper {
  background: transparent;
  /* padding: 30px 10px; */
  text-align: left;
  margin-bottom: 100px;
}

/* Title */
.sitemap-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--demo-heading);
    margin-bottom: 2rem;
}

/* Grid Layout */
.sitemap-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px 80px;
  margin-left: 0;
}

/* Main Links */
.main-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--link-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.main-link:hover {
  color: var(--link-hover);
  transform: translateX(2px);
}

/* Light Theme Colors */
html[data-theme="light"] {
  --link-color: #1e40af; /* deep blue, readable */
  --link-hover: #111;
}

/* Dark Theme Colors */
html[data-theme="dark"] {
  --link-color: #8eaaff; /* soft blue tone */
  --link-hover: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .sitemap-wrapper {
    padding: 60px 20px;
  }

  .sitemap-sections {
    gap: 20px 40px;
  }

  .main-link {
    font-size: 1rem;
  }

  .sitemap-title {
    font-size: 1.8rem;
    text-align: center;
  }
}
