/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.02em;
  font-family: "Bebas Neue", sans-serif;
}

/* ============================================
   HEADER SECTION
   ============================================ */
header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background image */
.background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Main gradient overlay (purple-900 to cyan-900) */
.gradient-overlay-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.85) 0%, rgba(107, 33, 168, 0.75) 50%, rgba(22, 78, 99, 0.85) 100%);
  z-index: 1;
}

/* Additional gradient layer for depth */
.gradient-overlay-depth {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1) 0%, rgba(168, 85, 247, 0.15) 50%, rgba(236, 72, 153, 0.1) 100%);
  z-index: 2;
}

/* Radial gradient left (cyan glow) */
.glow-left {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
  z-index: 3;
  pointer-events: none;
}

/* Radial gradient right (purple glow) */
.glow-right {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(168, 85, 247, 0.12) 0%, transparent 50%);
  z-index: 3;
  pointer-events: none;
}

/* Grid pattern overlay */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
  z-index: 4;
  pointer-events: none;
}

/* Glowing accent circles */
.glow-circle-top {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background: rgba(6, 182, 212, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  animation: pulse 3s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}

.glow-circle-bottom {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: rgba(168, 85, 247, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1s;
  z-index: 3;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
/* ============================================
   CONTENT STYLING
   ============================================ */
header .content {
  position: relative;
  z-index: 10;
  color: white;
  padding: 0 24px;
}

/* Glowing gradient text (Bebas Neue) */
.glow-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(224, 242, 254) 50%, rgb(243, 232, 255) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.3));
}

/* Lead paragraph (Inter) */
header .lead {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgb(243, 232, 255);
  margin-bottom: 2rem;
}

/* Gradient button */
.btn-gradient {
  font-family: "Inter", sans-serif;
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gradient:hover {
  background: linear-gradient(to right, rgb(8, 145, 178), rgb(147, 51, 234));
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
  transform: translateY(-2px);
  color: white;
}

/* ============================================
   LOGO STYLING
   ============================================ */
.logo-container {
  position: relative;
  display: inline-block;
}

.logo-img {
  width: 500px;
  height: 500px;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 0 50px rgba(168, 85, 247, 0.5));
  animation: float 6s ease-in-out infinite;
}

/* Glow effect behind logo */
.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: linear-gradient(to right, rgba(6, 182, 212, 0.3), rgba(168, 85, 247, 0.3));
  border-radius: 50%;
  filter: blur(96px);
  z-index: 5;
  pointer-events: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .glow-text {
    font-size: 48px;
  }
  header .lead {
    font-size: 1.1rem;
  }
  .logo-img {
    width: 320px;
    height: 320px;
  }
  .logo-glow {
    width: 400px;
    height: 400px;
  }
  .glow-circle-top,
  .glow-circle-bottom {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .glow-text {
    font-size: 57px;
  }
  header .lead {
    font-size: 1rem;
  }
  .logo-img {
    width: 300px;
    height: 300px;
  }
  .logo-glow {
    width: 300px;
    height: 300px;
  }
  .btn-gradient {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}
/* ============================================
   OVER ONS SECTION
   ============================================ */
#about {
  padding: 80px 0px 160px 0px;
}

/* Section Title met gradient */
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  -webkit-background-clip: text;
  display: inline-block;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

/* Section tekst */
.section-text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgb(71, 85, 105); /* slate-600 */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About cards */
.about-card {
  background-color: rgb(248, 250, 252); /* slate-50 */
  padding: 2rem;
  border-radius: 0.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card title met gradient */
.card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  -webkit-background-clip: text;
  display: inline-block;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card tekst */
.card-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(71, 85, 105); /* slate-600 */
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #about {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-text {
    font-size: 1rem;
  }
  .card-title {
    font-size: 1.25rem;
  }
}
:root {
  --purple-900-oklch: oklch(0.381 0.176 304.987);
  --dark-slate: oklch(.208 .042 265.755);
}

