/* =====================================
   WPFORMS CTA – CLEAN / NO SHADOW VERSION
   ===================================== */

/* Basis staat */
.wpforms-form button {
  font-family: 'Cinzel', serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  font-size: 18px !important;

  padding: 14px 24px !important;
  border-radius: 8px !important;

  background-color: #62CD72 !important;
  color: #FFFFFF !important;

  border: none !important;
  cursor: pointer !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transform: scale(1) translateY(0);
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;

  transition:
    border-radius 0.35s cubic-bezier(.4,0,.2,1),
    transform 0.2s cubic-bezier(.4,0,.2,1);
}

/* Hover staat */
.wpforms-form button:hover {
  border-radius: 24px !important;
  background-color: #62CD72 !important;

  transform: scale(1.08) translateY(-2px);

  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
}

/* Active (klik) */
.wpforms-form button:active {
  background-color: #62CD72 !important;
  transform: scale(1.02) translateY(0);

  box-shadow: none !important;
  filter: none !important;
}

/* Focus (keyboard) */
.wpforms-form button:focus-visible {
  border-radius: 24px !important;
  outline: none !important;

  box-shadow: none !important;
}


@media (max-width: 767px) {
  .wpforms-form .mobile-center-submit {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================================================
   WPFORMS – FORCE TYPOGRAPHY OVERRIDE (FIXED)
   ========================================================= */

/* FORM TITEL (WPForms titel / heading) */
.wpforms-container .wpforms-title,
.wpforms-container h2 {
  color: #F2F5F8 !important;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

/* FORM SUBTITLE / DESCRIPTION */
.wpforms-container .wpforms-description {
  color: rgba(242,245,248,0.85) !important;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

/* FIELD LABELS (DIT IS DE BELANGRIJKE) */
.wpforms-container .wpforms-field-label {
  color: rgba(242,245,248,0.9) !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* REQUIRED ASTERISK */
.wpforms-container .wpforms-required-label {
  color: #FBBF24 !important;
}

/* RADIO & CHECKBOX LABELS */
.wpforms-container .wpforms-field-radio label,
.wpforms-container .wpforms-field-checkbox label {
  color: rgba(242,245,248,0.85) !important;
  font-size: 15px;
}

/* INPUT TEXT */
.wpforms-container input,
.wpforms-container textarea,
.wpforms-container select {
  color: #0E1A2B !important;
  font-size: 16px;
}

/* PLACEHOLDER */
.wpforms-container ::placeholder {
  color: rgba(14,26,43,0.45) !important;
}

/* FIELD DESCRIPTIONS */
.wpforms-container .wpforms-field-description {
  color: rgba(242,245,248,0.7) !important;
  font-size: 13px;
}



/* HARD RESET WPFORMS HOVER STYLES */
.wpforms-form button,
.wpforms-form button:hover,
.wpforms-form button:active,
.wpforms-form button:focus,
.wpforms-form .wpforms-submit,
.wpforms-form .wpforms-submit:hover {
  background-color: #62CD72 !important;
  background-image: none !important;

  filter: none !important;
  opacity: 1 !important;

  box-shadow: none !important;
}


/* ======================================================
   WPFORMS CTA — MATCHED WITH .button-swap
   ====================================================== */

/* Basis state */
.wpforms-form button,
.wpforms-form .wpforms-submit {
  border-radius: 8px !important;
  box-shadow: none !important;

  transform: scale(1) translateY(0);
  transform-origin: center;

  transition:
    border-radius 0.35s cubic-bezier(.4,0,.2,1),
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

/* Hover state — grow + lift + shadow */
.wpforms-form button:hover,
.wpforms-form .wpforms-submit:hover {
  border-radius: 24px !important;

  transform: scale(1.12) translateY(-2px);

  box-shadow: 0 8px 18px rgba(0,0,0,0.22) !important;
}

/* Active (klik) — kleine press */
.wpforms-form button:active,
.wpforms-form .wpforms-submit:active {
  transform: scale(1.04) translateY(0);
  box-shadow: 0 5px 12px rgba(0,0,0,0.25) !important;
}

/* Keyboard accessibility */
.wpforms-form button:focus-visible,
.wpforms-form .wpforms-submit:focus-visible {
  border-radius: 24px !important;
  outline: none !important;
}



/* =====================================
   FIX: Geen ghost / overlay effecten
   ===================================== */
.wpforms-form button::before,
.wpforms-form button::after {
  display: none !important;
  content: none !important;
}




/* ======================================================
   ACTIVE MENU ITEM (tekst links)
   ====================================================== */
.current-menu-item > a {
  font-size: 22px !important;
  color: #3FD0FF !important;
  letter-spacing: 2px;
}

/* Boek Nu NIET laten meegaan in active menu styling */
.current-menu-item > a.hfe-menu-item.elementor-button {
  font-size: inherit !important;
  color: #F2F2F2 !important;
  letter-spacing: inherit !important;
}

/* Zorg dat alles netjes uitgelijnd wordt */
.hfe-nav-menu .hfe-nav-menu__layout-horizontal {
  align-items: center;
}

/* =====================================
   NAV CTA "BOEK NU" – DEFINITIEF
   ===================================== */

/* Basis staat */
.hfe-nav-menu li:last-child > a.hfe-menu-item.elementor-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  font-size: 18px !important;
  line-height: 1.2 !important;
  padding: 10px 18px !important;

  border-radius: 8px !important;

  transform: scale(1);
  transform-origin: center;

  transition:
    transform 0.15s ease,
    border-radius 0.35s cubic-bezier(.4,0,.2,1),
    box-shadow 0.15s ease;
}

/* Hover + focus */
.hfe-nav-menu li:last-child > a.hfe-menu-item.elementor-button:hover,
.hfe-nav-menu li:last-child > a.hfe-menu-item.elementor-button:focus-visible {
  transform: scale(1.2) translateY(-2px);
  border-radius: 24px !important;
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}

/* Overflow fix (ECHT nodig bij HFE) */
.elementor-header,
.elementor-header *,
.hfe-nav-menu,
.hfe-nav-menu * {
  overflow: visible !important;
}

.site-description,
.site-tagline {
  display: none !important;
}


.site-info,
.site-footer .site-info,
.footer-copyright,
.copyright {
  display: none !important;
}



/* 1. Header mag NOOIT wrappen */
header .elementor-container,
header .elementor-widget-wrap {
  flex-wrap: nowrap !important;
}

/* 2. Nav menu mag krimpen bij zoom */
.elementor-nav-menu {
  min-width: 0 !important;
  flex-shrink: 1 !important;
}

/* 3. Boek Nu CTA mag nooit verplaatsen */
.cta-book-nu,
.cta-book-nu * {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}


/* ======================================================
   BUTTON-SWAP — PREMIUM UPLIFT + 20% GROW (SAFE)
   ====================================================== */

/* Basis state */
.button-swap .elementor-button {
  border-radius: 8px;
  box-shadow: none;

  /* Belangrijk: startwaarden */
  transform: scale(1) translateY(0);
  transform-origin: center;

  transition:
    border-radius 0.35s cubic-bezier(.4,0,.2,1),
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

/* Hover state — grow + lift */
.button-swap:hover .elementor-button {
  border-radius: 24px;

  /* 🔥 20% grow + subtiele lift */
  transform: scale(1.2) translateY(-2px);

  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}

/* Keyboard accessibility */
.button-swap:focus-visible .elementor-button {
  border-radius: 24px;
  transform: scale(1.2);
}




/* =====================================
   NAV CTA "BOEK NU" – CONSISTENT INTERACTIEF
   ===================================== */

/* =====================================
   NAV CTA "BOEK NU" – FIXED
   ===================================== */

/* Basis */
.hfe-nav-menu li:last-child > a.elementor-button {
  border-radius: 8px !important;
  transition: border-radius 0.35s cubic-bezier(.4,0,.2,1),
              transform 0.15s ease,
              box-shadow 0.25s ease;
  margin-left: 16px;
  transform: translateY(-2px); /* 🔥 FIX: hoger zetten */
}

/* Hover */
.hfe-nav-menu li:last-child > a.elementor-button:hover {
  border-radius: 24px !important;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}

/* FIX: Ghost achtergrond */
.hfe-nav-menu li:last-child > a.elementor-button::before,
.hfe-nav-menu li:last-child > a.elementor-button::after {
  display: none !important;
  content: none !important;
}


}
	


/* =========================
   NAV MENU
========================= */

/* Basis */
.hfe-nav-menu .menu-item > a.hfe-menu-item {
  transition: color 0.25s ease, transform 0.15s ease;
  display: inline-block;
}

/* Hover (exclude buttons) */
.hfe-nav-menu .menu-item > a.hfe-menu-item:hover:not(.elementor-button):not(.no-hover) {
  color: #C98A2B !important;
  transform: scale(1.08);
}

/* =========================
   FOOTER CONTACT ITEMS
========================= */

/* Basis */
.contact-hover {
  transition: color 0.2s ease, transform 0.15s ease;
  display: inline-block;
}

/* Hover effect */
.contact-hover:hover {
  transform: scale(1.25);
}

/* Goudkleur hover */
.contact-hover:hover,
.contact-hover:hover a,
.contact-hover:hover p,
.contact-hover:hover span,
.contact-hover:hover i {
  color: #C98A2B !important;
}

/* =========================
   OPTIONAL: EXTRA SMOOTH FEEL
========================= */



.footer-credit{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #bfb8aa;
    line-height: 1.6;
}

.footer-credit a{
    color: #FF6A00;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
		font-size: 16px;
}

.footer-credit a:hover{
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}



.package-basic{
    border:1px solid rgba(255,255,255,.12);
    border-radius:32px;
    overflow:hidden;
    transition:all .35s ease;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18),
        0 4px 12px rgba(0,0,0,.10);
}

.package-basic:hover{
    transform:translateY(-8px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.30),
        0 10px 24px rgba(0,0,0,.16);
}


.package-medium{
    border:1px solid rgba(255,255,255,.14);
    border-radius:32px;
    overflow:hidden;
    transition:all .35s ease;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18),
        0 4px 12px rgba(0,0,0,.10);
}

.package-medium:hover{
    transform:translateY(-8px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.30),
        0 10px 24px rgba(0,0,0,.16);
}



.package-ultimate{
    border:1px solid rgba(255,206,128,.35);
    border-radius:32px;
    overflow:hidden;
    transition:all .35s ease;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18),
        0 4px 12px rgba(0,0,0,.10);
}

.package-ultimate:hover{
    transform:translateY(-8px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.30),
        0 10px 24px rgba(0,0,0,.16),
        0 0 22px rgba(255,206,128,.22);
}