.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */::-webkit-scrollbar-thumb{background:#1F1B1A}
::-webkit-scrollbar-track{background:#fff}
::-webkit-scrollbar{width: 8px}

/* ═══════════════════════════════════════════════════════════════════════
   DIPALESA TSA BAHLAKOANA — CUSTOM CSS
   Paste into:  Elementor → Site Settings → Custom CSS
   (or:         WordPress → Appearance → Customize → Additional CSS)
═══════════════════════════════════════════════════════════════════════ */


/* ─── 01 · BRAND TOKENS (CSS variables) ───────────────────────────────
   These let you reference brand colours anywhere with var(--rose) etc.
   Edit a value here and it updates everywhere it's used. */

:root {
  --dipalesa-indigo:   #2E333D;
  --dipalesa-rose:     #F4CAD0;
  --dipalesa-lavender: #8DA2C6;
  --dipalesa-sage:     #949E72;
  --dipalesa-mist:     #CFDEE4;
  --dipalesa-cyan:     #C6E7ED;
  --dipalesa-cream:    #F7F9FB;
  --dipalesa-muted:    #8A8C92;
  --dipalesa-divider:  #D6D8DC;

  --dipalesa-display: 'Lora', 'Cormorant Garamond', Georgia, serif;
  --dipalesa-body:    'Poppins', 'Helvetica Neue', sans-serif;
}


/* ─── 02 · GLOBAL TYPOGRAPHY REFINEMENT ───────────────────────────────
   Better font rendering, prevents over-bolding on dark backgrounds. */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Slight letter-spacing tightening on display headlines so the italic
   sits more closely, the way it does in the brand guide. */
.elementor-heading-title {
  letter-spacing: -0.005em;
}


/* ─── 03 · TEXT SELECTION ─────────────────────────────────────────────
   When a visitor highlights text, use the brand pink. */

::selection {
  background: var(--dipalesa-rose);
  color: var(--dipalesa-indigo);
}
::-moz-selection {
  background: var(--dipalesa-rose);
  color: var(--dipalesa-indigo);
}


/* ─── 04 · SMOOTH SCROLLING ───────────────────────────────────────────
   Anchor-link scrolls slide instead of jump. */

html { scroll-behavior: smooth; }


/* ─── 05 · BRANDED SCROLLBAR (desktop only, optional) ─────────────────
   Subtle, in keeping with the soft palette. */

@media (min-width: 1024px) {
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--dipalesa-cream); }
  ::-webkit-scrollbar-thumb {
    background: var(--dipalesa-mist);
    border-radius: 999px;
    border: 2px solid var(--dipalesa-cream);
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--dipalesa-lavender); }
}


/* ─── 06 · BUTTON HOVER POLISH ────────────────────────────────────────
   Adds a softer transition than Elementor's default, and lifts buttons
   slightly on hover so they feel responsive. */

.elementor-button {
  transition: background-color 0.25s ease,
              color 0.25s ease,
              border-color 0.25s ease,
              transform 0.25s ease,
              box-shadow 0.25s ease !important;
}

.elementor-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px rgba(46, 51, 61, 0.25);
}


/* ─── 07 · IMAGE GALLERY HOVER ZOOM ───────────────────────────────────
   Used on the Home and About gallery sections.  Each tile crops on
   hover instead of jerking around. */

.elementor-widget-image-gallery .gallery-item {
  overflow: hidden;
}

.elementor-widget-image-gallery .gallery-item img {
  transition: transform 0.5s ease, filter 0.5s ease !important;
  filter: saturate(0.95);
}

.elementor-widget-image-gallery .gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}


/* ─── 08 · SINGLE IMAGE WIDGET — SUBTLE LIFT ──────────────────────────
   Welcome image, craft image, etc. get a soft hover lift. */

.elementor-widget-image img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.elementor-widget-image:hover img {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -28px rgba(46, 51, 61, 0.22);
}


/* ─── 09 · STICKY NAV — SHADOW ON SCROLL ──────────────────────────────
   Subtle drop shadow appears on the nav once the user scrolls past the
   hero. Catch: this only works if your top container has Position →
   Sticky → Top in Elementor.  Add the CSS class `dipalesa-nav` to that
   container under Advanced → CSS Classes. */