.djs-section {
  background: linear-gradient(135deg, var(--dark-slate) 20%, var(--purple-900-oklch) 45%, oklch(36% 0.12 310deg) 100%);
  color: #fff;
  padding: 96px 0px 96px 0px;
}
.djs-section .flex-md-row-reverse .dj-photo {
  border-radius: 0rem 1rem 1rem 0rem; /* alleen links afgerond */
}
.djs-section .flex-md-row-reverse .dj-photo img {
  border-radius: 0rem 1rem 1rem 0rem; /* alleen links afgerond */
}
.djs-section .glow-text {
  font-size: 48px;
}
.djs-section .container {
  gap: 20rem;
}
.djs-section .container .row p {
  font-size: 16px;
}
.djs-section .container .row:first-of-type p {
  margin-bottom: 64px;
  font-size: 18px;
}
.djs-section .container .row:first-of-type p:nth-of-type(1) {
  color: oklch(90.2% 0.063 306.703deg);
}

/* cards */
.dj-card {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10rem;
}
.dj-card .col-md-6 {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.dj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(150, 100, 255, 0.25);
}
.dj-card .content {
  padding: 48px;
}
.dj-card h3 {
  font-size: 36px;
  letter-spacing: 0.02em;
}
.dj-card .dj-photo {
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  flex: 1;
  height: 100%;
  width: 100%;
  border-radius: 1rem 0 0 1rem; /* alleen links afgerond */
}
.dj-card .dj-photo img {
  width: 100%;
  height: 45vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center;
     object-position: center;
  border-radius: 1rem 0 0 1rem; /* alleen links afgerond */
}

@media (max-width: 768px) {
  .dj-card {
    flex-direction: column;
    height: auto;
    overflow: hidden;
  }
  .dj-card .dj-photo {
    border-radius: 1rem 1rem 0 0; /* alleen boven */
  }
  .dj-card .dj-photo img {
    border-radius: 1rem 1rem 0 0;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .dj-card .content {
    border-radius: 0 0 1rem 1rem; /* alleen onder */
  }
  /* --- Reversed card fix --- */
  .dj-card.flex-md-row-reverse {
    flex-direction: column; /* zet weer normale volgorde */
  }
  .dj-card.flex-md-row-reverse .dj-photo {
    border-radius: 1rem 1rem 0 0 !important; /* overschrijft oude radius */
  }
  .dj-card.flex-md-row-reverse .dj-photo img {
    border-radius: 1rem 1rem 0 0 !important;
  }
  .dj-card.flex-md-row-reverse .content {
    border-radius: 0 0 1rem 1rem !important; /* voorkomt rare rechterhoek */
  }
}
/* ============================================
   WORKSHOPS SECTION
   ============================================ */
.workshops-section {
  background: linear-gradient(to bottom right, rgb(248, 250, 252) 0%, rgb(250, 245, 255) 50%, rgb(236, 254, 255) 100%);
  padding: 80px 0;
}

/* Section Title */
.workshops-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  -webkit-background-clip: text;
  display: inline-block;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.workshops-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75;
  color: rgb(51, 65, 85); /* slate-700 */
  max-width: 672px;
  margin: 0 auto 3rem;
}

/* Workshop Card */
.workshop-card {
  position: relative;
  background: white;
  border: 2px solid rgb(6, 182, 212); /* cyan-500 ring */
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.workshop-card:hover {
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
}

/* "Nieuw!" Badge */
.workshop-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  color: white;
  padding: 0.25rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10;
}

/* Workshop Content */
.workshop-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

/* Icon */
.workshop-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* Workshop Name */
.workshop-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgb(15, 23, 42);
  margin-bottom: 0.5rem;
}

/* Price */
.workshop-price {
  font-family: "Inter", sans-serif;
  font-size: 1.875rem;
  background: linear-gradient(to right, rgb(8, 145, 178), rgb(147, 51, 234));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* Description */
.workshop-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(71, 85, 105); /* slate-600 */
  margin-bottom: 1.5rem;
}

/* Features List */
.workshop-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.workshop-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgb(51, 65, 85); /* slate-700 */
}

.feature-check {
  width: 20px;
  height: 20px;
  color: rgb(6, 182, 212); /* cyan-500 */
  flex-shrink: 0;
  margin-top: 2px;
}

/* Workshop Button */
.workshop-btn {
  width: 100%;
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  color: white;
  padding: 8px 16px 8px 16px;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: auto;
}

