/* ============================================================
   jeWelste — Netlify rebuild
   Design tokens + global styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --yellow:  #FFE800;
  --orange:  #FF8800;
  --dark:    #161616;
  --dark2:   #313131;
  --text:    #454545;
  --link:    #6190A2;
  --white:   #ffffff;
  --radius:  4px;
  --max-w:   1200px;
  --nav-h:   70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--yellow); }

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.2;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(255,232,0,.08);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after { content: ' ▾'; font-size: .65rem; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  border-top: 3px solid var(--yellow);
  min-width: 200px;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  /* Transparante brug zodat hover niet onderbreekt bij de gap */
  margin-top: 0;
}

/* Pseudo-element overbrugt de ruimte tussen link en menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: .75rem;
  border-radius: 0;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 32px;
    gap: 4px;
    border-top: 3px solid var(--yellow);
  }

  .nav-links.open { display: flex; }

  .dropdown-menu {
    position: static;
    border-top: none;
    border-left: 3px solid var(--yellow);
    margin-left: 12px;
    box-shadow: none;
    background: var(--dark2);
    display: block !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.jewelste.nl/wp-content/uploads/2023/05/jeWelste_DownUnderBeach-49-of-62-1024x683.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.35);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.hero h1 span { color: var(--yellow); }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.25); }

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
}

.btn-primary:hover { background: #ffe800dd; color: var(--dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover { background: rgba(255,255,255,.1); color: var(--white); }

.btn-dark {
  background: var(--dark);
  color: var(--yellow);
}

/* ============================================================
   SECTIONS
   ============================================================ */

section { padding: 80px 0; }

.section-light { background: var(--white); }
.section-gray  { background: #f5f5f5; }
.section-dark  { background: var(--dark); color: var(--white); }
.section-dark2 { background: var(--dark2); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-header p {
  max-width: 620px;
  margin: 0 auto;
  opacity: .75;
}

.section-dark .section-header h2,
.section-dark2 .section-header h2 { color: var(--yellow); }

/* Accent line */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--yellow);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: var(--yellow);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark);
  margin-top: 6px;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   BOOKING CARDS
   ============================================================ */

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.booking-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
}

.booking-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.5);
  transition: filter .3s, transform .3s;
  z-index: 0;
}

.booking-card:hover .booking-card-bg {
  filter: brightness(.65);
  transform: scale(1.04);
}

.booking-card-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  width: 100%;
}

.booking-card h3 {
  font-size: 1.25rem;
  color: var(--yellow);
  margin-bottom: 8px;
}

.booking-card p {
  font-size: .875rem;
  opacity: .9;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: rgba(255,255,255,.05);
  border-left: 4px solid var(--yellow);
  padding: 24px;
  border-radius: 0 8px 8px 0;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 12px;
  opacity: .9;
}

.testimonial cite {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  color: var(--yellow);
  font-style: normal;
}

/* ============================================================
   AGENDA
   ============================================================ */

.agenda-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.agenda-tab {
  padding: 8px 18px;
  border-radius: 99px;
  border: 2px solid var(--yellow);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  color: var(--text);
  transition: background .2s, color .2s;
}

.agenda-tab.active,
.agenda-tab:hover {
  background: var(--yellow);
  color: var(--dark);
}

.event-list { display: flex; flex-direction: column; gap: 12px; }

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--yellow);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}

.event-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateX(4px);
}

.event-date {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.event-date .month {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
}

.event-info h3 {
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 4px;
}

.event-info .event-meta {
  font-size: .8rem;
  color: #777;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.event-badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 99px;
}

.badge-openbaar { background: #e0f7e9; color: #1a7a3a; }
.badge-besloten { background: #ffecd6; color: #a85500; }

.event-empty {
  text-align: center;
  padding: 60px 24px;
  color: #999;
  font-style: italic;
}

@media (max-width: 600px) {
  .event-card {
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }
  .event-badge { grid-column: 1 / -1; justify-self: start; }
}

/* ============================================================
   MEDIA / GALLERY
   ============================================================ */

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* ============================================================
   BAND MEMBERS
   ============================================================ */

.band-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.band-member {
  text-align: center;
  width: 140px;
}

.band-member-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--dark2);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--yellow);
  border: 3px solid var(--yellow);
}

.band-member h4 {
  font-size: .9rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.band-member p {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   FORM
   ============================================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-note {
  font-size: .8rem;
  color: #888;
  margin-bottom: 20px;
}

.form-success {
  display: none;
  background: #e0f7e9;
  border: 2px solid #1a7a3a;
  border-radius: 8px;
  padding: 20px 24px;
  color: #1a7a3a;
  font-weight: 600;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
}

/* ============================================================
   CLIENTS
   ============================================================ */

.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  opacity: .7;
}

.clients-list span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 99px;
}

/* ============================================================
   DOWNLOADS
   ============================================================ */

.download-group { margin-bottom: 48px; }

.download-group h3 {
  font-size: 1.1rem;
  color: var(--yellow);
  border-bottom: 2px solid var(--dark2);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.download-list { display: flex; flex-direction: column; gap: 10px; }

.download-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.download-item:hover {
  background: rgba(255,232,0,.08);
  border-color: var(--yellow);
  color: var(--white);
}

.download-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.download-item span:last-child {
  font-size: .85rem;
  opacity: .6;
  margin-left: auto;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 60px) 24px 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
}

.page-hero h1 span { color: var(--yellow); }

.page-hero p {
  margin: 12px auto 0;
  max-width: 560px;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p { font-size: .875rem; line-height: 1.7; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yellow);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--yellow); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: border-color .2s, color .2s, background .2s;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255,232,0,.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}

.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--yellow); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PAGE-SPECIFIC UTILS
   ============================================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
}

.text-yellow { color: var(--yellow); }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mt-md { margin-top: 32px; }

/* Announcement banner responsive */
@media (max-width: 600px) {
  .announcement-bar { flex-direction: column; gap: 8px; }
}

/* Breadcrumb */
.breadcrumb {
  font-size: .8rem;
  margin-top: 12px;
  color: rgba(255,255,255,.5);
}

.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }
