/* ==========================================================
   Funkybrother — styles.css
   Kleuren: crème #fdf1dc · bruin #3a2010 · oranje #ef7f1a
            geel #ffd23f · roze #c9317e · paars #7b2d8b
   ========================================================== */

/* ---------- Basis ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #fdf1dc;
  font-family: 'Outfit', sans-serif;
  color: #3a2010;
  overflow-x: hidden;
}

a {
  color: #c9317e;
  text-decoration: none;
}

a:hover {
  color: #e8590c;
}

/* ---------- Animaties ---------- */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(.7); }
  50%      { opacity: 1;  transform: scale(1.2); }
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block;
  padding: 17px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .05em;
}

.btn-dark {
  background: #3a2010;
  color: #ffd66e;
  box-shadow: 4px 4px 0 rgba(58, 32, 16, .3);
}

.btn-dark:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(58, 32, 16, .35);
  color: #ffd66e;
}

.btn-outline {
  border: 2.5px solid #3a2010;
  color: #3a2010;
}

.btn-outline:hover {
  background: rgba(58, 32, 16, .12);
  color: #3a2010;
}

.btn-big {
  padding: 20px 48px;
  font-size: 20px;
  box-shadow: 5px 5px 0 #c9317e;
}

.btn-big:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #c9317e;
}

/* ---------- Sectiekoppen ---------- */
.section-title {
  font-family: 'Passion One', cursive;
  font-weight: 900;
  font-size: clamp(46px, 6vw, 64px);
  line-height: .92;
  margin: 0;
  color: #e8590c;
  transform: skewX(-4deg);
  text-shadow: 3px 3px 0 #ffd23f, 6px 6px 0 #c9317e;
}

.section-title-light {
  color: #ffd23f;
  text-shadow: 3px 3px 0 #c9317e, 6px 6px 0 #a02565;
}

.section-sub {
  margin: 10px 0 44px;
  font-size: 18px;
  color: rgba(253, 241, 220, .8);
}

.section-sub-dark {
  color: #6b4526;
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(253, 241, 220, .92);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid #3a2010;
}

.nav-logo {
  font-family: 'Passion One', cursive;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .02em;
  color: #e8590c;
  transform: skewX(-6deg);
  display: inline-block;
  text-shadow: 2px 2px 0 #c9317e;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px clamp(16px, 2.5vw, 30px);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
}

.nav-links a {
  color: #3a2010;
}

.nav-links a:hover {
  color: #c9317e;
}

.nav-cta,
.nav-links a.nav-cta {
  padding: 11px 24px;
  border-radius: 999px;
  background: #c9317e;
  color: #fdf1dc;
  box-shadow: 3px 3px 0 #3a2010;
}

.nav-links a.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #3a2010;
  color: #fdf1dc;
}

/* “← Alle merken” knop (desktop) */
.nav-brands,
.nav-links a.nav-brands {
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid #3a2010;
  color: #3a2010;
}

.nav-links a.nav-brands:hover {
  background: rgba(58, 32, 16, .1);
  color: #3a2010;
}

/* Hamburger-knop (mobiel) */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2.5px solid #3a2010;
  border-radius: 12px;
  background: #ffd23f;
  cursor: pointer;
  box-shadow: 2px 2px 0 #3a2010;
}

.hamburger-bar,
.hamburger-bar::before,
.hamburger-bar::after {
  content: '';
  display: block;
  width: 22px;
  height: 2.5px;
  background: #3a2010;
}

.hamburger-bar::before { transform: translateY(-7px); }
.hamburger-bar::after  { transform: translateY(4.5px); }

/* Mobiel uitklapmenu */
.mobile-menu {
  display: none;
  position: sticky;
  top: 74px;
  z-index: 49;
  flex-direction: column;
  gap: 4px;
  padding: 16px clamp(16px, 4vw, 48px) 22px;
  background: #fdf1dc;
  border-bottom: 3px solid #3a2010;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .06em;
  box-shadow: 0 12px 24px rgba(58, 32, 16, .15);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: #3a2010;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(58, 32, 16, .12);
}

.mobile-menu-cta {
  margin-top: 14px;
  text-align: center;
  padding: 14px !important;
  border-radius: 999px;
  border-bottom: none !important;
  background: #c9317e;
  color: #fdf1dc !important;
  box-shadow: 3px 3px 0 #3a2010;
}

.mobile-menu-brands {
  margin-top: 10px;
  text-align: center;
  padding: 14px !important;
  border-radius: 999px;
  border: 2px solid #3a2010;
  border-bottom: 2px solid #3a2010 !important;
}

