body {
      background-color: #f5f0e8 !important;
      font-family: 'Playfair Display', serif;
    }

    /* Navbar */
    .navbar-custom {
      background-color: #f5f0e8 !important;
    }
    .navbar-custom .nav-link {
      color: #1a1a1a !important;
      font-weight: 500;
    }
    .navbar-custom .nav-link:hover {
      color: #c6a874 !important;
    }
    .navbar-custom .navbar-brand {
      font-weight: bold;
      color: #1a1a1a !important;
    }
    .btn-login {
      border-color: #1a1a1a !important;
      color: #1a1a1a !important;
    }
    .btn-login:hover {
      background-color: #1a1a1a;
      color: #f5f0e8 !important;
    }

    /* SHACHAMEDIA Brand Title */
    .brand-title {
      font-weight: 700;
      color: #1a1a1a !important;
      font-size: clamp(2rem, 6vw, 5rem);
      line-height: 1.2;
      word-break: break-word;
      text-align: center;
      padding: 3rem 1rem;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      background-image: url('../images/slider.jpg'); /* Replace with actual image path */
      background-size: cover;
      background-position: center;
      height: 100vh;
      color: #ffffff !important;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-overlay {
      /*  background-color: rgba(0, 0, 0, 0.55);*/
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 2rem;
    }
    .hero-content h1 {
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 500;
      color: #fff;
    }
    .hero-content .btn-outline-light {
      border: 1px solid #c6a874 !important;
      color: #fff;
      padding: 0.75rem 2rem;
      font-size: 1rem;
      margin-top: 1rem;
      transition: all 0.3s ease;
    }
    .hero-content .btn-outline-light:hover {
      background-color: #c6a874 !important;
      color: #1a1a1a !important;
    }





    .hero-sectiontwo {
      padding: 100px 0;
      background-color: #1a1a1a !important;
      color: white;
      text-align: center;
    }
    .section-title {
      font-weight: 700;
      font-size: 2rem;
    }
    .team-img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 10px;
    }




    .service-icon {
      max-height: 120px;
      margin-bottom: 20px;
    }
    .service-card {
      background-color: #fff;
      border: none;
      border-radius: 1rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
    .section-title {
      font-weight: 700;
      font-size: 2rem;
    }

    .form-section {
      background-color: #ffffff !important;
      border-radius: 1rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      padding: 3rem;
    }
    .form-control, .form-select {
      border-radius: 0.5rem;
    }










/* Zorg dat icon/image in extraButtons niet gigantisch is */
.extra-button-icon img,
.extra-button-icon svg {
  max-height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
}

/* Label naast icon netjes uitlijnen */
.extra-button-label {
  vertical-align: middle;
}





.timeline {
    position: relative;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid #c6a874 !important;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: -1.55rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #c6a874 !important;
  }
  .timeline-step {
    position: relative;
  }
  .timeline-step::before {
    content: "";
    position: absolute;
    left: -2.1rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #c6a874 !important;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    z-index: 1;
    border: 2px solid white;
  }


    .client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    max-height: 80px;
  }

  .client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }




