/* ============================================================================
   OASIS THEME — Vanilla CSS (converted from Weebly LESS)
   Zero Weebly dependencies. Same layout logic 1:1.
   ============================================================================ */

/* Google Fonts — same families used by Weebly theme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&family=Source+Sans+Pro:wght@400;600&family=EB+Garamond:ital,wght@0,400;0,500;0,700;1,400&family=Raleway:wght@400;700&family=Cantarell:wght@400;700&family=Dosis:wght@400;500;600&display=swap');

/* ---------- Resets ---------- */

ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input, iframe, img {
  margin: 0;
  padding: 0;
  border: 0;
}

a img { border: 0; }
a { text-decoration: none; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- General Structure ---------- */

html { height: 100%; }

body {
  background: #fff;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  color: #333333;
  font: 16px/1 'Source Sans Pro', arial, sans-serif;
}

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#panel-one,
#panel-two {
  width: 50%;
}

#panel-one {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}

#panel-two {
  position: relative;
  left: 0;
  margin-left: 50%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  padding: 40px 80px;
}

#footer {
  position: relative;
}

/* ---------- Text and Type ---------- */

a {
  color: #999999;
  transition: all 200ms linear;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  margin: 0 auto 1em;
  font-size: 1.25em;
  letter-spacing: -0.025em;
}

div.paragraph, p {
  margin: 0 auto 2em;
  line-height: 1.75;
}

.paragraph a, p a {
  color: #c4ae63;
}

.paragraph a:hover, p a:hover {
  text-decoration: underline;
}

/* ---------- Panel One (Left Panel) ---------- */

.background-panel,
.shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-panel {
  z-index: 0;
  background-image: url('coverimage.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shade {
  position: absolute;
  z-index: 1;
  background: rgba(51, 51, 51, 0.15);
}

.hamburger,
#logo {
  position: absolute;
}

.hamburger {
  top: 40px;
  left: 40px;
  z-index: 6;
  width: 30px;
  height: 27px;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
}

/* Hamburger icon via CSS (replaces image-based hamburger.png) */
.hamburger span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 27px;
}

.hamburger span::before,
.hamburger span::after,
.hamburger span i {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 3px;
  transition: all 200ms linear;
}

.hamburger span::before { top: 5px; }
.hamburger span i { top: 12px; display: block; font-style: normal; }
.hamburger span::after { top: 19px; }

/* Hamburger open state */
body.nav-open .hamburger span::before {
  transform: rotate(45deg);
  top: 12px;
}
body.nav-open .hamburger span i {
  opacity: 0;
}
body.nav-open .hamburger span::after {
  transform: rotate(-45deg);
  top: 12px;
}

#logo {
  top: 40px;
  left: 0;
  padding: 0 40px;
  text-align: center;
  box-sizing: border-box;
  z-index: 1;
  width: 100%;
}

#logo a {
  text-decoration: none;
}

#site-title {
  color: #fff;
  font-family: 'Cantarell', sans-serif;
  font-size: 1.6em;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 3px;
}

#logo img {
  max-width: 100%;
}

/* ---------- Navigation (Desktop: bottom bar on left panel) ---------- */

.nav-bottom {
  display: none;
}

body.postload .nav-bottom {
  opacity: 1;
}

.nav-bottom .menu-wrapper {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  font-size: 0;
}

.nav-bottom li {
  list-style: none;
  display: inline-block;
}

.nav-bottom li a {
  color: #fff;
  display: block;
  padding: 20px 10px;
  font-family: 'Dosis', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 200ms linear;
}

.nav-bottom li a:hover {
  color: #fff;
  opacity: 0.7;
}

.nav-bottom li#active a,
.nav-bottom li.active a {
  font-weight: bold;
  color: #fff;
}

/* ---------- Mobile Nav (Fullscreen Overlay) ---------- */

#nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #222222;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease-in-out, z-index 0.1s 0.35s ease-in-out;
  padding: 80px 40px;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.nav-open #nav-overlay {
  opacity: 1;
  z-index: 5;
  transition: opacity 0.35s ease-in-out;
}

#nav-overlay li {
  list-style: none;
}

#nav-overlay li a {
  color: #999999;
  display: block;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15em;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 200ms linear;
}

#nav-overlay li a:hover,
#nav-overlay li#active a,
#nav-overlay li.active a {
  color: #fff;
}

/* Overlay behind nav */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease-in-out, z-index 0.1s 0.35s ease-in-out;
}

body.nav-open .overlay {
  opacity: 0.70;
  z-index: 5;
  transition: opacity 0.35s ease-in-out;
}

/* ---------- Banner / Header Section ---------- */

#banner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header-section {
  text-align: left;
  margin: auto 0;
}

#banner h2 {
  margin: 0 auto;
}

#banner h2 {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

#banner .paragraph,
#banner p {
  color: #666666;
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0.75em auto;
}

#banner .paragraph {
  font-size: 1.15em;
}

/* ---------- Content Section ---------- */

#main {
  /* Content area */
}

/* ---------- Buttons (Oasis style) ---------- */

.btn,
.btn-inner {
  float: none !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  background-image: none !important;
  line-height: 1 !important;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn .btn-inner {
  display: inline-block;
  padding: 0.85em 1.5em 0.75em !important;
  color: #ffffff !important;
  background: #c4ae63 !important;
  border-color: #c4ae63 !important;
  transition: all 200ms linear;
  font-size: 13px !important;
}

.btn:hover .btn-inner {
  opacity: 0.85;
}

.btn-highlight .btn-inner {
  background: none !important;
  color: #333333 !important;
  border: 2px solid #333333 !important;
}

.btn-highlight:hover .btn-inner {
  color: #ffffff !important;
  background: #333333 !important;
  border: 2px solid #333333 !important;
}

/* ---------- Form Styling ---------- */

.form-label {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 1em !important;
  padding: 0 0 10px !important;
  color: #666 !important;
}

.form-sublabel {
  margin: 5px 0 -10px;
  font-family: "EB Garamond", serif;
  color: #666;
}

.form-input-container {
  margin-bottom: 20px;
}

.form-input,
.form-textarea {
  color: inherit;
  background: #f0f0f0;
  border: solid 1px #f0f0f0;
  border-radius: 0;
  padding: 8px !important;
  min-height: 42px !important;
  box-sizing: border-box;
  transition: all 200ms linear;
  font-family: "EB Garamond", serif;
  font-size: 18px;
  width: 100%;
  max-width: 370px;
}

.form-input:focus,
.form-textarea:focus {
  background: #fff;
  border-color: #D8D8D8;
  outline: none;
}

.form-required {
  color: #c4ae63;
}

.form-not-required {
  color: #c4ae63;
}

/* Submit button */
.form-submit-btn {
  display: inline-block;
  padding: 0.85em 1.5em 0.75em;
  color: #ffffff;
  background: #c4ae63;
  border: none;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  cursor: pointer;
  transition: all 200ms linear;
}

.form-submit-btn:hover {
  opacity: 0.85;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 0 80px;
  position: relative;
}

.site-footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 auto 60px;
  background: #d8d8d8;
}

/* Scroll to top */
.scrolltop {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 5px;
  background: #d8d8d8;
  color: #fff;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 8px;
  cursor: pointer;
  text-decoration: none;
}

/* ---------- Content hr ---------- */

hr.styled-hr {
  height: 1px;
  background: #D8D8D8;
  border: none;
}

blockquote {
  border-left: 6px solid #d8d8d8 !important;
  margin: 10px 0;
  padding-left: 20px;
  font-style: italic;
  line-height: 1.5;
}

/* ---------- Multicol (two-column layout in content area) ---------- */

.multicol-table {
  width: 100%;
  border-collapse: collapse;
}

