/* =====================================================
   Fonts
   ===================================================== */
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;700&family=Raleway:wght@400;700;900&family=Zalando+Sans:wght@400;500;700&display=swap");

/* =====================================================
   Reset & basis
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cabin", sans-serif;
  background-color: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.6;
}

/* =====================================================
   Header & navigatie
   ===================================================== */
.site-header {
  background: #ffffff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  justify-content: space-between;
}

  .logo {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
}

  .logo-text {
  font-family: 'Century Gothic', 'Futura', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 1.2;
  margin: 0;
  position: relative;
  display: block;
  
  /* Gradient achtergrond - Warm Sunset */
  background: linear-gradient(to right, #ff6b6b, #feca57, #ee5a6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a00;
}

.main-nav a:hover { color: #000; }

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #222;
  border-radius: 2px;
}

/* =====================================================
   Layout (grid)
   ===================================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}

.menu-toggle {
  display: none;
}

.blocks-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 80px;
}

.row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

/* =====================================================
   Content & sidebar
   ===================================================== */
.content {
  background: #ffffff;
  padding: 40px;
}

.sidebar {
  background: #eaeaea;
  padding: 30px;
  font-size: 13px;
  color: #666;
  font-family: "Cabin", sans-serif;
}

/* =====================================================
   Algemene sectiekoppen (h2)
   ===================================================== */
.article-block h2 {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 32px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-style: solid;
  border-width: 0 0 0 6px; 
  padding-left: 16px;
}

/* Alleen de h2 uitlijning en border voor de rechter blokken */
.row--content-right .article-block h2 {
  text-align: right;
  border-width: 0 6px 0 0; 
  padding-left: 0;
  padding-right: 16px;
}

/* Sectie-kleuren */
.article-block.block-tracks h2    { border-color: #1976d2; font-size: clamp(44px, 6vw, 68px); }
.article-block.block-muziek h2   { border-color: #7b1fa2; font-size: clamp(42px, 5.5vw, 62px); }
.article-block.block-verdieping h2 { border-color: #c2185b; font-size: clamp(42px, 5.5vw, 64px); }
.article-block.block-boeken h2   { border-color: #388e3c; font-size: clamp(40px, 5vw, 58px); }

/* Film (Donker blok) */
.block-film { background: #444; color: #ffffff; }
.article-block.block-film h2 { border-color: #ffb300; font-size: clamp(44px, 6vw, 68px); }
.block-film .main-article h3, .block-film .main-article p, .block-film .view-all { color: #ffffff; }

/* =====================================================
   Artikel-links: Chevron + Verschuiving (Altijd links)
   ===================================================== */
.article-links {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-links a {
  display: inline-block;
  font-family: "Cabin", sans-serif;
  font-size: 15.5px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
  /* Dwing links-uitlijning af, ook in rechter containers */
  text-align: left;
}

.article-links a::before {
  content: "›";
  margin-right: 10px;
  font-weight: bold;
  display: inline-block;
}

.article-links a:hover {
  opacity: 1;
  transform: translateX(10px); /* Iedereen schuift naar rechts */
}

/* Film-blok aanpassing */
.block-film .article-links { border-top-color: rgba(255,255,255,0.2); }

/* =====================================================
   Overige elementen
   ===================================================== */
.main-article img { width: 100%; height: 250px; object-fit: cover; margin-bottom: 16px; }
.main-article h3 { font-family: "Raleway", sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.main-article p { font-family: "Zalando Sans", sans-serif; font-size: 16px; color: #444; }

.view-all {
  display: inline-block;
  margin-top: 24px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

.block-footer { background: #2b2b2b; color: #e0e0e0; padding: 40px; }

/* =====================================================
   Layout & Media Queries
   ===================================================== */
.row--content-left .content { grid-column: 1 / span 8; }
.row--content-left .sidebar { grid-column: 9 / span 4; }
.row--content-right .sidebar { grid-column: 1 / span 4; }
.row--content-right .content { grid-column: 5 / span 8; }

@media (max-width: 1024px) {
  .container {
    padding: 40px 20px;
  }
  .blocks-wrapper, .row { grid-template-columns: repeat(6, 1fr); }
  .row--content-left .content, .row--content-right .content { grid-column: 1 / span 4; }
  .row--content-left .sidebar, .row--content-right .sidebar { grid-column: 5 / span 2; }
  .row--content-right .sidebar { grid-column: 1 / span 2; }
  .row--content-right .content { grid-column: 3 / span 4; }
}

@media (max-width: 768px) {
  .container {
    padding: 30px 16px;
  }
  /* Layout */
  .blocks-wrapper, .row { display: block; }
  .content, .sidebar { margin-bottom: 30px; }

  /* Sidebar */
  .sidebar {
    height: 50vh;
    overflow: hidden;
  }

  .sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Navigatie */
  .menu-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav a {
    padding: 16px 40px;
    border-top: 1px solid #eaeaea;
    font-size: 16px;
  }

  .main-nav.is-open { max-height: 500px; }

  /* Koppen */
  .article-block h2,
  .row--content-right .article-block h2 {
    text-align: left;
    border-width: 0 0 0 6px;
    padding-left: 16px;
    padding-right: 0;
  }
}