/* ============================================================
   Lucid Unity Labs — 1:1 port of the Oxygen "Conference" design
   All Oxygen builder defaults + page-specific overrides preserved.
   ============================================================ */

:root {
  --lul-orange: #ff4c1c;
  --lul-orange-2: #ff7f0d;
  --lul-orange-deep: #e64034;
  --lul-red: #d7193d;
  --lul-cream: #f9f3f5;
  --lul-peach: #f9c5af;
  --lul-peach-light: #ffdad0;
  --lul-magenta: #63002f;
  --lul-blue: #1e73be;
  --lul-text: #666666;

  --font-display: "Oswald", sans-serif;
  --font-body: "Maven Pro", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lul-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- Oxygen scaffolding (exact defaults from the live site) ---------- */
.ct-section {
  width: 100%;
  background-size: cover;
  background-repeat: repeat;
  display: block;
  box-sizing: border-box;
}
.ct-section-inner-wrap {
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  min-height: inherit;
  max-width: 1120px;
  padding-left: 24px;
  padding-right: 24px;
}
.ct-div-block {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
}
.ct-new-columns {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.ct-headline { margin: 0; box-sizing: border-box; }
.ct-text-block { box-sizing: border-box; }
.ct-link {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  text-decoration: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.ct-link-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background-color: #1e73be;
  border: 1px solid #1e73be;
  color: #ffffff;
  padding: 10px 16px;
  box-sizing: border-box;
}
.ct-link-text {
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
}
.ct-image { max-width: 100%; }
.ct-fancy-icon {
  display: inline-flex;
  border-radius: 50%;
}
.ct-inner-content { width: 100%; }

/* ---------- Header / overlay nav ---------- */
.oxy-header-wrapper { position: relative; }
#_header-58-12.oxy-header-wrapper {
  position: relative;
  z-index: 100;
  background-color: #63002f;
}
.oxy-header-row {
  width: 100%;
  display: block;
}
.oxy-header-container {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 24px;
  max-width: 1120px;
}
.oxy-header-left,
.oxy-header-right {
  display: flex;
  align-items: center;
}
.oxy-header-left { justify-content: flex-start; }
.oxy-header-right { justify-content: flex-end; }
.oxy-header-center {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

#headline-54-12.nav-brand {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: #e64034;
  margin: 0;
  letter-spacing: 0.02em;
  text-align: left;
  align-items: flex-start;
}
.oxy-nav-menu {
  display: flex;
  background-color: #d7193d;
  padding: 0 12px;
  text-transform: uppercase;
}
.oxy-nav-menu-list {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.oxy-nav-menu-list li { display: flex; align-items: center; }
.oxy-nav-menu-list a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 24px;
  transition: opacity 0.2s ease;
}
.oxy-nav-menu-list a:hover { opacity: 0.75; }

/* Salmon accent square behind each big heading's first letter (WP parity) */
#headline-681-4::before,
#headline-487-4::before,
#headline-805-22::before,
#headline-63-92::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: #f5cbc5;
  z-index: -1;
  top: -18px;
  left: -6px;
}

/* ---------- Theme shared classes ---------- */
.conference-heading-two {
  font-family: var(--font-display);
  color: var(--lul-magenta);
  font-size: 100px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  z-index: 100;
  position: relative;
}
.BigParagraph {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lul-text);
  text-align: left;
}
.Subheading {
  font-size: 20px;
  line-height: 1.5;
  color: var(--lul-text);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  margin-left: 40px;
  border-left-color: var(--lul-red);
  border-left-width: 4px;
  border-left-style: solid;
  max-width: 320px;
}
.conference-main-button {
  background-image: linear-gradient(135deg, #ff7f0d, #e64034) !important;
  font-family: var(--font-body);
  border: none !important;
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
  padding: 18px 32px !important;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.conference-main-button:hover {
  transform: scale(1.05, 1.05);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
}
.conference-faq-1-title {
  font-family: var(--font-body);
}
.Place {
  font-family: var(--font-display);
  color: var(--lul-peach);
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 7px;
  font-weight: 500;
  text-transform: uppercase;
}
.conference-logo {
  transition: all 0.2s ease;
}

/* ---------- HERO ---------- */
#hero {
  background-image: url("/img/Rectangle-2-Copy@18x.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--lul-orange);
  text-align: center;
}
#hero > .ct-section-inner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 696px;
  padding-top: 220px;
  padding-bottom: 80px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  text-align: center;
}
#text_block-363-4.Place {
  margin-top: 28px;
  text-align: center;
}

/* ---------- MISSION section ---------- */
#mission {
  background-color: var(--lul-cream);
  text-align: left;
}
#mission > .ct-section-inner-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
#new_columns-641-4 { width: 100%; }
#div_block-644-4 { width: 100%; }
#headline-681-4 {
  margin-bottom: 28px;
}
#text_block-439-4 {
  border-left-color: var(--lul-orange-deep);
  border-left-width: 4px;
  border-left-style: solid;
  padding-left: 24px;
  color: var(--lul-text);
  font-weight: 500;
  font-style: italic;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 18px;
}

/* ---------- GALLERY (What We Cover) ---------- */
#gallery {
  background-image: url("/img/Rectangle-2-Copy@18x.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--lul-orange);
  text-align: center;
}
#gallery > .ct-section-inner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.gallery-row {
  width: 100%;
  flex-direction: row !important;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px;
}
.gallery-heading {
  color: #ffffff !important;
  text-align: right;
  z-index: 100;
  width: 50%;
  padding-right: 40px;
}
.gallery-subheading {
  color: #ffffff !important;
  max-width: 60%;
  width: 50%;
}
#text_block-267-4 {
  color: #ffffff;
  width: 50%;
}