.multicol-col {
  vertical-align: top;
}

/* ---------- Inline Weebly font overrides (from ctrluhomepage inline styles) ---------- */

/* Body text */
#main div.paragraph,
#main p,
.content-area div.paragraph,
.content-area p {
  font-family: "EB Garamond", serif !important;
  font-style: normal !important;
  font-size: 18px;
  line-height: 24px;
  color: #666 !important;
}

/* Headings */
#main h2,
.content-area h2 {
  font-family: "Raleway", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0px !important;
  font-size: 32px;
  line-height: 28px;
}

/* Banner headline */
.header-section h2 {
  font-family: "Raleway", sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
  font-size: 31px !important;
  line-height: 44px !important;
}

/* Banner subtext */
.header-section .paragraph {
  font-family: "EB Garamond", serif !important;
  font-size: 15px !important;
  line-height: 22px !important;
}

/* Links in content */
h2.content-title a,
.paragraph a,
blockquote a {
  color: #c4ae63 !important;
}

/* Menu nav */
.nav-bottom li a,
#nav-overlay li a {
  font-family: "Dosis", sans-serif !important;
  letter-spacing: 2px !important;
}

/* ============================================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================================ */

@media (max-width: 1024px) {

  body {
    font-size: 14px;
  }

  #wrapper {
    position: relative;
    left: 0;
    transition: left 300ms cubic-bezier(0, 0.085, 0.68, 0.53);
  }

  #panel-one,
  #panel-two {
    position: relative;
    width: 100%;
  }

  #panel-one {
    height: 400px;
  }

  #panel-two {
    margin-left: 0;
    height: auto;
    display: block;
  }

  #banner {
    display: block;
  }

  .header-section {
    margin: 0;
  }

  .container {
    padding: 40px 60px;
  }

  #site-title {
    line-height: 1.5;
  }

  .scrolltop {
    display: block;
  }

  /* Nav */
  .nav-bottom {
    display: none;
  }

  .hamburger {
    display: block;
  }

  #logo {
    padding: 0 90px;
  }

  /* Nav overlay expands to full width on tablet */
  #nav-overlay {
    width: 100%;
  }
}

/* ============================================================================
   RESPONSIVE — Mobile (max-width: 767px)
   ============================================================================ */

@media (max-width: 767px) {

  /* Collapse table layout to stacked blocks on mobile */
  .multicol-table,
  .multicol-table tbody,
  .multicol-table tr {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .multicol-col {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 1em !important;
    padding: 0 !important;
    text-align: center;
  }

  /* Instruction text: left-aligned text inside a centered block */
  .multicol-col .paragraph {
    text-align: left;
    display: inline-block;
  }

  #panel-one {
    height: 220px;
  }

  .container {
    padding: 30px 20px;
  }

  .site-footer {
    padding: 0 20px;
  }

  .site-footer::before {
    margin: 0 auto 50px;
  }

  /* Nav */
  .hamburger {
    left: 20px;
    top: 20px;
  }

  #logo {
    top: 20px;
    padding: 0 70px;
  }

  #nav-overlay {
    padding: 60px 20px !important;
  }

  /* Banner */
  #banner h2 {
    font-size: 36px;
  }

  /* sections */
  .section {
    height: auto !important;
  }
}

/* ============================================================================
   RESPONSIVE — Desktop nav fade-in
   ============================================================================ */

@media (min-width: 1025px) {
  .nav-bottom {
    opacity: 0;
    transition: all 400ms linear 800ms;
  }

  body.postload .nav-bottom {
    opacity: 1;
  }
}

/* ---------- Theme-specific: dark body page (homepage) ---------- */

body.theme-dark {
  /* dark theme has no special body override — 
     the left panel gradient provides the dark visual */
}


/* ---------- "Previously available" footer ---------- */

.formerly-footer {
  text-align: center;
  font-size: 11px;
  color: #888;
  margin-top: 20px;
  padding: 20px 0;
}
