/* =====================================================
   LAYOUT
   Structural rules only (grids, columns, flow)
===================================================== */

.page-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

/* ---------- GLOBAL SECTIONS ---------- */

.section {
  margin: 80px 0;
}

/* ---------- FEATURED (2/3 – 1/3) ---------- */

.featured-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-md);
}

/* ---------- MEDIA GRIDS ---------- */

.onair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ---------- DJ GRID ---------- */

.dj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* ---------- RETRO ZONE ---------- */

.retro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* ---------- NEWS ---------- */

.news-list {
  max-width: 900px;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

/* ---------- DJ / CLUB MAIN LAYOUT (1/4 – 3/4) ---------- */

.dj-main-layout,
.club-main-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--space-lg);
}

/* ---------- HERO LAYOUT ---------- */

.dj-hero-layout,
.club-hero-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-lg);
  align-items: center;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {

  .featured-layout {
    grid-template-columns: 1fr;
  }

  .onair-grid,
  .dj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .latest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .retro-layout {
    grid-template-columns: 1fr;
  }

  .dj-main-layout,
  .club-main-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .onair-grid,
  .dj-grid,
  .latest-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .dj-hero-layout,
  .club-hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

}

/* =====================================================
   HEADER
===================================================== */

.site-header {
  background: #f2ede7;
  padding: 18px 32px;
}

.site-header section {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo h2 {
  margin: 0;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-right: 20px;
  position: relative;
}

.main-nav a.active {
  color: var(--text-main);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}


.site-footer {
  width: 100%;
  background: #f2ede7;
  margin-top: 120px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--spacing);
  text-align: center;
}


.sig {
  font-family: 'Abril Fatface', serif;
  color: var(--signature-color);
  font-size: 1.3em;
}

/* CSS Document */

