/*----------------------------------------
Global Styles
----------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.page,
.post {
  margin-bottom: 0;
}

/*------------------------------------------------------------
Grid System
------------------------------------------------------------*/
.row,
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--grid-space)) 0 calc(-1 * var(--grid-space));
}

ul.row {
  list-style: none;
  padding: 0;
}

.row .row {
  margin: 0;
}

.flex {
  margin: 0 auto;
}

/*------------------------------ 
Individual Columns 
------------------------------*/
.col {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: min(100%, 100%);
  padding: var(--grid-space);
}

/*------------------------------
Component Columns 
------------------------------*/
.cols_2 > .col {
  width: calc(100% / 2);
}

.cols_3 > .col {
  width: calc(100% / 3);
}

.cols_4 > .col {
  width: calc(100% / 4);
}

.cols_5 > .col {
  width: calc(100% / 5);
}

.cols_6 > .col {
  width: calc(100% / 6);
}

.cols_7 > .col {
  width: calc(100% / 7);
}

/*------------------------------
Divine Proportions Columns
------------------------------*/
.cols_m7 > .col_major {
  width: 53.33%;
}

.cols_m7 > .col_minor {
  width: 46.67%;
}

.cols_gr > .col_major {
  width: 61.8%;
}

.cols_gr > .col_minor {
  width: 38.2%;
}

.cols_p5 > .col_major {
  width: 66.67%;
}

.cols_p5 > .col_minor {
  width: 33.33%;
}

.cols_p4 > .col_major {
  width: 75%;
}

.cols_p4 > .col_minor {
  width: 25%;
}

.cols_m3 > .col_major {
  width: 80%;
}

.cols_m3 > .col_minor {
  width: 20%;
}

.cols_m2 > .col_major {
  width: 88.89%;
}

.cols_m2 > .col_minor {
  width: 11.11%;
}

/*----------------------------------------
General Styles
----------------------------------------*/
.wrapper {
  width: min(100%, 100%);
  margin: 0;
  padding: var(--space-xxxl) 0;
  overflow: hidden;
  position: relative;
}

.wrapper > section {
  width: min(90%, 1280px);
  margin: 0 auto;
}

.wrp_short {
  padding-block: var(--space-xxl);
}

.wrp_bg_color_light {
  background-color: var(--color-event-lightest);
}

.section {
  margin: 0 auto var(--space-xxxl);
  width: 100%;
}

.subsection {
  margin-bottom: var(--space-xxl);
}

:is(.section:last-child, .subsection:last-child) {
  margin-bottom: 0;
}

/*------------------------------
Boxes
------------------------------*/
.box {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  border-radius: var(--box-border-rad);
  padding: var(--space-lg);
  overflow: hidden;
}

.box_transform {
  transition: var(--transition);
}

.box_transform:hover {
  transform: translateY(calc(var(--translateY) * -1)) scale(var(--scale));
  box-shadow: var(--box-shadow-hover);
}

.box_transform:active {
  transform: translateY(0) scale(1);
  box-shadow: var(--box-shadow);
}

.box p:last-of-type {
  margin-bottom: 0;
}

/*------------------------------
Images
------------------------------*/
.bg_img,
.svg_img {
  background-position: center;
  background-repeat: no-repeat;
}

.bg_img {
  background-size: cover;
}

.svg_img {
  background-size: 100%;
}

.no_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abs_center {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mask {
  position: relative;
}

.mask::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: 0;
}

/*--------------------
gold ring image
--------------------*/
.gold_ring_cnt {
  position: relative;
}

.gold_ring::before {
  content: "";
  display: block;
  border-radius: 100%;
  width: 110%;
  height: 110%;
  background-image: var(--gradient-gold);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: var(--box-shadow);
}

.gold_ring img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

/*----------------------------------------
Typography
----------------------------------------*/
body {
  font-family: var(--font-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--gray-10);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 var(--space-xxs);
  line-height: var(--heading-line-height);
  color: var(--color-primary-dark);
}

h1 {
  font-size: var(--text-xxl);
}

h2 {
  font-size: var(--text-xl);
}

h3 {
  font-size: var(--text-lg);
}

h4 {
  font-size: var(--text-md);
}

h5 {
  font-size: var(--text-body);
}

p {
  font-size: 1em;
  line-height: var(--body-line-height);
  margin: 0 0 var(--space-md);
}

ul,
ol {
  margin: var(--space-md) 0;
}

.text_white {
  color: #fff;
}

.text_white a {
  color: #fff;
}

.text_uppercase {
  text-transform: uppercase;
}

.text_italic {
  font-style: italic;
}

.text_center {
  text-align: center;
}

.font_serif {
  font-family: var(--font-serif);
}

.footnote {
  font-size: var(--text-sm);
  opacity: 0.75;
}

