/* DME Website Rebuild v3 — style.css
   1:1 match met dutchmusicexport.nl structuur
   Kleuren: #211ACA, #fff, #000. Dat is alles.
*/

:root {
  --dme-blue: #211ACA;
  --dme-white: #FFFFFF;
  --dme-black: #000000;
  --font: 'Nunito', system-ui, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--dme-black);
  background: var(--dme-white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 50px;
  background: var(--dme-blue);
}
.header__inner {
  max-width: 100%;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.header__nav a {
  color: var(--dme-white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 18px;
  border-radius: 20px;
  transition: background .2s, color .2s;
}
.header__nav a:hover {
  background: var(--dme-white);
  color: var(--dme-blue);
}
.header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}
.lang-btn {
  color: var(--dme-white);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.4);
  transition: background .2s, border-color .2s;
}
.lang-btn--active {
  background: rgba(255,255,255,.15);
  border-color: var(--dme-white);
}
.lang-btn:hover {
  background: rgba(255,255,255,.2);
}
.header__hamburger {
  display: none;
  color: var(--dme-white);
  font-size: 24px;
  margin-left: auto;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dme-black);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .25);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo {
  width: clamp(300px, 50vw, 700px);
  height: auto;
}
.hero__tagline {
  position: absolute;
  bottom: 60px;
  left: 48px;
  z-index: 3;
  color: var(--dme-white);
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 600;
  max-width: 640px;
  line-height: 1.3;
}

/* ============ NEWS ITEMS ============ */
.news-item {
  display: grid;
  grid-template-columns: 29% 71%;
  min-height: 744px;
  width: 100%;
}
.news-item--reverse {
  grid-template-columns: 71% 29%;
}
.news-item--reverse .news-item__image { order: -1; }

/* Blue variant */
.news-item--blue {
  background: var(--dme-blue);
}
.news-item--blue .news-item__text {
  color: var(--dme-white);
}
.news-item--blue .news-item__text h2 {
  color: var(--dme-white);
}
.news-item--blue .news-item__text p {
  color: rgba(255,255,255,.85);
}

/* White variant */
.news-item--white .news-item__text {
  color: var(--dme-black);
}
.news-item--white .news-item__text h2 {
  color: var(--dme-black);
}

/* Text column */
.news-item__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  gap: 20px;
}
.news-item__text h2 {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.news-item__text p {
  font-size: 16px;
  line-height: 1.7;
}
.news-item__chevron {
  font-size: 48px;
  line-height: 1;
  color: rgba(255,255,255,.5);
  font-weight: 300;
}
.news-item__chevron--blue {
  color: var(--dme-blue);
  opacity: .6;
}

/* Image column */
.news-item__image {
  position: relative;
  overflow: hidden;
}
.news-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform .2s, opacity .2s;
  margin-top: 12px;
}
.btn:hover {
  transform: scale(1.03);
  opacity: .9;
}
.btn--white {
  background: var(--dme-white);
  color: var(--dme-blue);
}
.btn--black {
  background: var(--dme-black);
  color: var(--dme-white);
}
.btn--blue {
  background: var(--dme-blue);
  color: var(--dme-white);
}

/* ============ DISCOVER BAR ============ */
.discover-bar {
  background: var(--dme-blue);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discover-bar__btn {
  display: block;
  width: 100%;
  max-width: 1840px;
  background: var(--dme-white);
  color: var(--dme-blue);
  text-align: center;
  font-family: var(--font);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  padding: 28px 48px;
  border-radius: 40px;
  transition: transform .2s, box-shadow .2s;
}
.discover-bar__btn:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}

/* ============ INSTAGRAM ============ */
.instagram {
  padding: 80px 48px;
  background: var(--dme-white);
}
.instagram__heading {
  text-align: center;
  font-size: clamp(20px, 3vw, 35px);
  font-weight: 700;
  color: var(--dme-blue);
  margin-bottom: 48px;
}
.instagram__heading a {
  color: var(--dme-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.instagram__heading a:hover {
  opacity: .7;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.instagram__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
.instagram__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e6ff 0%, #d4d1ff 50%, #c0bcff 100%);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dme-blue);
  padding: 80px 48px 48px;
  color: var(--dme-white);
}
.footer__logo-area {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 80px;
}
.footer__logo {
  width: clamp(200px, 40vw, 500px);
  height: auto;
  opacity: .9;
}
.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.footer__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .6;
  display: block;
  margin-bottom: 16px;
}
.footer__partners {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__partners a {
  opacity: .8;
  transition: opacity .2s;
}
.footer__partners a:hover {
  opacity: 1;
}
.footer__partners img {
  display: block;
  height: auto;
  max-height: 50px;
  width: auto;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social a {
  color: var(--dme-white);
  opacity: .7;
  transition: opacity .2s, transform .2s;
}
.footer__social a:hover {
  opacity: 1;
  transform: scale(1.15);
}
.footer__social svg {
  width: 22px;
  height: 22px;
}

/* ============ NEWSLETTER FAB ============ */
.newsletter-fab {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  background: var(--dme-blue);
  color: var(--dme-white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(33, 26, 202, .4);
  transition: transform .2s, box-shadow .2s;
}
.newsletter-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(33, 26, 202, .5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__lang { display: none; }
  .header__hamburger { display: block; }

  .news-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .news-item--reverse {
    grid-template-columns: 1fr;
  }
  .news-item--reverse .news-item__image { order: 0; }
  .news-item__image {
    position: relative;
    height: 300px;
  }
  .news-item__image img {
    position: absolute;
  }
  .news-item__text {
    padding: 40px 24px;
  }

  .hero__tagline {
    left: 24px;
    right: 24px;
    bottom: 40px;
  }

  .instagram {
    padding: 48px 24px;
  }
  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 48px 24px 32px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .instagram__grid {
    grid-template-columns: 1fr;
  }
}
