/*
 * site.css
 * Standalone header/footer for the independent Start It Up Georgia site.
 * Deliberately does NOT reuse atlantaventures.com's .nav / footer markup —
 * this site has no other AV pages to link to, so it gets its own minimal
 * header and footer instead of the full interactive AV site chrome.
 */

.siug-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(16, 20, 31, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.siug-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.siug-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.siug-brand img { width: 26px; height: 26px; border-radius: 6px; }
.siug-header-tag {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.siug-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 32px 56px;
  text-align: center;
}
.siug-footer p {
  font-size: 0.78rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.siug-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}
.siug-footer a:hover { color: white; }

@media (max-width: 900px) {
  .siug-header-inner { padding: 14px 20px; }
  .siug-header-tag { display: none; }
  .siug-footer { padding: 28px 20px; }
}
