* {
  box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3f4f6;
  color: #222;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  margin: 0;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #2f2963;
}

.logoimg {
  width: 4vw;
}


.navbar nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.login {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.signup {
  text-decoration: none;
  background: #f59e0b;
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

/* HERO */
.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  padding: 30px 60px 60px;
  gap: 30px;
}

.hero-left h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  color: #2d2a5a;
  margin-bottom: 22px;
}

.hero-left h1 span {
  font-family: Georgia, serif;
  font-style: italic;
  color: #e6a56d;
  font-weight: 500;
}

.hero-left p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}

.explore-btn {
  border: none;
  background: #f39a2d;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}


.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 760px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cardss-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.art-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.45s ease;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.pos-0 {
  transform: translate(-270%, -50%) scale(0.8) rotate(-8deg);
  opacity: 0.45;
  z-index: 1;
}

.pos-1 {
  transform: translate(-155%, -50%) scale(0.9) rotate(-4deg);
  opacity: 0.7;
  z-index: 2;
}

.pos-2 {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 5;
}

.pos-3 {
  transform: translate(55%, -50%) scale(0.9) rotate(4deg);
  opacity: 0.7;
  z-index: 2;
}

.pos-4 {
  transform: translate(170%, -50%) scale(0.8) rotate(8deg);
  opacity: 0.45;
  z-index: 1;
}

.active {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ARROWS */
.arrow {
  position: absolute;
  bottom: 10px;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.arrow.left {
  left: 42%;
}

.arrow.right {
  right: 42%;
  background: #f39a2d;
  color: white;
}




/* ABOUT */
.about {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 8%;
  background: #ececec;
}

.about-text h2 {
  font-size: 52px;
  margin-bottom: 24px;
  color: #2f2963;
}

.about-text p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  max-width: 620px;
  display: block;
  margin: 0 auto;
  border-radius: 28px;
}








/* over ons */

.missie-lijst {
  list-style: none;
  padding: 0;
}


.missie-lijst li {
  margin: 10px 0;
  font-size: 18px;
}

.missie-lijst li::before {
  content: "🎯 ";
  margin-right: 5px;
}







/* FORM SECTION */
.form-section {
  min-height: 100vh;
  padding: 80px 24px;
  background:
    radial-gradient(circle at top left, rgba(243, 154, 45, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(47, 41, 99, 0.12), transparent 35%),
    linear-gradient(180deg, #f7f3ec 0%, #f3f4f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-hero-card {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 36px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(45, 42, 90, 0.12);
}


.form-intro {
  background: linear-gradient(135deg, #4e459a 0%, #2f2a5c 100%);
  color: white;
  border-radius: 30px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}




.form-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(20, 20, 40, 0.7),
      rgba(60, 40, 120, 0.7));
  z-index: -1;
}

.form-badge {
  display: inline-block;
  width: fit-content;
  background: #f39a2d;
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.form-intro h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.form-intro p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
}


.styled-form {
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #2f2963;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
  width: 100%;
  border: 1.5px solid rgba(47, 41, 99, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: #222;
  border-radius: 18px;
  padding: 15px 18px 15px 46px;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
  appearance: none;
}

.form-group input::placeholder {
  color: #8c8c8c;
}

.form-group input:hover,
.form-group select:hover {
  border-color: rgba(47, 41, 99, 0.25);
}

.form-group input:focus,
.form-group select:focus {
  border-color: #f39a2d;
  background: white;
  box-shadow:
    0 0 0 4px rgba(243, 154, 45, 0.18),
    0 8px 20px rgba(243, 154, 45, 0.12);
  transform: translateY(-1px);
}


.form-group::before {
  position: absolute;
  left: 16px;
  top: 44px;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.65;
  z-index: 2;
}

.icon-name::before {
  content: "👤";
}

.icon-email::before {
  content: "✉️";
}

.icon-age::before {
  content: "🎂";
}

.icon-phone::before {
  content: "📞";
}

.icon-city::before {
  content: "📍";
}

.icon-activity::before {
  content: "🎯";
}

.form-submit-btn {
  margin-top: 26px;
  border: none;
  background: linear-gradient(135deg, #f39a2d, #f59e0b);
  color: white;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(243, 154, 45, 0.35);
  transition: all 0.25s ease;
}

.form-submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(243, 154, 45, 0.45);
}



.accent-italic {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #e6a56d;
}

.error {
  display: none;
  margin-top: 8px;
  color: #a63c2f;
  font-size: 13px;
  font-weight: 600;
}



/* credit */

.nova-banner {
  background: #94adcb;
  padding: 40px 20px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 40px auto;
  color: #fff;
}

.nova-banner__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nova-banner__content {
  max-width: 500px;
}

.nova-banner__title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #2f2963;
}

.nova-banner__brand {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.nova-banner__subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.nova-banner__button {
  display: inline-block;
  background: rgb(241, 241, 241);
  color: #6482a6;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nova-banner__button:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.nova-banner__visual img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}



footer {
  text-align: center;
  background-color: white;
  font-family: Georgia, serif;
  font-style: italic;
  color: #2f2963;
  padding: 1vw 1vw;
}




.field-error {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #e53935;
  min-height: 18px;
  font-weight: 500;
}

.input-error {
  border: 2px solid #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12);
}

.success-popup {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.success-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.success-popup__box {
  background: #ffffff;
  color: #222;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #f39a2d;
  max-width: 360px;
  margin-top: 30vw;
}

.success-popup__box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}





.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #2f2963;
}

.desktop-only {
  display: flex;
}

.mobile-signup {
  display: none;
}










.activities-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 50px auto;
}

.activity-picker-v2 {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(23, 28, 45, 0.10);
  margin-bottom: 26px;
}

.activity-picker-v2__top {
  text-align: center;
  margin-bottom: 28px;
}

.activity-picker-v2__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(77, 72, 140, 0.08);
  color: #41398a;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid rgba(77, 72, 140, 0.10);
}

.activity-picker-v2__title {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.05;
  color: #2e275b;
}

.activity-picker-v2__text {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.activity-picker-v2__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.activity-tile-v2 {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 0.9 / 1;
  background: #d7d7d7;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.activity-tile-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.20);
}

.activity-tile-v2:focus-visible {
  outline: 3px solid rgba(243, 154, 45, 0.45);
  outline-offset: 3px;
}

.activity-tile-v2 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.activity-tile-v2:hover img {
  transform: scale(1.06);
  filter: brightness(0.82) contrast(1.05);
}

.activity-tile-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 16, 0.84) 0%, rgba(10, 10, 16, 0.16) 50%, rgba(10, 10, 16, 0.03) 100%);
  z-index: 1;
}

