/* WestMark Express — theme override (loaded after style.css) */
:root {
  --theme-color1: #0f2a43;
  --theme-color2: #d99a2b;
  --theme-color2-light: #e6b34f;
  --theme-color3: #0e7c66;
  --theme-color3-light: #12a084;
  --theme-color4: #f7f7f4;
  --bg-theme-color1: #0f2a43;
  --bg-theme-color2: #d99a2b;
  --bg-theme-color2-light: #e6b34f;
  --bg-theme-color3: #0e7c66;
  --bg-theme-color3-light: #12a084;
  --bg-theme-color4: #f7f7f4;
  --border-theme-color1: #0f2a43;
  --border-theme-color2: #d99a2b;
  --border-theme-color2-light: #e6b34f;
  --border-theme-color3: #0e7c66;
  --border-theme-color3-light: #12a084;
  --border-theme-color4: #f7f7f4;
  --headings-color: #0f2a43;
}

/* Text logo (no image asset needed) */
.wm-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--title-font, "DM Sans", sans-serif);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wm-logo .wm-mark {
  color: var(--theme-color2);
}

.wm-logo .wm-word {
  color: #ffffff;
}

.wm-logo .wm-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--theme-color2);
  margin-left: 6px;
}

header.main-header .wm-logo .wm-word {
  color: var(--headings-color, #0f2a43);
}

.sticky-header .wm-logo .wm-word,
.mobile-menu .wm-logo .wm-word,
.main-footer .wm-logo .wm-word {
  color: #ffffff;
}

/* Modernized hero (Swiper-based, replaces Revolution Slider) */
.wm-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--theme-color1);
}

.wm-hero .swiper-slide {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.wm-hero .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 42, 67, 0.92) 0%, rgba(15, 42, 67, 0.55) 55%, rgba(15, 42, 67, 0.25) 100%);
}

.wm-hero .wm-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
  padding: 0 15px;
}

.wm-hero .wm-hero-content .sub-title {
  display: inline-block;
  color: var(--theme-color2);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 18px;
}

.wm-hero .wm-hero-content h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.wm-hero .wm-hero-content p {
  color: #dbe4ec;
  font-size: 17px;
  margin-bottom: 30px;
}

.wm-hero .swiper-pagination {
  position: absolute;
  bottom: 30px;
  z-index: 3;
}

.wm-hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.wm-hero .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme-color2);
}

@media (max-width: 767px) {
  .wm-hero .swiper-slide {
    min-height: 480px;
  }
  .wm-hero .wm-hero-content h1 {
    font-size: 34px;
  }
}
