/* Seed Equity Ventures — theme overlay. Loaded after main-style.css; re-themes the
   site entirely through the CSS custom properties main-style.css already
   cascades on, so nothing below duplicates or fights its component rules. */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --Fraunces: "Fraunces", serif;
  --Dm: "Inter", sans-serif;
  --Inter: "Inter", sans-serif;
  --Sans: "Inter", sans-serif;

  --primary-color: #1F6FB2;
  --secondary-color: #3D8FD1;
  --tertiary-color: #154C7A;
  --primary-color-rgb: 31, 111, 178;
  --secondary-color-rgb: 61, 143, 209;

  --primary-soft-color: #E8F1FA;
  --primary-soft-color-two: #EAF3FB;

  --primary-title: #16324f;
  --secondary-title: #334155;
  --tertiary-title: #64748b;
  --primary-paragraph: #475569;
  --secondary-paragraph: #334155;
  --tertiary-paragraph: #64748b;

  --primary-btn: var(--primary-color);
  --secondary-btn: var(--secondary-color);
  --tertiary-btn: #1e293b;
  --ratting-color: #1F6FB2;

  --section-bg-one: #F1F5F9;
  --section-bg-two: #F8FAFC;
  --section-bg-three: #E8F1FA;

  --primary-border: #DCE8F5;
  --secondary-border: #E2E8F0;
  --tertiary-border: #EFF4F9;
  --primary-shadow: 0px 12px 40px rgba(31, 111, 178, 0.12);

  --available-card-bg: linear-gradient(180deg, #E8F1FA 0%, rgba(232, 241, 250, 0) 98.91%);
}

[data-theme=dark] {
  --primary-color: #4A9FE0;
  --secondary-color: #6FB3E0;
  --tertiary-color: #2C5F8A;
  --primary-color-rgb: 74, 159, 224;
  --secondary-color-rgb: 111, 179, 224;

  --body: #0f172a;
  --primary-soft-color: #16283a;
  --primary-soft-color-two: var(--primary-soft-color);

  --primary-title: #F1F5F9;
  --secondary-title: #CBD5E1;
  --tertiary-title: #94A3B8;
  --primary-paragraph: #94A3B8;
  --secondary-paragraph: #CBD5E1;
  --tertiary-paragraph: #94A3B8;

  --primary-btn: var(--primary-color);
  --secondary-btn: var(--secondary-color);
  --tertiary-btn: #0f172a;

  --section-bg-one: var(--body);
  --section-bg-two: var(--body);
  --section-bg-three: var(--body);

  --primary-border: rgba(241, 245, 249, 0.14);
  --primary-border2: rgba(241, 245, 249, 0.08);
  --secondary-border: rgba(241, 245, 249, 0.08);
  --tertiary-border: rgba(241, 245, 249, 0.08);
  --panel-bg: #111c2c;
  --gray-text: #94A3B8;

  --available-card-bg: linear-gradient(180deg, #16283a 0%, rgba(22, 40, 58, 0) 100%);

  --dark-bg1: #0d1826;
  --dark-bg2: #0b1420;
  --dark-bg3: #16283a;
  --dark-bg4: #13212f;
  --dark-bg5: #1a2e40;
  --dark-bg6: #1c3244;
}

/* Typography: warm serif for display copy, Inter everywhere else. Kaushan
   Script is left alone — it's a sparse decorative accent elsewhere. */
h1, h2, h3, h4,
.title, .heading-title, .section-title,
.hero-slider-content h1, .hero-slider-content h2 {
  font-family: var(--Fraunces);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Nav/mobile-menu logo ships as an inline style="width:180px" on every page
   — far too big for a square icon-mark. !important beats that inline style
   without touching all 13 HTML files. */
.changeLogo {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain;
}

/* Logo theme toggle — main-style.css ships no rule for these two classes,
   so both images render at once with no theme switching. */
.logo-light {
  display: block;
}
.logo-dark {
  display: none;
}
[data-theme=dark] .logo-light {
  display: none;
}
[data-theme=dark] .logo-dark {
  display: block;
}

/* Button / card polish pass */
.btn-primary,
.btn-primary-fill,
.btn-primary-submit,
.btn-primary-light,
.btn-primary-outline,
.btn-primary-sm,
.btn-primary-icon-sm,
.btn-secondary-sm {
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-primary:hover,
.btn-primary-fill:hover,
.btn-primary-submit:hover,
.btn-primary-light:hover,
.btn-primary-sm:hover,
.btn-primary-icon-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--primary-color-rgb), 0.28);
}

.btn-primary-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--primary-color-rgb), 0.16);
}

[class*="card"],
.single-service,
.plan-section-three {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* The template's "secondary" button family (Online Banking, Account Login,
   Join Millions...) ships a separate color distinct from the primary CTA —
   flatten it to the theme color everywhere. */