/* ---------- UNLOCKING section ---------- */
#section-420-4 {}
#section-420-4 > .ct-section-inner-wrap { padding-bottom: 100px; padding-top: 100px; }
.unlock-columns { margin-bottom: 40px; }
#div_block-775-4 {
  width: 60%;
  padding: 20px;
}
#div_block-776-4 {
  width: 40%;
  padding: 20px;
  align-items: flex-start;
}
#headline-487-4 { margin-bottom: 20px; }
.unlock-counter {
  text-transform: uppercase;
  font-size: 150px;
  line-height: 1;
  margin-left: -10px;
  color: var(--lul-orange);
  font-family: var(--font-display);
  font-weight: 700;
}
#text_block-476-4.Place {
  text-align: left;
  align-items: flex-start;
  color: #d7193d;
}

/* ---------- STEM FRAMEWORK section ---------- */
#section-802-22 {
  background: #ffffff;
}
#section-802-22 > .ct-section-inner-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
}
#new_columns-803-22 { width: 100%; }
.stem-block {
  width: 100%;
  text-align: center;
  align-items: center;
  padding: 20px;
}
.stem-heading {
  margin-bottom: 20px;
  font-size: 70px;
  display: inline-block;
}
#text_block-806-22 {
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  color: var(--lul-text);
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 28px;
  margin-top: 26px;
  max-width: 720px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #eee;
}
.site-footer > .ct-section-inner-wrap {
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: #e64034;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
}
.footer-spacer { display: none; }

/* ---------- CONTACT PAGE ---------- */
.contact-hero {
  background-image: url("/img/Rectangle-2-Copy@18x.jpg");
  background-color: var(--lul-orange-deep);
  background-position: 50% 50%;
  background-size: cover;
}
.contact-hero > .ct-section-inner-wrap {
  padding-top: 200px;
  padding-bottom: 100px;
}
.contact-hero-cols {
  align-items: stretch;
}
.contact-hero-left {
  width: 50%;
  padding: 36px;
  flex-direction: column;
  display: flex;
  text-align: right;
  align-items: flex-end;
  justify-content: center;
}
.contact-hero-right {
  width: 50%;
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: var(--lul-red);
  flex-direction: column;
  display: flex;
  text-align: left;
  justify-content: center;
  padding: 36px;
}
.contact-hero-title {
  color: #ffffff !important;
  text-align: right;
  display: inline-block;
}
#headline-63-92::before {
  left: 175px;
}
#text_block-70-92 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
}

/* Contact info */
#section-2-92 {
  background-color: var(--lul-cream);
  text-align: center;
}
#section-2-92 > .ct-section-inner-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-info-cols {
  width: 100%;
  align-items: stretch;
}
.contact-info-col {
  padding: 12px;
  display: flex;
  justify-content: center;
  width: 33.33%;
}
#div_block-10-92 { width: 33.33%; }
#div_block-11-92 { width: 33.33%; padding-right: 0; }
#div_block-12-92 { width: 33.34%; }

.conference-contact-4-wrapper {
  text-align: center;
  max-width: 360px;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.conference-contact-4-icon {
  color: var(--lul-red);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.conference-contact-4-icon svg { width: 36px; height: 36px; }
.conference-contact-4-title {
  font-family: var(--font-body);
  color: var(--lul-red);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.conference-contact-4-text,
.conference-contact-4-link {
  font-family: var(--font-body);
  color: var(--lul-text);
  font-size: 16px;
  display: inline-block;
}
.conference-contact-4-link:hover { color: var(--lul-red); }

/* Contact form */
#section-75-92 {
  background-color: #ffffff;
  text-align: center;
}
#section-75-92 > .ct-section-inner-wrap {
  padding-top: 80px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-title { font-size: 80px; }
  .conference-heading-two { font-size: 80px; }
  #hero > .ct-section-inner-wrap { padding-top: 180px; min-height: 600px; }
  #mission > .ct-section-inner-wrap { padding-top: 60px; padding-bottom: 60px; }
  #div_block-775-4,
  #div_block-776-4 { width: 100%; padding-bottom: 24px; }
  .contact-hero-left,
  .contact-hero-right {
    width: 100%;
    border-left: none;
    border-top: 4px solid var(--lul-red);
    text-align: center;
    align-items: center;
  }
  .contact-hero-left { border-top: none; }
  .contact-hero-title { text-align: center; }
  #div_block-10-92,
  #div_block-11-92,
  #div_block-12-92 { width: 100%; }
  #section-2-92 > .ct-section-inner-wrap { padding-top: 48px; padding-bottom: 48px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 64px; }
  .conference-heading-two { font-size: 56px; }
  .unlock-counter { font-size: 96px; }
  #gallery { background-attachment: scroll; }
  .gallery-row { flex-direction: column !important; }
  .gallery-heading,
  #text_block-267-4 { text-align: center; max-width: 100%; width: 100%; padding-right: 0; }
  .Subheading { padding-left: 0; margin-left: 0; max-width: 100%; }
  .contact-info-cols { flex-direction: column; }
  .oxy-header-container { padding: 24px 16px; }
  .oxy-nav-menu-list { gap: 16px; }
}

@media (max-width: 479px) {
  .hero-title { font-size: 48px; }
  .conference-heading-two { font-size: 40px; }
  .stem-heading { font-size: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  #gallery { background-attachment: scroll; }
}
