/* PREMIUM DARK THEME STYLES */
/*-- -------------------------- -->
<---     Premium Dark Theme     -->
<--- -------------------------- -*/

/* Core variables and styles */
:root {
  --dark-bg: #000000;         /* Black background */
  --dark-surface: #121212;    /* Slightly lighter black for surfaces */
  --dark-accent: #222222;     /* Dark accent for cards/elements */
  --primary-gold: #D4AF37;    /* Premium gold accent color */
  --text-white: #FFFFFF;      /* White text */
  --text-light: #E0E0E0;      /* Slightly dimmed white text */
  --text-gold: #D4AF37;       /* Gold text color for accents */
  --black-100: #191919;       /* Gold text color for accents */
}

/* Global dark mode overrides */
body {
  background-color: var(--dark-bg);
  color: var(--text-white);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
}

p, li, span {
  color: var(--text-light);
}

.cs-title {
  color: var(--text-white) !important;
}

.cs-text {
  color: var(--text-light) !important;
}

.cs-topper {
  color: var(--text-gold) !important;
}

/* Buttons */
.cs-button-solid {
  background-color: var(--brand-color) !important;
  color: var(--text-white) !important;
  font-weight: 700;
}

.cs-button-solid:before {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

/* Navigation */
#cs-navigation {
  background-color: var(--brand-color);
}

#cs-navigation .cs-li-link {
  color: var(--text-white);
}

/* Remove the filter from the logo and set sizing */
#cs-navigation .cs-logo {
  /* filter: brightness(0) invert(1); */
  filter: none !important;
}

#cs-navigation .cs-logo img {
  max-width: 110px;
  height: 110px;
}

/* Hero section */
#hero-1618 .cs-background:before {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0.7;
}

#hero-1618 .cs-item {
  background-color: var(--dark-accent);
  box-shadow: 0px 12px 80px 0px rgba(0, 0, 0, 0.2);
}

#hero-1618 .cs-h3 {
  color: var(--text-white);
}

#hero-1618 .cs-item-text {
  color: var(--text-light);
}

#hero-1618 .cs-icon {
  filter: brightness(0) invert(1);
}

/* Services section */
#services-343 {
  background-color: var(--dark-bg);
}

#services-343 .cs-item {
  background-color: var(--dark-accent);
}

#services-343 .cs-h3 {
  color: var(--text-white);
}

/* Footer */
#cs-footer-1783 {
  background-color: var(--brand-color);
}

#cs-footer-1783 .cs-text,
#cs-footer-1783 .cs-header {
  color: var(--text-white);
}

#cs-footer-1783 .cs-link {
  color: var(--text-light);
}

#cs-footer-1783 .cs-bottom {
  /* background-color: var(--dark-bg); */
}

/* Footer logo sizing */
#cs-footer-1783 .cs-logo-img {
  max-width: 130px;
  max-height: 130px;
  width: auto;
  height: auto;
}

/* Card groups and items */
.cs-card-group .cs-item {
  background-color: var(--dark-accent);
}

/* General content sections */
#content-1450 {
  background-color: var(--dark-bg);
}

#content-1450 h2,
#content-1450 h3,
#content-1450 h4 {
  color: var(--text-white);
}

#content-1450 p,
#content-1450 li {
  color: var(--text-light);
}

/* Side by side sections */
#sbs, #sbs-r {
  background-color: var(--dark-bg);
}

/* Call to action section */
#cta {
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  z-index: 1;
}

#cta .container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#cta .title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  text-align: center;
  max-width: 40rem;
}

#cta p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 40rem;
}

#cta .cs-button-solid {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  padding: 0 1.5rem;
  margin: 0 auto;
}

#cta picture {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

#cta picture:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.8);
}

#cta picture img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Interior hero */
#int-hero {
  background-color: var(--dark-bg);
}

#int-hero:before {
  background-color: rgba(0, 0, 0, 0.7);
} 