@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

/* View Transitons */
@view-transition {
  navigation: auto;
}

:root {
  --main-color: #72b5e4;
  --secondary-color: #1e276c;
  --title-color: #c9da2b;
  --light-color: #ffffff;
  --dark-color: #5b5b5b;
  --highlight-color: #c9da2b;
  --main-font: "Oswald", sans-serif;
  --secondary-font: "Roboto Condensed", sans-serif;
  --main-radius: clamp(0.5rem, 1vw, 2rem);
  --bs-border-color: #c9da2b;
  font-size: 14px;
}

html {
  scroll-behavior: smooth;
}

.site-body {
  background-color: var(--main-color);
  color: var(--light-color);
  font-family: var(--main-font);
}

.addTopBorder {
  border-top: 1px solid var(--light-color);
}

.addSideBorderL {
  border-left: 1px solid var(--light-color);
}

.addSideBorderR {
  border-right: 1px solid var(--light-color);
}

.addBottomBorder {
  border-bottom: 1px solid var(--highlight-color);
}

.mainColorText {
  color: var(--main-color);
}

.lightColorText {
  color: var(--light-color);
}

.darkColorText {
  color: var(--dark-color);
}

.titleColorText {
  color: var(--title-color);
}

.highLighColorText {
  color: var(--highlight-color);
}

.highLighColorText a {
  color: var(--highlight-color);
  transition: all ease-in-out 0.3s;
}

.lighColorText a:hover {
  color: var(--secondary-color);
  transition: all ease-in-out 0.3s;
}

.bg-main-color {
  background-color: var(--main-color);
}

.bg-secondary-color {
  background-color: var(--secondary-color);
}

.bg-highlight-color {
  background-color: var(--highlight-color);
}

.bg-light-color {
  background-color: var(--light-color);
}

.bg-title-color {
  background-color: var(--title-color);
}

.h1,
.h2,
.h3,
.h4,
.h3 {
  color: var(--highlight-color);
}

p {
  font-size: 2rem;
  font-weight: 500;
}

a {
  color: var(--light-color);
  font-size: 1.3rem;
  font-weight: 400;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

a:hover {
  color: var(--secondary-color);
  transition: all ease-in-out 0.3s;
}

/* Menu Styling */

.navbar-brand img {
  width: 100%;
  height: 50px;
}

.navbar-collapse {
  text-align: center;
}

#mainNav {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--main-color);
  font-family: var(--secondary-font);
}

#mainNav .navbar-toggler {
  color: var(--light-color);
  text-transform: none;
  font-weight: 700;
  padding: 1rem;
}

#mainNav .navbar-brand {
  font-weight: 700;
  letter-spacing: 0.0625em;
  text-transform: none;
}

#mainNav .navbar-brand img {
  height: 1.5rem;
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--light-color);
  letter-spacing: 0.0625em;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: var(--light-color);
  transition: 0.3s ease-in-out;
}

#mainNav .navbar-nav .nav-item::after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0px;
  background: transparent;
  transition: width 0.5s ease, background-color 0.5s ease;
}

#mainNav .navbar-nav .nav-item:hover::after {
  width: 100%;
  background: var(--light-color);
  transition: 0.3s ease-in-out;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: space-evenly;
  }

  #mainNav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: none;
    background-color: transparent;
    transition: 0.3s ease-in-out;
  }

  #mainNav .navbar-brand {
    font-size: 1.5em;
    transition: font-size 0.3s ease-in-out;
  }

  #mainNav .navbar-brand img {
    height: 6rem;
    transition: height 0.3s ease-in-out;
  }

  #mainNav.navbar-shrink {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--main-color);
    transition: 0.3s ease-in-out;
  }

  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.25em;
  }

  #mainNav.navbar-shrink .navbar-brand svg,
  #mainNav.navbar-shrink .navbar-brand img {
    height: 4rem;
  }

  #mainNav .navbar-nav .nav-item {
    margin-right: 1.8rem;
  }

  #mainNav .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
}

#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link,
#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link.active,
#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
  transition: 0.3s ease-in-out;
}

/* Button and Body styling */