.btn-secondary-sm,
.btn-secondary-lg,
.btn-secondary-fill,
.btn-secondary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-secondary-sm:hover,
.btn-secondary-lg:hover {
  background-color: transparent !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.btn-secondary-fill:hover,
.btn-secondary-outline:hover {
  border-color: var(--primary-color) !important;
  background-color: transparent !important;
  color: var(--primary-color) !important;
}

.btn-secondary-fill:focus,
.btn-secondary-fill:focus:active,
.btn-secondary-outline:focus,
.btn-secondary-outline:focus:active {
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.header-area .mobile_menu .slicknav_menu .slicknav_nav .btn-secondary-sm:hover,
.header-area-two .mobile_menu .slicknav_menu .slicknav_nav .btn-secondary-sm:hover,
.header-area-three .mobile_menu .slicknav_menu .slicknav_nav .btn-secondary-sm:hover {
  color: var(--primary-color);
}

/* Ambient gradient accent — subtle blue wash instead of a flat fill */
.banner-area,
.hero-area {
  background-image: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.06) 0%, rgba(61, 143, 209, 0.05) 100%);
}

/* ===== Homepage hero ===== */
/* The hero photo (phone + card composite) is the section's full background,
   not a boxed image — a horizontal + bottom vignette keeps the copy and
   stats legible without hiding the art on the right. */
.lark-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  overflow: hidden;
  background-color: #0b1420;
  background-image:
    linear-gradient(90deg, rgba(11, 20, 32, 0.94) 0%, rgba(11, 20, 32, 0.8) 30%, rgba(11, 20, 32, 0.4) 55%, rgba(11, 20, 32, 0.08) 78%),
    linear-gradient(180deg, rgba(11, 20, 32, 0) 55%, rgba(11, 20, 32, 0.92) 100%),
    url("../images/hero/larkspur-hero-app.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center right;
  background-repeat: no-repeat;
}

.lark-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.lark-hero__inner {
  max-width: 600px;
}

.lark-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(241, 245, 249, 0.18);
  border-radius: 30px;
  color: #6FB3E0;
  font-family: var(--Inter);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.lark-hero__title {
  font-family: var(--Inter);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #F1F5F9;
  margin-bottom: 20px;
}

.lark-hero__title .accent {
  background: linear-gradient(90deg, #4A9FE0, #7EC8F2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lark-hero__sub {
  font-family: var(--Inter);
  color: #CBD5E1;
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 34px;
}

.lark-hero__features {
  display: flex;
  gap: 26px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.lark-hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 190px;
}

.lark-hero__feature i {
  color: #4A9FE0;
  font-size: 22px;
  margin-top: 2px;
}

.lark-hero__feature h5 {
  font-family: var(--Inter);
  color: #F1F5F9;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
}

.lark-hero__feature p {
  font-family: var(--Inter);
  color: #94A3B8;
  font-size: 12.5px;
  line-height: 1.4;
  margin: 0;
}

.lark-hero__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lark-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: #ffffff;
  font-family: var(--Inter);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 40px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lark-hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(31, 111, 178, 0.35);
  background: var(--tertiary-color);
  color: #ffffff;
}

.lark-hero__btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #F1F5F9;
  font-family: var(--Inter);
  font-weight: 600;
  font-size: 15px;
}

.lark-hero__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(241, 245, 249, 0.12);
  color: #F1F5F9;
  transition: background 0.25s ease;
}

.lark-hero__btn-video:hover .lark-hero__play {
  background: rgba(241, 245, 249, 0.22);
}

.lark-hero__stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(241, 245, 249, 0.12);
  flex-wrap: wrap;
}

.lark-hero__stat h3 {
  font-family: var(--Inter);
  color: #F1F5F9;
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 4px;
}

.lark-hero__stat p {
  font-family: var(--Inter);
  color: #94A3B8;
  font-size: 13.5px;
  margin: 0;
}

@media (max-width: 991px) {
  .lark-hero {
    min-height: 620px;
    background-image:
      linear-gradient(180deg, rgba(11, 20, 32, 0.55) 0%, rgba(11, 20, 32, 0.75) 45%, rgba(11, 20, 32, 0.95) 100%),
      url("../images/hero/larkspur-hero-app.jpg");
    background-size: cover, cover;
    background-position: center, center 30%;
  }
  .lark-hero__inner {
    max-width: 100%;
  }
  .lark-hero__title {
    font-size: 40px;
  }
  .lark-hero__stats {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .lark-hero {
    padding: 60px 0 36px;
  }
  .lark-hero__title {
    font-size: 32px;
  }
  .lark-hero__features {
    gap: 18px;
  }
  .lark-hero__feature {
    max-width: 100%;
  }
  .lark-hero__stats {
    gap: 28px;
  }
}

/* Bigger, easier-to-tap Login / Open Account buttons (header CTA + mobile nav) —
   sized for accessibility, e.g. older users on touchscreens. */
.sign-btn .btn-secondary-sm {
  font-size: 18px;
  font-weight: 700;
  padding: 14px 30px;
  line-height: 1.3;
}
.header-right-three .signin {
  font-size: 18px;
  font-weight: 700;
}

.single-list.d-lg-none > a.single[href*="auth_sys.php"],
.single-list.d-lg-none > a.single[href*="opening.php"] {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px !important;
  margin: 10px 16px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: #fff !important;
}
.single-list.d-lg-none > a.single[href*="auth_sys.php"]:hover,
.single-list.d-lg-none > a.single[href*="opening.php"]:hover {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
}
