*{
  margin: 0;
  padding: 0;
}
body{
  overflow-x: hidden;
}
img{
  display: block;
  width: 100%;
}
li{
  list-style: none;
}
a{
  text-decoration: none;
}
/* FONTS */
  @font-face {
      font-family: 'playfair';
      src: /*url('../fonts/playfair.woff') format('woff'),*/
           url('../fonts/playfair.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
  }
  @font-face {
      font-family: 'source-sans-bold';
      src: /*url('../fonts/source-sans-bold.woff') format('woff'),*/
           url('../fonts/source-sans-bold.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
  }
  @font-face {
      font-family: 'source-sans-light';
      src: /*url('../fonts/source-sans-light.woff') format('woff'),*/
           url('../fonts/source-sans-light.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
  }
  @font-face {
      font-family: 'source-sans-medium';
      src: /*url('../fonts/source-sans-medium.woff') format('woff'),*/
           url('../fonts/source-sans-medium.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
  }
  @font-face {
      font-family: 'source-sans-regular';
      src: /*url('../fonts/source-sans-regular.woff') format('woff'),*/
           url('../fonts/source-sans-regular.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
  }
/*COLORS*/
    :root {
    --beige: #F0E8DB;
    --black: #000;
    --black8: rgba(0,0,0,.8);
    --blue: #00A4CA;
    --charcoal: #333333;
    --grayslakeblue: #2FA3FF;
    --grayslakegray: #818286;
    --orange: #F97F4E;
    --white: #fff;
  }
/***

/***********
 * HEADER *
***********/
.header{
  height: 80px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.3s ease;
  width: 100%;
  z-index: 999;
}
.header-toggle{
  background-color: var(--black8);
}
.header-container{
  align-items: center;
  display: flex;
  height: 60px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px 20px;
  max-width: 1400px;
  position: relative;
  width: calc(100% - 40px);
}
.header-logo{
  display: block;
  filter: drop-shadow(0 2px 1px #000)
          drop-shadow(0 2px 3px rgba(0,0,0,.7));
  margin-top: 50px;
}
.header-logo-circle{
  display: block;
  width: 60px;
}
.header-logo-text {
  display: block;
  width: 180px;
  transition: transform 0.3s ease;
}
.header-logo-text-toggle {
  transform: translateX(65px) translateY(-55px);
}
.header-links{
  display: flex;
}
.header-links span{
  color: var(--white);
  font-family: 'source-sans-medium', cursive;
  font-size: 14px;
  margin-left: 15px;
  text-shadow: 0 1.5px 1px var(--black8),
               0 2.5px 1px var(--black8);
}
.header-links span:hover{
  cursor: pointer;
}
.header-link-options{
  position: relative;
}
.header-link-menu{
  align-items: center;
  display: flex;
}
.header-link-menu:hover{
  cursor: pointer;
}
.header-link-menu-caret{
  color: var(--grayslakeblue);
  margin-left: 10px;
  text-shadow: 0 1.5px 1px var(--black8);
  transition: .2s;
}
.header-link-menu-caret-toggle{
  transform: rotate(180deg);
  transition: .3s;
}
.header-link-dropdown{
  background-color: var(--black8);
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 50px;
  transform: translateY(-150px);
  transition: .2s;
}
.header-link-dropdown-toggle{
  transform: translateY(0);
  transition: .3s;
}
.header-link-dropdown li{
  margin: 10px 10px 10px 0;
}
/**************
 * JUMBOTRON *
 **************/

/* General Jumbotron Styles */
.jumbotron {
  background-color: #000;
  box-shadow: 0 10px 5px var(--grayslakegray);
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.jumbotron-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.jumbotron-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.jumbotron-slide {
  max-height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.jumbotron-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.jumbotron-overlay {
  align-items: flex-end;
  background-image: linear-gradient(to right, var(--black8), rgba(0,0,0,.3));
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 100px);
  height: calc(90vh - 100px);
  display: flex;
  justify-content: flex-start;
  padding: 50px;
}

.jumbotron-overlay-content {
  width: 60%;
}

/* Entry Animations */
.jumbotron-overlay-content h1,
.jumbotron-overlay-content p,
.jumbotron-cta-button {
  opacity: 0;
  transform: translateX(-40px); /* Start from the left */
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.jumbotron-overlay-content h1.show {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.jumbotron-overlay-content p.show {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.jumbotron-cta-button.show {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}

/* Exit Animations */
.jumbotron-overlay-content h1.hide,
.jumbotron-overlay-content p.hide,
.jumbotron-cta-button.hide {
  opacity: 0;
  transform: none;
  transition: opacity 0.3s ease; /* Fade out */
}

.jumbotron-overlay h1 {
  color: var(--white);
  font-family: 'playfair', cursive;
  font-size: 44px;
  text-shadow: 0 1.5px 1px var(--black8),
               0 2.5px 1px var(--black8),
               0 3.5px 1px var(--black8);
  text-transform: uppercase;
}

.jumbotron-overlay p {
  color: var(--white);
  font-family: 'source-sans-regular', cursive;
  font-size: 18px;
  margin: 15px 0 25px 0;
  text-shadow: 0 1.5px 1px var(--black8),
               0 2.5px 1px var(--black8);
}

.jumbotron-cta-button {
  display: inline-block;
}

.jumbotron-cta-button-container {
  background-color: var(--grayslakeblue);
  border-radius: 20px;
  border: 2px solid var(--white);
  box-shadow: 0 3px 2px rgba(0,0,0,.8);
  color: var(--white);
  font-family: 'source-sans-bold', cursive;
  padding: 10px 20px;
  text-shadow: 0 1.5px 1px var(--black8);
  transition: .2s;
}

.jumbotron-cta-button-container:hover {
  background-color: var(--white);
  border-color: var(--grayslakeblue);
  color: var(--black8);
  text-shadow: none;
  transition: .3s;
}
/* Progress Bar */
.jumbotron-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: var(--grayslakeblue);
}

.progress-animation {
  animation: progressAnimation 9.3s linear forwards;
}

@keyframes progressAnimation {
  0% {
    height: 5px;
    width: 0%;
  }
  95% {
    height: 5px;
    width: 100%;
  }
  100% {
    height: 0px;
    width: 100%;
  }
}
.slick-dots{
  display: flex;
  position: absolute;
  right: 40px;
  bottom: 40px;
}
/* Style the slick dots as circles */
.slick-dots li {
  width: 15px; /* Size of the dots */
  height: 15px;
  margin: 0 5px;
}
.slick-dots li:hover{
  cursor: pointer;
}

/* Remove number labels from dots */
.slick-dots li button {
  font-size: 0; /* Hides the numbers */
  width: 100%;
  height: 100%;
  background-color: var(--grayslakegray); /* Color for inactive dots */
  border-radius: 50%; /* Make the dots circular */
  border: 1px solid var(--white);
}

/* Style for active dot */
.slick-dots li.slick-active button {
  background-color: var(--grayslakeblue); /* Color for active dot */
}

/**************
 * JUMBOTRON *
 **************/
.middle{
  height: 500px;
  margin: 0 auto;
  width: 1440px;
}
.middle-container{
  height: 100%;
  width: 100%;
}
.middle-buttons{
  display: flex;
  justify-content: space-between;
  margin: 80px auto;
  width: calc(100% - 80px);
}
.middle-button{
  border: 2px solid var(--white);
  border-radius: 20px;
  box-shadow: 0 0 8px 6px var(--grayslakegray);
  height: 400px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 270px;
}
.middle-button video{
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.middle-button-overlay{
  align-items: center;
  font-family: 'source-sans-bold', cursive;
  font-size: 18px;
  display: flex;
  height: calc(100% - 40px);
  justify-content: center;
  left: 0;
  padding: 20px 14px;
  position: absolute;
  top: 0;
  transition: .2s;
  width: calc(100% - 28px);
}
.middle-button-overlay-text{
  background-color: var(--black8);
  border: 2px solid var(--white);
  border-radius: 20px;
  color: var(--grayslakeblue);
  padding: 7px 0;
  text-shadow: 0 1.5px 1px var(--black8);
  transition: .2s;
  width: calc(100% - 4px);
}
.middle-button:hover .middle-button-overlay-text{
   background-color: var(--grayslakeblue);
   color: var(--white);
   transition: .3s;
}
/**************
 * FOOTER *
 **************/
footer{
  box-shadow: 0 -10px 5px var(--grayslakegray);
  width: 100%;
}
.footer-container{
  margin: 0 auto;
  padding: 20px 0;
  width: 1200px;
}
.footer-content{
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.footer-logo{
  width: 200px;
}
.footer-columns{
  display: flex;
  justify-content: space-between;
}
.footer-column{
  width: 300px;
}
.footer-header-title{
  font-family: 'source-sans-bold', cursive;
}
.footer-column a{
  color: var(--grayslakegray);
}
.footer-column li{
  font-family: 'source-sans-light', cursive;
}
.footer-column-open-closed{
  font-family: 'source-sans-bold', cursive;

}

/* WATER LOAD SCREEN */
/* Wrapper styles */
.svg-circle-wrapper {
  align-items: center;
  background-color: var(--white);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  width: 100%;
  position: fixed; /* Allows ripple positioning behind .svg-circle */
  top: 0;
  z-index: 99999;
  animation:
      mainAnimationFadeOut 1s ease-out 4.3s forwards
}

@keyframes mainAnimationFadeOut{
  0%{
    opacity: 1;
    transform: scale(1.0);
  }
  90%{
    opacity: 0;
  }
  100%{
    opacity: 0;
    transform: scale(2.0);
    visibility: hidden;
  }
}
/* Circle div styles */
.svg-circle {
  position: relative; /* Keeps .svg-circle in the foreground */
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 300px;
  justify-content: center;
  width: 300px;
  background-color: transparent;
  z-index: 2; /* Ensures it stays in front of ripples */
  animation: 
      scaleAnimation 0.9s cubic-bezier(0.6, 0, 0.4, 1) 3s forwards,
      bgColorChange 0.4s cubic-bezier(0.6, 0, 0.4, 1) 3.3s forwards,
      borderColorChange 0.1s linear 3.4s forwards;
}

/* Ripple effect behind .svg-circle */
.svg-circle-wrapper::before,
.svg-circle-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(47, 163, 255, 0);
  transform: translate(-50%, -50%);
  animation: ripple 2.75s linear infinite, fadeInBorder 0.1s linear 3.25s forwards;
  z-index: 1; /* Placed behind .svg-circle */
}

.svg-circle-wrapper::after {
  animation-delay: 3.75s;
}

/* Ripple animation keyframes */
@keyframes ripple {
  0% {
    width: 300px;
    height: 300px;
    opacity: 0.2;
    border-width: 2px;
  }
  40% {
    opacity: 1;
    border-width: 8px;
  }
  100% {
    width: 600px;
    height: 600px;
    opacity: 0;
    border-width: 1px;
  }
}

/* Border fade-in keyframes */
@keyframes fadeInBorder {
  0% {
    border-color: rgba(47, 163, 255, 0);
  }
  100% {
    border-color: rgba(47, 163, 255, 0.5);
  }
}

/* SVG container styling */
#Layer_1 {
  fill: transparent;
  height: auto;
  overflow: visible;
  width: 94%;
}

/* Common SVG path styles */
#big-g, #big-l {
  stroke: var(--grayslakeblue);
  stroke-width: 1;
  stroke-dasharray: 3000;
  opacity: 0;
  transform: scale(1) translateX(-10px);
  fill: transparent;
}

/* #big-g animation */
#big-g {
  stroke-dashoffset: 3000;
  animation: 
      fadeIn 0s linear 1s forwards,
      initials-g 3s linear 1s forwards,
      fillWhite 0.1s linear 3.3s forwards;
}

/* #big-l animation */
#big-l {
  stroke-dashoffset: 3000;
  animation: 
      fadeIn 0s linear 1s forwards,
      initials-l 17s linear 1s forwards,
      fillWhite 0.1s linear 3.3s forwards;
}

/* Keyframes for #big-g */
@keyframes initials-g {
  from {
    stroke-dashoffset: 3000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Keyframes for #big-l */
@keyframes initials-l {
  from {
    stroke-dashoffset: 3000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Shared opacity fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Keyframe to change fill to white */
@keyframes fillWhite {
  from {
    fill: transparent;
  }
  to {
    fill: var(--grayslakeblue);
    filter: drop-shadow(0px 0px 6px var(--grayslakegray));
    stroke: var(--white);
    stroke-width: 2px;
  }
}

/* Scale animation for .svg-circle */
@keyframes scaleAnimation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: scale(0.8);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Border color transition to add a white outline */
@keyframes borderColorChange {
  0% {
    border-width: 0px;
  }
  100% {
    border-width: 2px;
  }
}




















