/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-gray);
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.5s ease, opacity 0.5s ease;
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

/* Decorative strip behind overlap sections */
.bl-strip-left,
.bl-strip-right {
  position: relative !important;
  overflow: visible !important;
}

.bl-strip-left::before,
.bl-strip-right::before {
  content: '' !important;
  position: absolute !important;
  top: 0;
  bottom: 0;
  width: 45% !important;
  background-color: #f0e8de;
  z-index: 1 !important;
  pointer-events: none;
}

.bl-strip-left::before {
  left: 0 !important;
  right: auto !important;
}

.bl-strip-right::before {
  right: 0 !important;
  left: auto !important;
}

/* Ensure inner Elementor containers sit above the strip */
.bl-strip-left > .e-con,
.bl-strip-right > .e-con,
.bl-strip-left > .elementor-element,
.bl-strip-right > .elementor-element {
  position: relative !important;
  z-index: 1 !important;
}
