/* =====================================================================
   Pelikani visual refresh
   Non-destructive polish layered over the existing template: calmer
   shadows, on-brand buttons, stronger type hierarchy, cleaner cards,
   badges, and a real hero headline. Loaded last in the guest layout
   so it overrides the template without editing the compiled bundle.
   ===================================================================== */
:root{
  --pk-orange:#FF9F1C;
  --pk-orange-600:#E8890B;
  --pk-ink:#0F172A;
  --pk-muted:#64748B;
  --pk-line:#ECEFF3;
  --pk-soft:#F6F8FB;
}

/* ---- Cards: replace the harsh 0.4-alpha drop shadow with a soft, modern one ---- */
.box-dream, .wg-box, .box.hover-img{
  box-shadow: 0 6px 22px rgba(15,23,42,.07) !important;
  border: 1px solid var(--pk-line) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease !important;
}
.box-dream:hover, .wg-box:hover, .box.hover-img:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15,23,42,.12) !important;
}

/* ---- The off-brand Bootstrap-green "Detajet" button → brand orange ---- */
.wg-box .btn-success, .box-dream .btn-success, .box .btn-success,
.property-item .btn-success{
  background: var(--pk-orange) !important;
  border-color: var(--pk-orange) !important;
  color:#fff !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  padding: 9px 16px !important;
  box-shadow: 0 4px 12px rgba(255,159,28,.26) !important;
  transition: background .15s ease, transform .15s ease !important;
}
.wg-box .btn-success:hover, .box-dream .btn-success:hover, .box .btn-success:hover{
  background: var(--pk-orange-600) !important;
  transform: translateY(-1px);
}

/* ---- Status badges: calmer, consistent, less shouty ---- */
.featured{ box-shadow: 0 2px 8px rgba(15,23,42,.14) !important; font-weight:600 !important; }
.box-dream .badge, .wg-box .badge{ border-radius: 999px !important; font-weight:600 !important; letter-spacing:.01em; }

/* ---- Typography: give section headings real presence & hierarchy ---- */
.heading-section h2, .heading-section h2 a, .heading-title{
  font-family:'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(24px, 2.4vw, 34px) !important;
  letter-spacing: -.02em !important;
  color: var(--pk-ink) !important;
  line-height: 1.2 !important;
}
.heading-section > p, .heading-subtitle, .heading-section .text-color-4{
  color: var(--pk-muted) !important;
  font-size: 15.5px !important;
}
.heading-section{ margin-bottom: 8px; }

/* ---- Primary CTA buttons: unify weight/shape ---- */
.sc-button{
  border-radius: 10px !important;
  font-weight: 600 !important;
  letter-spacing: .01em;
}

/* ---- Hero headline (make the previously invisible <h1> visible & strong) ---- */
.slider.home .pk-hero-title{
  position: relative;
  max-width: 920px;
  margin: 0 auto 10px;
  padding: 0 16px;
  text-align: center;
  color:#fff;
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height:1.15;
  letter-spacing:-.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.slider.home .pk-hero-sub{
  position: relative;
  max-width: 720px;
  margin: 0 auto 22px;
  padding: 0 16px;
  text-align: center;
  color: rgba(255,255,255,.92);
  font-family:'Mulish',sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height:1.5;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}

/* ---- Section rhythm: consistent vertical breathing room ---- */
.tf-section{ padding-top: 56px !important; padding-bottom: 56px !important; }

/* ---- Hero search widget: replace the off-brand blue with the orange brand ---- */
.slider.home .menu-tab > li,
.slider.home .menu-tab .item-title{
  background:#ffffff !important;
  color: var(--pk-ink) !important;
  border:1px solid var(--pk-line) !important;
  font-weight:600 !important;
}
.slider.home .menu-tab > li h4,
.slider.home .menu-tab > li a{ color: var(--pk-ink) !important; }
.slider.home .menu-tab .item-title.active,
.slider.home .menu-tab .item-title.active h4{
  background: var(--pk-orange) !important;
  color:#fff !important;
  border-color: var(--pk-orange) !important;
}
.slider.home .flat-tabs .sc-button,
.slider.home #submitSearchFilter .sc-button,
.slider.home .button-search .sc-button{
  background: var(--pk-orange) !important;
  color:#fff !important;
}
.slider.home #submitSearchFilter .sc-button i,
.slider.home .flat-tabs .sc-button i{ color:#fff !important; }
