:root {
    --gpr-red: #EA360E;
    --dark: #121212;
    --black: #141414;
    --white: #ffffff;
    --gray: #E7E6E1;
    --shadow: rgba(0, 0, 0, 0.15);
  }
  
  /* ---------- GLOBAL ---------- */
  body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--gray);
    color: var(--black);
    overflow-x: hidden;
  }
  
  body.body--app {
    background: var(--white);
  }
  
  /* ---------- HEADER ---------- */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 1px solid #1e1e1e;
    box-shadow: 0 2px 8px var(--shadow);
  }
  
  .nav-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 50px;
    display: block;
  }
  
  nav a {
    margin-left: 24px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: lowercase;
  }
  
  nav a:first-child {
    margin-left: 0;
  }
  
  nav a:hover {
    color: var(--gpr-red);
  }
  
/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    display: flex;
    justify-content: flex-start; /* tekst naar links */
    align-items: center;
    height: 90vh;
    background: url('/images/IMG_4740.JPG?v=2') center center / cover no-repeat;
    text-align: left;
    color: var(--gray);
    text-transform: uppercase;
    padding: 0 5%;
  }
  /* overlay */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .hero-text-container {
    position: relative;
    z-index: 2;
    background: #e7e6e13f; /* optionele lichtdoorzichtige achtergrond voor leesbaarheid */
    padding-left: 1rem;
    padding-top: 0.3rem;
    padding-bottom: 1rem;
    padding-right: 2rem;
    border-radius: 12px;
    max-width: 600px;
  }
  
  .hero-text-container h1 {
    margin-top: 0;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-text-container p {
    margin-top: -20px;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-text-container .listen-btn {
    display: inline-block;
    background: var(--gpr-red);
    color: var(--white);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .hero-text-container .listen-btn:hover {
    background: #c32a0a;
    transform: translateY(-2px);
  }

  
  /* ---------- SECTIONS ---------- */
  .section {
    margin-top: 0;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .section h2 {
    font-size: 2rem;
    color: var(--gpr-red);
    margin-bottom: 2rem;
  }
  
  /* ---------- CARDS ---------- */
  .show-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .card:hover {
    border-color: var(--gpr-red);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }
  
  /* ---------- BUTTONS ---------- */
  button {
    background: var(--gpr-red);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  button:hover {
    background: #c32a0a;
    transform: translateY(-2px);
  }
  
  /* ---------- FOOTER ---------- */
  footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #eee;
    background: var(--black);
    color: var(--white);
  }
  
  footer a {
    color: var(--gpr-red);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: text-decoration 0.3s ease;
  }
  
  footer a:hover {
    text-decoration: underline;
  }

  
/* ===== NU LIVE ===== */
#nu-live {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: -40px;
    padding: 4rem 1rem;
    background: transparent;
  }
  
  .nu-live-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #EA360E, #000000);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 1600px;
    height: 420px;
    color: #fff;
    font-family: "Inter", sans-serif;
    position: relative;
  }
  
  .nu-live-content {
    flex: 1;
    padding: 3rem 4rem;
    z-index: 2;
  }
  
  .nu-live-title {
    font-size: clamp(8rem, 2.6vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
  }
  
  .nu-live-subtitle {
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 2rem;
  }
  
  .nu-live-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .nu-live-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .nu-live-btn {
    background: #fff;
    color: #000;
    padding: 0.9rem 1.8rem;
  }
  
  .nu-live-btn:hover {
    background: #f2f2f2;
    color: #EA360E;
  }
  
  .nu-live-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.9rem 1.8rem;
  }
  
  .nu-live-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .play-icon {
    font-size: 1rem;
    line-height: 1;
  }
  
  /* Rechterkant - Afbeelding */
  .nu-live-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
  }
  
  .nu-live-image img {
    width: 65%;
    margin-right: 150px;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Overlay voor gradient die licht vervaagt */
  .nu-live-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0808082d, #EA360E);
    border-radius: 24px;
    z-index: 1;
  }
 
 /* --- 📱 RESPONSIVE IMPROVEMENTS --- */

/* Tablets en kleine laptops */
@media (max-width: 1024px) {
  .nav-container {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  nav a {
    font-size: 0.95rem;
  }

  .hero-text-container {
    max-width: 500px;
  }

  .nu-live-container {
    height: 360px;
  }

  .nu-live-title {
    font-size: 2.2rem;
  }

  .nu-live-image img {
    width: 80%;
    margin-right: 60px;
  }
}

/* Smartphones */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav a {
    margin: 0.4rem;
    font-size: 1rem;
  }

  .hero {
    height: auto;
    padding: 6rem 1.5rem 4rem 1.5rem;
    justify-content: center;
    text-align: center;
  }

  .hero-text-container {
    max-width: 90%;
    padding: 1.5rem;
    background: rgba(231, 230, 225, 0.15);
    backdrop-filter: blur(4px);
  }

  .hero-text-container h1 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .hero-text-container p {
    font-size: clamp(1rem, 4vw, 1.1rem);
    margin-bottom: 1.3rem;
  }

  .hero-text-container .listen-btn {
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
  }

  /* Nu live blok stackt mooi onder elkaar */
  #nu-live {
    margin-top: 0;
    padding: 3rem 1.5rem;
  }

  .nu-live-container {
    flex-direction: column-reverse;
    height: auto;
    border-radius: 18px;
  }

  .nu-live-content {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .nu-live-title {
    font-size: clamp(2rem, 6vw, 2.4rem);
  }

  .nu-live-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin-bottom: 1.5rem;
  }

  .nu-live-buttons {
    justify-content: center;
  }

  .nu-live-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin: 0;
  }

  /* Cards & section spacing */
  .section {
    padding: 3.5rem 1.2rem;
  }

  .show-cards {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.4rem;
  }

  footer {
    padding: 2rem 1rem;
    font-size: 0.95rem;
  }
}

/* Kleine telefoons (zoals iPhone 12 Mini) */
@media (max-width: 430px) {
  .hero {
    padding: 5rem 1rem 3rem 1rem;
  }

  .hero-text-container h1 {
    font-size: 1.4rem;
  }

  .nu-live-title {
    font-size: 1.8rem;
  }

  .nu-live-subtitle {
    font-size: 0.95rem;
  }

  .nu-live-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }

  footer {
    font-size: 0.85rem;
  }
}

/* Touch devices: hover neutraal maken */
@media (hover: none) {
  .card:hover,
  .hero-text-container .listen-btn:hover,
  button:hover,
  .nu-live-btn:hover {
    transform: none;
  }
}