.hero-section {
  background: url("../assets/img/mainBg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  min-height: 100dvh;
}

.header-title {
  color: var(--light-color);
  font-size: 5rem;
  font-family: var(--main-font);
  font-weight: 300;
  visibility: hidden;
  opacity: 0;
}

.header-subtitle {
  color: var(--title-color);
  font-size: 2rem;
  font-family: var(--secondary-font);
  font-weight: 500;
  margin-right: 2rem;
  visibility: hidden;
  opacity: 0;
}

.spine-box {
  position: relative;
}

.spine-segment {
  margin: 0;
  max-width: 55%;
  opacity: 0;
  scale: 0;
}

.flower-segment-1 {
  position: absolute;
  top: 0;
  max-width: 55%;
  z-index: 100;
  opacity: 0;
  scale: 0;
}

.flower-segment-2 {
  position: absolute;
  top: 0;
  max-width: 55%;
  z-index: 101;
  opacity: 0;
  scale: 0;
}

.flower-segment-3 {
  position: absolute;
  top: 0;
  max-width: 55%;
  z-index: 103;
  opacity: 0;
  scale: 0;
}

.flower-segment-4 {
  position: absolute;
  top: 0;
  max-width: 55%;
  z-index: 104;
  opacity: 0;
  scale: 0;
}

.flower-segment-5 {
  position: absolute;
  top: 0;
  max-width: 55%;
  z-index: 105;
  opacity: 0;
  scale: 0;
}

.swoosh-segment {
  position: absolute;
  top: 0;
  max-width: 55%;
  z-index: 106;
  opacity: 0;
  scale: 0;
}

.auspiceImg {
  width: 250px;
  margin-top: -320px;
  margin-left: auto;
  margin-right: 0;
}

.content-container {
  border-radius: var(--main-radius);
  font-family: var(--secondary-font);
  padding: 2rem;
}

.sticky-title-left {
  border-bottom: 4px solid var(--light-color);
  font-size: 3rem;
  font-weight: 400;
  position: sticky;
  top: 9rem;
}

.btn-main {
  background-color: transparent;
  border-radius: 2;
  border: 2px solid var(--highlight-color);
  color: var(--main-color);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}

.btn-main:hover {
  background-color: var(--highlight-color);
  border: 2px solid var(--highlight-color);
  color: var(--light-color);
  transition: 0.3s ease-in-out;
}

.reg-table {
  font-size: 1.6rem;
}

.reg-table td {
  background-color: transparent;
  color: var(--dark-color);
}

/* Main Accordion Styling */
.MainAccordion {
  margin: 1rem auto;
}

.MainAccordion .accordion-button {
  background-color: var(--light-color);
  border-bottom: 1px solid var(--highlight-color);
  color: var(--dark-color);
  display: block;
  font-size: 2rem;
  font-weight: 300;
  text-align: start;
}

.MainAccordion button::after {
  position: absolute;
  z-index: 100;
  right: 16px;
}

.MainAccordion .accordion-body {
  background-color: var(--main-color);
  border-radius: 0 0 var(--main-radius) var(--main-radius);
  color: var(--light-color);
  font-size: 2rem;
  font-weight: 500;
  padding: 1rem 4rem;
  margin-bottom: 1rem;
}

.MainAccordion .accordion-button.collapsed::after {
  background: url("../assets/img/plus-icon.svg");
  background-repeat: no-repeat;
}

.MainAccordion .accordion-button:not(.collapsed)::after {
  background: url("../assets/img/minus-icon.svg");
  background-repeat: no-repeat;
}

/* Mobile Stylings - Brake Point 800px */

@media (max-width: 800px) {
  .addBottomBorder {
    border-bottom: none;
  }

  .addSideBorderL {
    border-left: none;
  }

  .MainAccordion {
    max-width: 95%;
    margin: 1rem auto;
  }

  .MainAccordion .accordion-button {
    font-size: 1.6rem;
    text-align: left;
  }

  .MainAccordion .accordion-body {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem;
  }

  p {
    font-size: 1.3rem;
  }

  a {
    font-size: 1.1rem;
  }

  .info-container {
    padding-top: 4rem;
  }

  .hero-section {
    background-color: var(--main-color);
    color: white;
  }

  .header-title {
    font-size: 3rem;
  }

  .header-subtitle {
    font-size: 1.6rem;
  }

  .spine-segment {
    margin: 0;
    max-width: 95%;
    opacity: 0;
    scale: 0;
  }

  .flower-segment-1 {
    position: absolute;
    top: 0;
    max-width: 95%;
    z-index: 100;
    opacity: 0;
    scale: 0;
  }

  .flower-segment-2 {
    position: absolute;
    top: 0;
    max-width: 95%;
    z-index: 101;
    opacity: 0;
    scale: 0;
  }

  .flower-segment-3 {
    position: absolute;
    top: 0;
    max-width: 95%;
    z-index: 103;
    opacity: 0;
    scale: 0;
  }

  .flower-segment-4 {
    position: absolute;
    top: 0;
    max-width: 95%;
    z-index: 104;
    opacity: 0;
    scale: 0;
  }

  .flower-segment-5 {
    position: absolute;
    top: 0;
    max-width: 95%;
    z-index: 105;
    opacity: 0;
    scale: 0;
  }

  .swoosh-segment {
    position: absolute;
    top: 0;
    max-width: 95%;
    z-index: 106;
    opacity: 0;
    scale: 0;
  }

  .auspiceImg {
    width: 150px;
    margin: 0 auto;
    margin-top: -200px;
  }

  .sticky-title-left {
    margin-top: 2rem;
    border-bottom: 2px solid var(--light-color);
    font-size: 2.5rem;
    font-weight: 900;
    position: sticky;
    top: 9rem;
  }

  .reg-table {
    font-size: 1.3rem;
  }

  .seminar-title {
    font-size: 1.8rem;
    margin: 1rem 0;
  }

  .seminar-title a {
    font-size: 1.8rem;
  }
}

/* Carousel Stylings */

.carousel-inner {
  border-radius: 2rem;
}

.carousel-item img {
  filter: grayscale(0.5);
}

.map {
  border-radius: var(--main-radius);
}

/* Countdown Container Styling */

.countdown-container {
  display: flex;
  width: 70%;
  justify-content: space-between;
  margin: 2rem auto;
}

.days-container,
.hours-container,
.minutes-container,
.seconds-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
  border-radius: 20%;
  width: 150px;
  height: 150px;
}

.days,
.hours,
.minutes,
.seconds {
  font-weight: 200;
  font-size: 4em;
  line-height: 1rem;
  margin: 2rem 0;
}

.days-label,
.hours-label,
.minutes-label,
.seconds-label {
  color: var(--highlight-color);
  text-transform: uppercase;
  font-family: var(--secondary-font);
  font-size: 1.2em;
  font-weight: 400;
}

@media (max-width: 920px) {
  .countdown-container {
    max-width: 70%;
    justify-content: space-between;
  }

  .days-container,
  .hours-container,
  .minutes-container,
  .seconds-container {
    font-size: 0.5em;
    line-height: 0.2em;
    width: 60px;
    height: 60px;
  }

  .days-label,
  .hours-label,
  .minutes-label,
  .seconds-label {
    font-weight: 300;
  }
}

@media (min-width: 1900px) {
  .countdown-container {
    max-width: 55%;
    justify-content: space-between;
  }
}