/* Wissel desktop-links en hamburger bij smalle schermen */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: radial-gradient(1100px 700px at 68% 42%, #ffb347 0%, #f89a2e 34%, #ef7f1a 62%, #e8710f 100%);
}

.hero-rays {
  position: absolute;
  inset: -40%;
  background: repeating-conic-gradient(from 8deg at 68% 52%, rgba(255, 214, 110, .4) 0deg 7deg, transparent 7deg 18deg);
  animation: spin 90s linear infinite;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  align-items: center;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px clamp(16px, 4vw, 48px) 40px;
  min-height: 700px;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.hero-badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  background: #3a2010;
  color: #ffd66e;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2em;
  margin-bottom: 26px;
}

.hero-title {
  margin: 0 0 6px;
  font-family: 'Passion One', cursive;
  font-weight: 900;
  font-size: clamp(64px, 9.5vw, 118px);
  line-height: .86;
  letter-spacing: .01em;
  color: #ffd23f;
  transform: skewX(-6deg);
  text-shadow: 3px 3px 0 #c9317e, 6px 6px 0 #c9317e, 9px 9px 0 #a02565, 12px 12px 24px rgba(58, 32, 16, .35);
}

.hero-title span {
  color: #fdf1dc;
  text-shadow: 3px 3px 0 #7b2d8b, 6px 6px 0 #7b2d8b, 9px 9px 0 #5c2168, 12px 12px 24px rgba(58, 32, 16, .35);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: #4a2410;
  max-width: 440px;
  margin: 26px 0 32px;
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo img {
  display: block;
  height: clamp(430px, 44vw, 620px);
  width: auto;
  filter: drop-shadow(0 24px 40px rgba(58, 32, 16, .35));
}

/* Twinkelende sterren rond de foto */
.spark {
  position: absolute;
  animation: twinkle 2.4s ease-in-out infinite;
}

.spark-1 {
  top: 40px;
  right: 4px;
  font-size: 34px;
  color: #fdf1dc;
  text-shadow: 0 0 14px rgba(255, 255, 255, .9);
}

.spark-2 {
  bottom: 130px;
  left: -8px;
  font-size: 24px;
  color: #ffd23f;
  text-shadow: 0 0 12px rgba(255, 210, 63, .9);
  animation-duration: 3.1s;
  animation-delay: .6s;
}

.spark-3 {
  top: 180px;
  left: 10px;
  font-size: 17px;
  color: #c9317e;
  animation-duration: 2.8s;
  animation-delay: 1.3s;
}

/* Golvende overgang naar crème */
.hero-wave {
  position: relative;
  height: 70px;
  margin-top: -70px;
  z-index: 4;
}

.hero-wave-circle {
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 220%;
  height: 140px;
  margin-left: -110%;
  border-radius: 50% 50% 0 0;
  background: #fdf1dc;
}

/* ========== MARQUEE ========== */
.marquee {
  position: relative;
  z-index: 5;
  background: #3a2010;
  padding: 15px 0;
  overflow: hidden;
  transform: rotate(-1.2deg);
  margin: -34px -20px 0;
  box-shadow: 0 8px 24px rgba(58, 32, 16, .25);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: 'Righteous', cursive;
  font-size: 20px;
  letter-spacing: .12em;
  white-space: nowrap;
  color: #ffd66e;
}

.marquee-track span {
  padding-right: 32px;
}

.marquee-track em {
  font-style: normal;
}

.marquee-track em.p { color: #c9317e; }
.marquee-track em.o { color: #ef7f1a; }

/* ========== OVER ========== */
.over-section {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(36px, 4.5vw, 55px) clamp(16px, 4vw, 48px) 100px;
}

.over-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.over-left {
  position: relative;
}

.over-dots {
  position: absolute;
  top: -50px;
  right: -20px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(201, 49, 126, .14) 0 9px, transparent 9px 22px);
}

.over-tags {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.tag {
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  box-shadow: 2px 2px 0 #3a2010;
}

.tag-yellow { background: #ffd23f; color: #3a2010; }
.tag-pink   { background: #c9317e; color: #fdf1dc; }
.tag-orange { background: #ef7f1a; color: #3a2010; }

.over-copy {
  font-size: 18px;
  line-height: 1.75;
  color: #4a2a15;
}

.over-copy p {
  margin: 0 0 20px;
  text-wrap: pretty;
}

.over-copy p:last-child {
  margin-bottom: 0;
}

.over-copy strong {
  color: #c9317e;
}

/* ========== OPTREDENS ========== */
.gigs-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, #7b2d8b, #5c2168);
}

/* Dambord-randen boven en onder */
.checker {
  position: absolute;
  left: 0;
  right: 0;
  height: 26px;
  background: repeating-conic-gradient(#3a2010 0% 25%, #ffd23f 0% 50%) 0 0 / 52px 52px;
  opacity: .9;
}

.checker-top { top: 0; }

.checker-bottom {
  bottom: 0;
  background-position: 26px 0;
}

.gigs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.gigs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Uitgelichte kaart (Paaspop) */
.gig-featured {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 36px;
  background: linear-gradient(160deg, #ef7f1a, #c9317e);
  box-shadow: 8px 8px 0 #ffd23f;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
}

.gig-featured-rays {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: repeating-conic-gradient(rgba(255, 210, 63, .35) 0deg 12deg, transparent 12deg 28deg);
  animation: spin 40s linear infinite;
}

.gig-featured-badge {
  position: absolute;
  top: 28px;
  left: 32px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffd23f;
  color: #3a2010;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  box-shadow: 2px 2px 0 #3a2010;
}

.gig-featured-name {
  font-family: 'Passion One', cursive;
  font-weight: 900;
  font-size: 56px;
  margin: 0;
  color: #fdf1dc;
  line-height: .9;
  text-shadow: 3px 3px 0 rgba(58, 32, 16, .3);
}

.gig-featured-year {
  font-family: 'Passion One', cursive;
  font-weight: 900;
  font-size: 32px;
  margin: 0 0 12px;
  color: #ffd23f;
}

.gig-featured-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(253, 241, 220, .9);
}

/* Gewone optreden-kaarten */
.gig-card {
  position: relative;
  border-radius: 22px;
  padding: 26px 28px;
  background: rgba(253, 241, 220, .08);
  border: 2px solid rgba(255, 210, 63, .35);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gig-card:hover {
  border-color: #ffd23f;
  background: rgba(253, 241, 220, .14);
}

.gig-year {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #ffb347;
}

.gig-name {
  font-family: 'Righteous', cursive;
  font-size: 23px;
  color: #fdf1dc;
}

.gig-sub {
  font-size: 15px;
  color: rgba(253, 241, 220, .65);
}

/* ========== SOCIALS ========== */
.socials-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 110px) clamp(16px, 4vw, 48px) 100px;
}

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

.social-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border-radius: 26px;
  border: 3px solid #3a2010;
  box-shadow: 6px 6px 0 #3a2010;
}

.social-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 #3a2010;
}

.social-insta {
  background: #c9317e;
  color: #fdf1dc;
}

.social-insta:hover { color: #fdf1dc; }

.social-tiktok {
  background: #ffd23f;
  color: #3a2010;
}

.social-tiktok:hover { color: #3a2010; }

.social-sc {
  background: #ef7f1a;
  color: #3a2010;
}

.social-sc:hover { color: #3a2010; }

.social-name {
  font-family: 'Righteous', cursive;
  font-size: 25px;
}

.social-desc {
  font-size: 15px;
  opacity: .85;
}

/* ========== CONTACT ========== */
.contact-section {
  position: relative;
  padding: clamp(70px, 9vw, 110px) clamp(16px, 4vw, 48px) 0;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(900px 560px at 50% 100%, #ffb347 0%, #f89a2e 40%, #fdf1dc 78%);
}

.contact-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.contact-kicker {
  font-size: 17px;
  letter-spacing: .24em;
  color: #c9317e;
  font-weight: 700;
  margin: 0 0 14px;
}

.contact-title {
  font-family: 'Passion One', cursive;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 84px);
  line-height: .95;
  margin: 0 0 22px;
  color: #e8590c;
  transform: skewX(-4deg);
  text-shadow: 4px 4px 0 #ffd23f, 8px 8px 0 #c9317e;
}

.contact-sub {
  font-size: 19px;
  line-height: 1.65;
  color: #4a2a15;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.contact-mail {
  margin: 26px 0 80px;
  font-size: 15px;
  color: #6b4526;
}

.contact-mail a {
  font-weight: 700;
}

/* Disco-dansvloer onderaan */
.contact-floor {
  position: relative;
  height: 90px;
  background: repeating-conic-gradient(#3a2010 0% 25%, #c9317e 0% 50%) 0 0 / 90px 90px;
  opacity: .85;
  mask-image: linear-gradient(180deg, transparent, black 65%);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 65%);
}

/* ========== FOOTER ========== */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 22px clamp(16px, 4vw, 48px);
  background: #3a2010;
  font-size: 14px;
  color: rgba(253, 241, 220, .75);
}

.footer-logo {
  font-family: 'Passion One', cursive;
  font-weight: 900;
  font-size: 18px;
  color: #ffd66e;
  transform: skewX(-6deg);
  display: inline-block;
}