.workshop-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
  color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .workshops-section {
    padding: 60px 0;
  }
  .workshops-title {
    font-size: 2rem;
  }
  .workshops-subtitle {
    font-size: 1rem;
  }
  .workshop-content {
    padding: 1.5rem;
  }
  .workshop-name {
    font-size: 1.25rem;
  }
  .workshop-price {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .workshops-title {
    font-size: 2rem;
  }
  .workshop-icon {
    width: 40px;
    height: 40px;
  }
}
/* ============================================
   PAKKETTEN SECTION
   ============================================ */
.packages-section {
  background: white;
  padding: 80px 0;
}

/* Package feature note styling */
.package-feature-note {
  background: rgba(168, 85, 247, 0.1);
  padding: 0.75rem;
  border-radius: 0.375rem;
  border-left: 3px solid rgb(168, 85, 247);
  margin-top: 0.5rem;
}

.package-feature-note span {
  font-size: 0.875rem;
  color: rgb(71, 85, 105);
}

.package-feature-note strong {
  color: rgb(168, 85, 247);
  font-weight: 600;
}

.feature-icon-info {
  width: 20px;
  height: 20px;
  color: rgb(168, 85, 247);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Section Title */
.packages-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  -webkit-background-clip: text;
  display: inline-block;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.packages-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(71, 85, 105); /* slate-600 */
  max-width: 672px;
  margin: 0 auto 3rem;
}

/* Package Card */
.package-card {
  position: relative;
  background: white;
  border: 1px solid rgb(226, 232, 240); /* slate-200 border */
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Featured Package (DJ Show - middle card) */
.package-featured {
  border: 2px solid rgb(168, 85, 247); /* purple-500 ring */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* "Populair" Badge */
.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, rgb(168, 85, 247), rgb(236, 72, 153));
  color: white;
  padding: 0.25rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10;
}

/* Package Content */
.package-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Icons with different gradients */
.package-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.gradient-cyan-blue {
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(59, 130, 246));
}

.gradient-purple-pink {
  background: linear-gradient(to right, rgb(168, 85, 247), rgb(236, 72, 153));
}

.gradient-pink-rose {
  background: linear-gradient(to right, rgb(236, 72, 153), rgb(244, 63, 94));
}

/* Package Name */
.package-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgb(15, 23, 42);
  margin-bottom: 0.5rem;
}

/* Description */
.package-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(71, 85, 105); /* slate-600 */
  margin-bottom: 1.5rem;
}

/* Features List */
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgb(51, 65, 85); /* slate-700 */
}

.feature-check-purple {
  width: 20px;
  height: 20px;
  color: rgb(168, 85, 247); /* purple-500 */
  flex-shrink: 0;
  margin-top: 2px;
}

/* Package Buttons */
.package-btn {
  width: 100%;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: auto;
}

.package-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
  color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .packages-section {
    padding: 60px 0;
  }
  .packages-title {
    font-size: 2rem;
  }
  .packages-subtitle {
    font-size: 0.95rem;
  }
  .package-content {
    padding: 1.5rem;
  }
  .package-name {
    font-size: 1.25rem;
  }
}
@media (max-width: 576px) {
  .packages-title {
    font-size: 2rem;
  }
  .package-icon {
    width: 40px;
    height: 40px;
  }
}
/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: linear-gradient(to bottom right, rgb(15, 23, 42) 0%, rgb(88, 28, 135) 50%, rgb(15, 23, 42) 100%);
  padding: 80px 0;
  color: white;
}

/* Fix voor autofill achtergrondkleur */
.contact-input:-webkit-autofill,
.contact-input:-webkit-autofill:hover,
.contact-input:-webkit-autofill:focus,
.contact-input:-webkit-autofill:active,
.contact-textarea:-webkit-autofill,
.contact-textarea:-webkit-autofill:hover,
.contact-textarea:-webkit-autofill:focus,
.contact-textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: white !important;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* Voor Firefox */
.contact-input:-moz-autofill,
.contact-textarea:-moz-autofill {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}