.dipalesa-nav.elementor-sticky--effects {
  box-shadow: 0 8px 28px -16px rgba(46, 51, 61, 0.18);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}


/* ─── 10 · CONTACT FORM — REFINED FIELDS ──────────────────────────────
   The form widget gets a few extra touches:
   - Focus state pulls in the lavender accent
   - Placeholder is more discreet
   - Labels track-spaced like the eyebrows
   - Date field icon matches the palette */

.elementor-field-group .elementor-field {
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.elementor-field-group .elementor-field:focus {
  border-bottom-color: var(--dipalesa-lavender) !important;
  outline: none !important;
  box-shadow: none !important;
}

.elementor-field-group .elementor-field::placeholder {
  opacity: 0.5;
  color: var(--dipalesa-muted);
}

.elementor-field-group select {
  background-image: linear-gradient(45deg, transparent 50%, var(--dipalesa-lavender) 50%),
                    linear-gradient(135deg, var(--dipalesa-lavender) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
}


/* ─── 11 · LINK UNDERLINE POLISH ──────────────────────────────────────
   When the brand-style "text-link buttons" are inside any container,
   give the underline some lift on hover. */

.elementor-widget-button .elementor-button[style*="background-color: rgba(0, 0, 0, 0)"]:hover,
.elementor-widget-button .elementor-button[style*="background-color: transparent"]:hover {
  letter-spacing: 0.32em !important;
}


/* ─── 12 · GALLERY LIGHTBOX OVERLAY ───────────────────────────────────
   When someone clicks a gallery image, the lightbox overlay matches
   the brand palette. */

.dialog-lightbox-widget .dialog-lightbox-close-button,
.elementor-lightbox .dialog-lightbox-close-button {
  color: var(--dipalesa-cream);
}

.elementor-lightbox {
  background-color: rgba(46, 51, 61, 0.92) !important;
}


/* ─── 13 · IMAGE FADE-IN ON SCROLL ────────────────────────────────────
   For Elementor's Motion Effects "Entrance Animation" — these
   keyframes give a softer, more editorial fade than Elementor's
   defaults. To use: Image widget → Advanced → Motion Effects →
   Entrance Animation → choose any "Fade In Up" and the timing will
   feel more refined.
   (No CSS needed beyond the defaults — Motion Effects works on its own.) */


/* ─── 14 · MOBILE TIGHTENING ──────────────────────────────────────────
   On phones, italic display headings can feel too large.  Pull them
   back a touch and tighten the line-height. */

@media (max-width: 768px) {
  .elementor-heading-title {
    line-height: 1.1 !important;
  }
  .elementor-element h1.elementor-heading-title {
    font-size: 44px !important;
  }
  .elementor-element h2.elementor-heading-title {
    font-size: 30px !important;
  }
}


/* ─── 15 · PRINT STYLES ───────────────────────────────────────────────
   If a family prints a page (e.g. saving the contact details for
   later), strip the dark hero overlays and force readable type. */

@media print {
  .elementor-section-stretched,
  .elementor-section { box-shadow: none !important; }
  .elementor-background-overlay { display: none !important; }
  .elementor-heading-title,
  .elementor-widget-text-editor { color: #000 !important; }
  body { background: #fff !important; }
}


/* ─── 16 · OPTIONAL HELPER CLASSES ────────────────────────────────────
   Add these to any widget under:  Advanced → CSS Classes
   ──────────────────────────────────────────────────────────────────── */

/* `dipalesa-lift`  → adds soft lift on hover */
.dipalesa-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
.dipalesa-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px rgba(46, 51, 61, 0.18) !important;
}

/* `dipalesa-rule` → adds a thin rose horizontal rule above the element */
.dipalesa-rule::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--dipalesa-rose);
  margin: 0 0 20px 0;
}
.dipalesa-rule.dipalesa-rule-centered::before {
  margin-left: auto;
  margin-right: auto;
}

/* `dipalesa-italic` → forces Lora italic on any heading */
.dipalesa-italic .elementor-heading-title,
.dipalesa-italic {
  font-family: var(--dipalesa-display) !important;
  font-style: italic !important;
}


/* ═══════════════════════════════════════════════════════════════════════
   END — DIPALESA CUSTOM CSS
═══════════════════════════════════════════════════════════════════════ *//* End custom CSS */