.activity-tile-v2::after {
  content: "Bekijk";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.activity-tile-v2 span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  text-align: left;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.activity-details-v2 {
  display: block;
}

.activity-panel-v2 {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 18px;
  min-height: 620px;
  margin-bottom: 24px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.activity-panel-v2.active {
  display: block;
  animation: panelFade 0.35s ease;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.activity-panel-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 14, 0.08) 0%, rgba(10, 10, 14, 0.20) 50%, rgba(10, 10, 14, 0.34) 100%);
  z-index: 0;
}

.activity-panel-v2>* {
  position: relative;
  z-index: 1;
}

.activity-panel-v2__back {
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.activity-panel-v2__back:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.activity-panel-v2__overlay {
  display: grid;
  gap: 20px;
  min-height: calc(620px - 32px);
}

.card-light,
.card-dark {
  border-radius: 26px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.card-light {
  background: rgba(255, 255, 255, 0.86);
  color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.60);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.card-dark {
  background: rgba(17, 17, 23, 0.72);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.activity-tag-v2 {
  display: inline-block;
  padding: 1vw;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.brown {
  background: #800f11;
}

.green {
  background: #2f8f46;
}

.blue {
  background: #76cff5;
  color: #111;
}

.dark {
  background: #3f4048;
}

.activity-btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.activity-btn-v2:hover {
  transform: translateY(-2px);
}

.brown-btn {
  background: #800f11;
  color: #fff;
}

.green-btn {
  background: #2f8f46;
  color: #fff;
}

.blue-btn {
  background: #76cff5;
  color: #111;
}

.white-btn {
  background: #fff;
  color: #111;
}

.map-box-v2 {
  width: 180px;
  height: 180px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 5px solid #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.map-box-v2 iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.brown-border {
  border-color: #800f11;
}

.green-border {
  border-color: #2f8f46;
}

.blue-border {
  border-color: #76cff5;
}

.white-border {
  border-color: #fff;
}

.info-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: 10px;
  line-height: 1.55;
  font-size: 15px;
}

.info-list strong {
  color: #2e275b;
}

.card-dark .info-list strong {
  color: #fff;
}

.media-box {
  border-radius: 24px;
  overflow: hidden;
  background: #d8d8d8;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

.media-box img,
.media-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.gallery-3 img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 16px;
}

.journal-panel {
  background:
    linear-gradient(rgba(80, 12, 12, 0.12), rgba(80, 12, 12, 0.28)),
    url("img/journal/bg3.jpg") center/cover no-repeat;
}

.football-panel {
  background:
    linear-gradient(rgba(25, 60, 15, 0.14), rgba(25, 60, 15, 0.32)),
    url("img/voetbal/bg.jpg") center/cover no-repeat;
}

.rap-panel {
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.26)),
    url("img/rap/bg.jpg") center/cover no-repeat;
}

.barber-panel {
  background:
    linear-gradient(rgba(120, 120, 120, 0.34), rgba(0, 0, 0, 0.72)),
    url("img/cut/bg.jpg") center/cover no-repeat;
}


.journal-layout-v2 {
  grid-template-columns: 1.2fr 0.9fr;
  align-items: stretch;
}

.journal-left-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.football-main-card-v2 h3,
.rap-main-card-v2 h3,
.dans-main-card-v2 h3,
.barber-main-card-v2 h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
}