/* Section Title */
.contact-icon {
  width: 32px;
  height: 32px;
  color: rgb(216, 180, 254); /* purple-300 */
}

.contact-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
}

/* Subtitle */
.contact-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(233, 213, 255); /* purple-200 */
  max-width: 672px;
  margin: 0 auto 3rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

/* Form Labels */
.form-label {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label-icon {
  width: 16px;
  height: 16px;
  color: white;
}

/* Form Inputs */
.contact-input,
.contact-textarea {
  font-family: "Inter", sans-serif;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-input::-moz-placeholder, .contact-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(168, 85, 247, 0.5);
  color: white;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.contact-submit-btn {
  width: 100%;
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-submit-btn:hover {
  background: linear-gradient(to right, rgb(8, 145, 178), rgb(147, 51, 234));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* ============================================
   CONTACT INFO (Right Column)
   ============================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-section {
  display: flex;
  flex-direction: column;
}

/* Info Title */
.info-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 1rem;
}

.info-subtitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 1rem;
}

/* Info Text */
.info-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(233, 213, 255); /* purple-200 */
  margin-bottom: 1.5rem;
}

/* Instagram Button */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, rgb(236, 72, 153), rgb(168, 85, 247));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none !important; /* Verwijder underline */
  transition: all 0.3s ease;
  align-self: flex-start;
  border: none; /* Zorg dat er geen border is */
  outline: none; /* Verwijder outline */
}

.instagram-btn:hover {
  background: linear-gradient(to right, rgb(219, 39, 119), rgb(147, 51, 234));
  transform: translateY(-2px);
  color: white;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Border Top Section */
.border-top-section {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
}

.detail-item {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: rgb(233, 213, 255); /* purple-200 */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.detail-icon {
  width: 16px;
  height: 16px;
  color: rgb(233, 213, 255);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-title {
    font-size: 2rem;
  }
  .contact-subtitle {
    font-size: 0.95rem;
  }
  .contact-info {
    margin-top: 2rem;
  }
}
@media (max-width: 576px) {
  .contact-title {
    font-size: 2rem;
  }
  .contact-icon {
    width: 24px;
    height: 24px;
  }
}
/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: rgb(15, 23, 42); /* slate-900 */
  color: white;
  padding: 48px 0;
}

/* ============================================
   FOOTER BRAND (Column 1)
   ============================================ */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.brand-name {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgb(241, 245, 249); /* slate-100 */
}

.brand-tagline {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgb(148, 163, 184); /* slate-400 */
}

.footer-credit {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: rgb(100, 116, 139); /* slate-500 */
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ============================================
   FOOTER SECTIONS (Columns 2 & 3)
   ============================================ */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(216, 180, 254); /* purple-300 */
  margin-bottom: 1rem;
}

/* ============================================
   BEDRIJFSGEGEVENS (Column 2)
   ============================================ */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgb(148, 163, 184); /* slate-400 */
}

.info-icon {
  width: 16px;
  height: 16px;
  color: rgb(148, 163, 184);
  flex-shrink: 0;
}

/* ============================================
   SOCIAL MEDIA (Column 3)
   ============================================ */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgb(216, 180, 254); /* purple-300 */
  text-decoration: none;
  transition: color 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.footer-social-link:hover {
  color: rgb(233, 213, 255); /* purple-200 */
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* ============================================
   FOOTER BOTTOM (Copyright)
   ============================================ */
.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgb(30, 41, 59); /* slate-800 */
  text-align: center;
}

.copyright-text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: rgb(100, 116, 139); /* slate-500 */
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  .footer-logo {
    width: 60px;
    height: 60px;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .footer-section {
    margin-top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 32px 0;
  }
  .footer-logo {
    width: 50px;
    height: 50px;
  }
  .brand-name {
    font-size: 1rem;
  }
  .brand-tagline {
    font-size: 0.8rem;
  }
}
/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-success {
  background: linear-gradient(to right, rgb(6, 182, 212), rgb(168, 85, 247));
  color: white;
}

.notification-error {
  background: linear-gradient(to right, rgb(239, 68, 68), rgb(220, 38, 38));
  color: white;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-icon {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.notification-message {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 576px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}/*# sourceMappingURL=style.css.map */