/*----------------------------------------
Buttons
----------------------------------------*/
.btn {
  display: block;
  width: min(100%, 250px);
  margin: var(--space-lg) 0;
  line-height: 3.5;
  height: 3.5em;
  border-radius: 50px;
  border-width: 1px;
  border-style: solid;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.btn_primary {
  background-image: linear-gradient(45deg, var(--color-accent), var(--color-accent-dark), var(--color-accent-darker));
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 3px 6px 9px hsla(322 70% 20% / 0.25);
}

.btn_secondary {
  background-image: linear-gradient(45deg, var(--color-secondary-light), var(--color-secondary));
  color: var(--color-primary-darkest);
  border-color: var(--color-secondary-lighter);
  box-shadow: 3px 6px 9px hsla(43 100% 15% / 0.25);
}

.btn_ghost {
  background-color: #fff;
  border-color: var(--gray-3);
  color: var(--gray-10);
}

.btn svg {
  margin-right: var(--space-xs);
  opacity: 0.5;
}

/*------------------------------
Button Sizes
------------------------------*/
.btn:is(.btn_md, .btn_sm) {
  font-size: 0.925em;
}

.btn_md {
  height: 3em;
  line-height: 3;
  max-width: 12em;
}

.btn_sm {
  height: 2.5em;
  line-height: 2.5;
  max-width: var(--space-xxxl);
}

.btn_disabled {
  background-image: none;
  background-color: var(--color-text-subtle);
  opacity: 0.65;
  color: #fff;
  pointer-events: none;
  cursor: not-allowed;
}

.btn_content {
  margin: var(--space-lg) 0;
  font-size: 0.9em;
}

.btn_center {
  margin: var(--space-md) auto;
}

.button {
  padding: 0;
}

/*------------------------------
Button: Hover
------------------------------*/
.btn:hover {
  transform: translateY(calc(-1 * var(--box-hover-move))) scale(var(--box-hover-scale));
}

/*------------------------------
Button: Active
------------------------------*/
.btn:active {
  transform: translateY(calc(var(--box-hover-move))) scale(1);
}

/*------------------------------
Buttons Other States
------------------------------*/
.btn_primary:is(:hover, :active, :visited, :focus),
.btn_disabled:is(:visited, :focus) {
  color: #fff;
}

.btn_secondary:is(:hover, :active, :visited, :focus),
.btn_ghost:is(:hover, :active, :visited) {
  color: var(--gray-10);
}

.button:is(:hover, :active) {
  border-color: #fff;
}

/*------------------------------------------------------------
Landing Page
------------------------------------------------------------*/

/*----------------------------------------
Section and Sub-Section Headers
----------------------------------------*/

/* Section Header
----------------------------------------*/
.section_header {
  text-align: center;
  width: min(100%, 42em);
  margin: 0 auto var(--space-xxl);
}

.section_header .title {
  font-size: var(--text-xxxl);
  font-family: var(--font-display);
  margin: 0;
}

/* Section Header Divider
----------------------------------------*/
.section_header .divider {
  display: block;
  background-image: url("/wp-content/uploads/2022/07/Fleur-de-Lis-vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: min(100%, 100%);
  height: var(--space-lg);
  margin: 0 auto;
  position: relative;
}

.section_header .divider::before,
.section_header .divider::after {
  content: "";
  display: block;
  width: calc(50% - var(--space-md));
  height: 1px;
  background-color: var(--color-secondary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.section_header .divider::before {
  left: 0;
}

.section_header .divider::after {
  right: 0;
}

/* Sub Section Header
----------------------------------------*/
.subsection_header {
  margin-bottom: 1em;
}

.subsection_header .title {
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  gap: 1em;
}

.subsection_header .title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--color-event-light), var(--color-event));
  opacity: 0.125;
}

.subsection_header .subtitle {
  width: min(100%, 50em);
  margin-top: var(--space-sm);
}

/*----------------------------------------
Eyebrow
----------------------------------------*/
.eyebrow {
  text-transform: uppercase;
  color: var(--color-event-light);
  font-weight: 800;
  font-size: var(--text-body);
  margin-bottom: var(--space-xxxxs);
}

/*--------------------------------------------------
Masthead
--------------------------------------------------*/
.logo {
  display: block;
  width: 18em;
  aspect-ratio: 5/1;
}

.logo_white {
  filter: drop-shadow(2px 2px 4px hsla(0 0 0 / 0.5));
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
#footer {
  padding: var(--space-sm) 0;
}

#footer .copyright {
  font-size: var(--text-sm);
  text-align: center;
  color: var(--gray-6);
  text-wrap: balance;
}

/*--------------------------------------------------
Coming Soon
--------------------------------------------------*/
.coming_soon {
  padding: 0;
}

.coming_soon section {
  background-color: var(--color-event);
  width: 100vw;
  height: 100vh;
}

.coming_soon :is(.title, .subtitle) {
  color: #fff;
  font-weight: 400;
}

.coming_soon section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming_soon .logo {
  display: block;
  width: 18em;
  aspect-ratio: 5/1;
  position: initial;
  margin: 0 auto;
}

/*----------------------------------------------------------
Responsive Styles
----------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
  .wrapper:not(.event_hero) {
    padding: var(--space-xxl) 0;
  }
}

/* #1200px */

@media only screen and (max-width: 600px) {
  body {
    font-size: 91%;
  }
}

/* #600px */

@media only screen and (max-width: 480px) {
  body {
    font-size: 88%;
  }
}

/* #480px */
