@import 'oxyjajotheme.css';

:root {
  --tab-collapsed-width: 150px;
  --tab-expanded-width: 100vw;
  --transition-speed: 500ms;

  --primary-color: #1a1c1b;
  --secondary-color: #0e8e41;
  --tertiary: #82ac48;
  --accent-color: #4cbb17;
  --white: #ffffff;
  --black: #000000;
  --light: #f9f9f9;
  --grey: #97a0a8;

  --font-family: 'Univers LT Pro', sans-serif;
  --heading-font-family: 'Univers LT Pro', sans-serif;

}

body {
  font-family: var(--font-family) !important;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--heading-font-family) !important;
}

.h1 {
  font-size: 59px;
  font-weight: 700;
  line-height: 1.15;
}
.h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.5;
}
.h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
.h4 {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
}
.h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}



.ct-link-button,
button,
.btn {
  line-height: 1;
  text-transform: uppercase;
  padding: 1rem 1.5rem 0.75rem !important;
}

.heading-block {
  line-height: 1.1;
}
.heading-block span.ignore {
  display: inline-block;
}
.heading-block span {
  display: block;
}


.primary-color {
  color: var(--primary-color);
}
.secondary-color {
  color: var(--secondary-color);
}
.tertiary-color {
  color: var(--tertiary-color);
}
.accent-color {
  color: var(--accent-color);
}
.white-color {
  color: var(--white);
}
.black-color {
  color: var(--black);
}



/* Header */
.oxy-nav-menu-dropdowns.oxy-nav-menu-dropdown-arrow .menu-item-has-children > a::after {
  margin-top: -0.5rem;
}

header .oxy-nav-menu ul > li {
  position: relative;
}
header .oxy-nav-menu ul > li:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 27px;
  /* background-color: pink; */
}
header .oxy-nav-menu ul > li > ul {
  margin-top: 27px;
}


/* Hero Accordion */
.hero-accordion {
  position: relative;
  /* width: 100%; */
  width: 100vw;
  height: 100vh;
  /* max-height: 650px; */
  max-height: 75vh;
  overflow: hidden;
  color: var(--white);
}

.hero-accordion-items {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
}

.acc-item {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 100%;
  width: var(--tab-collapsed-width);
  transition: width var(--transition-speed) ease;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* gradient overlay per item */
.acc-item.is-active .acc-label::before,
.acc-item:not(.is-active)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: .35;
  pointer-events: none;
  transition: opacity var(--transition-speed) ease;
}

/* slightly darker overlay when collapsed */
.acc-item:not(.is-active)::before {
  opacity: 0.7;
}

.acc-item.is-active::before {
  content:'';
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: .4;
}

/* vertical title strip */
.acc-label {
  position: relative;
  z-index: 1;
  width: var(--tab-collapsed-width);
  border: 0;
  margin: 0;
  padding: 20px;
  cursor: pointer;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 20px;
}

.acc-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* content panel lives in the same strip */
.acc-content {
  position: relative;
  /* font-family: 'open sans', sans-serif; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.5rem;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  z-index: 1;
  transition:
    opacity var(--transition-speed) ease,
    max-width var(--transition-speed) ease,
    padding var(--transition-speed) ease;
}

.acc-item:not(.is-active) .acc-content {
  display: none;
}

.acc-content h3 {
  margin: 0 0 0.7rem;
  /* font-size: clamp(22px, 2.4vw, 28px); */
}

.acc-content p {
  margin: 0 0 1.2rem;
  /* font-size: 14px; */
  /* line-height: 1.6; */
}

/* OPEN STATE: strip widens, content reveals */
.acc-item.is-active {
  width: var(--tab-expanded-width);
}

.acc-item.is-active .acc-content {
  max-width: 640px;
  opacity: 1;
  padding-right: 3rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-accordion {
    max-height: none;
    height: auto;
  }

  .hero-accordion-items {
    flex-direction: column;
  }

  .acc-item,
  .acc-item.is-active {
    width: 100%;
    height: 140px;
  }

  .acc-item.is-active {
    height: auto;
  }

  .acc-label span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .acc-content {
    max-width: 100%;
    padding: 1.2rem 1.5rem;
  }
}

.hero-accordion .btn,
.hero-accordion .ct-link-button {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.hero-accordion .btn:hover,
.hero-accordion .ct-link-button:hover,
.hero-accordion .btn:focus,
.hero-accordion .ct-link-button:focus {
  background: var(--white);
  color: var(--primary-color);
}
/* END Hero Accordion */



.time-lapse-video-section {
  position: relative;
}
.time-lapse-video-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 72%;
  /* background-color: pink; */
  background-image: url('/wp-content/uploads/2025/12/S-white.svg');
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
  z-index: 0;
}
.time-lapse-video-section .ct-section-inner-wrap {
  position: relative;
  z-index: 1;
}


footer {
  position: relative;
}
footer:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38%;
  height: 88%;
  /* background-color: pink; */
  background-image: url('/wp-content/uploads/2025/12/S-black.svg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
}
footer .ct-section-inner-wrap {
  position: relative;
  z-index: 1;
}