.journal-left-v2 h3{
  margin: 0;
  line-height: 1.72;
  font-size: 35px;
  color: #800f11;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', Times, serif;
}


.journal-video-box-v2 {
  position: relative;
  flex: 0 0 auto;
  height: 23vw;
}

.journal-video-box-v2 .activity-btn-v2 {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

.journal-right-v2 {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.journal-description-card-v2 h4 {
  margin: 0 0 12px;
  color: #800f11;
  font-size: clamp(24px, 2vw, 34px);
    font-style: italic;
  font-family: Georgia, 'Times New Roman', Times, serif
}

.journal-description-card-v2 p,
.football-main-card-v2 p,
.rap-main-card-v2 p,
.dans-main-card-v2 p,
.barber-main-card-v2 p {
  margin: 0;
  line-height: 1.72;
  font-size: 15px;
}



.football-layout-v2 {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.football-photo-v2 {
  max-width: 430px;
  height: 220px;
  margin-bottom: 18px;
}




.rap-layout-v2 {
  grid-template-columns: 1.15fr 0.8fr;
  align-items: start;
}

.barber-layout-v2 {
  grid-template-columns: 1.15fr 0.95fr;
  grid-template-rows: 1fr 0.95fr;
  align-items: stretch;
}

.barber-main-card-v2 {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  padding: 5vw;
  height: 90%;
}

.barber-image-card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.dans-panel {
  background:
    linear-gradient(rgba(25, 60, 15, 0.14), rgba(25, 60, 15, 0.32)),
    url("img/bgdans2.jpg") center/cover no-repeat;
}

.dans-layout-v2 {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.dans-photo-v2 {
  max-width: 430px;
  height: 220px;
  margin-bottom: 18px;
}



.dans-photo-v2 {
  max-width: 430px;
  height: 240px;
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
}

.dans-photo-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.dans-photo-v2:hover img {
  transform: scale(1.04);
}

.dans-side-card-v2 {
  min-height: 100%;
}



@media (max-width: 991px) {
  .activity-picker-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-layout-v2,
  .football-layout-v2,
  .dans-layout-v2,
  .rap-layout-v2,
  .barber-layout-v2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .barber-main-card-v2 {
    grid-row: auto;
  }

  .info-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-box-v2 {
    width: 100%;
    max-width: 240px;
    height: 190px;
  }
    .dance-layout-v2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .activities-wrap {
    width: min(100% - 24px, 430px);
    margin: 30px auto;
  }

  .activity-picker-v2 {
    padding: 18px;
    border-radius: 24px;
  }

  .activity-picker-v2__top {
    margin-bottom: 18px;
  }

  .activity-picker-v2__title {
    font-size: 30px;
  }

  .activity-picker-v2__grid {
    gap: 12px;
  }

  .activity-tile-v2 {
    border-radius: 18px;
  }

  .activity-tile-v2 span {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 16px;
  }

  .activity-panel-v2 {
    border-radius: 22px;
    padding: 12px;
    min-height: auto;
  }

  .card-light,
  .card-dark {
    padding: 18px;
    border-radius: 20px;
  }

 .journal-video-box-v2 {
    height: 230px;
    min-height: unset;
  }

  .gallery-3 {
    gap: 8px;
  }

  .gallery-3 img {
    height: 90px;
  }

  .activity-btn-v2 {
    width: 100%;
    text-align: center;
  }
}
























@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }



  /* NAVBAR */

  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
  }

  .logo {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2f2963;
  }

  .logoimg {
    width: 10vw;
  }


  .menu-toggle {
    display: block;
    z-index: 1100;
  }

  .desktop-only {
    display: none;
  }

  .navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: white;
    padding: 10px 0;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .navbar nav.show {
    display: flex;
  }

  .navbar nav a {
    width: 100%;
    padding: 14px 20px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid #f2f2f2;
    background: white;
  }

  .navbar nav a:last-child {
    border-bottom: none;
  }

  .mobile-signup {
    display: block;
    background: #f59e0b;
    color: white !important;
    border-radius: 0;
  }



  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    padding: 2vw;
    gap: 22px;
    text-align: left;
    min-height: auto;
  }

  .hero-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1vw 7vw;
  }

  .hero-left h1 {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 14px;
    text-align: left;
  }

  .hero-left p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
    margin: 0 0 20px 0;
    text-align: left;
  }

  .explore-btn {
    padding: 12px 22px;
    font-size: 14px;
    align-self: flex-start;
  }

  .hero-right {
    width: 100%;
    justify-content: flex-start;
  }

  .slider-wrapper {
    max-width: 100%;
    width: 100%;
    height: 390px;
    overflow: visible;
  }

  .cardss-slider {
    width: 100%;
    height: 100%;
  }

  .art-card {
    width: 155px;
    height: 280px;
    border-radius: 20px;
  }

  .art-card {
    width: 150px;
    height: 280px;
    border-radius: 20px;
  }

  .pos-0 {
    transform: translate(-165%, -50%) scale(0.76) rotate(-8deg);
  }

  .pos-1 {
    transform: translate(-102%, -50%) scale(0.87) rotate(-4deg);
  }

  .pos-3 {
    transform: translate(2%, -50%) scale(0.87) rotate(4deg);
  }

  .pos-4 {
    transform: translate(65%, -50%) scale(0.76) rotate(8deg);
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: -6px;
  }

  .arrow.left {
    left: 34%;
  }

  .arrow.right {
    right: 34%;
  }


  /* ABOUT */
  .about {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 16px;
    min-height: auto;
  }

  .about-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 1vw 5vw;
  }

  .about-text h2 {
    font-size: 38px;
    margin-bottom: 14px;
    text-align: center;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
    text-align: left;
  }

  .missie-lijst {
    padding-left: 0;
    margin-top: 10px;
  }

  .missie-lijst li {
    font-size: 15px;
    text-align: left;
  }

  .about-image img {
    max-width: 100%;
    border-radius: 20px;
  }





























  /* VLOTCODE BANNER */
  .nova-banner {
    margin: 24px 16px;
    padding: 24px 16px;
    border-radius: 20px;
  }

  .nova-banner__container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .nova-banner__title {
    font-size: 24px;
  }

  .nova-banner__brand {
    font-size: 18px;
  }

  .nova-banner__subtitle {
    font-size: 15px;
  }

  .nova-banner__button {
    padding: 10px 18px;
    font-size: 14px;
  }

  .nova-banner__visual img {
    max-width: 100%;
    border-radius: 16px;
  }

  /* FORM */
  .form-section {
    min-height: auto;
    padding: 40px 14px;
  }

  .form-hero-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
  }

  .form-intro {
    padding: 24px 20px;
    border-radius: 20px;
    text-align: center;
  }

  .form-intro h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .styled-form {
    padding: 8px 4px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group select {
    font-size: 16px;
    padding: 14px 14px 14px 42px;
    border-radius: 14px;
  }

  .form-group::before {
    top: 42px;
    left: 14px;
    font-size: 15px;
  }

  .form-submit-btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    margin-top: 18px;
  }

   .success-popup {
    right: 12px;
    left: 12px;
    top: 16px;
  }

  .success-popup__box {
    max-width: 100%;
    padding: 16px 18px;
    font-size: 0.92rem;
  } 

  /* FOOTER */
  footer {
    padding: 16px 12px;
    font-size: 14px;
    line-height: 1.5;
  }
}