body {
  font-family: 'Open Sans';
  scroll-behavior: smooth;
  margin: 0em;
  min-height: 100vh;
  position: relative;
  padding-bottom: 50px;
  background: linear-gradient(to bottom, rgb(172, 204, 255) 0%, #11455a 100%);
  transition: background 0.5s ease;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Light beam 1 */
    linear-gradient(
      45deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 20%,
      rgba(255, 255, 255, 0.4) 30%,
      rgba(255, 255, 255, 0.3) 40%,
      transparent 60%
    ),
    /* Light beam 2 */
    linear-gradient(
      -45deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 25%,
      rgba(255, 255, 255, 0.4) 35%,
      rgba(255, 255, 255, 0.3) 45%,
      transparent 65%
    ),
    /* Light beam 3 */
    linear-gradient(
      30deg,
      transparent 0%,
      rgba(255, 255, 255, 0.3) 15%,
      rgba(255, 255, 255, 0.4) 25%,
      rgba(255, 255, 255, 0.3) 35%,
      transparent 55%
    ),
    /* Base water gradient */
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  pointer-events: none;
  z-index: 1;
  animation: lightBeams 15s ease-in-out infinite;
}

@keyframes lightBeams {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  25% {
    background-position: 50% 50%, 25% 75%, 75% 25%, 0% 0%;
  }
  50% {
    background-position: 100% 100%, 50% 50%, 100% 100%, 0% 0%;
  }
  75% {
    background-position: 50% 50%, 75% 25%, 25% 75%, 0% 0%;
  }
  100% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

main {
  width: 100%;
  padding-bottom: 250px;
  margin-top: 8em;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* Add floating particles effect */
.particle {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

.particle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a {
  color: #B31B1B;
  text-decoration: none;
}

p {
  margin: 0em;
  padding: 0em;
}

.navhidden {
  display: none;
}


h1 {
  font-family: 'Open Sans';
  font-weight: 800;
  font-size: 110px;
  margin: 0em;
}

h2 {
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 35px;
  margin: 0em;
}

h3 {
  font-family: 'Open Sans';
  font-weight: 800;
  font-size: 36px;
  margin: 0em;
}

h4 {
  font-family: 'Open Sans';
  font-weight: 700;
  font-size: 25px;
  margin: 0em;
}

h5 {
  font-family: 'Open Sans';
  font-weight: 700;
  font-size: 18px;
  margin: 0em;
}

h5b {
  font-family: 'Open Sans';
  font-weight: bold;
  font-size: 18px;
  margin: 0em;
}

p {
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 15px;
}

.section-header {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 1em;
}


/* desktop top navbar */
#top-navbar {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0) 100%);
  height: 95px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

#top-navbar-logo {
  width: 200px;
  margin: 0;
  position: absolute;
  left: 1em;
  top: 0.7em;
}

#navbar-links-container {
  display: flex;
  align-items: center;
  gap: 5em;
  left: 10em;
  padding: 0 2em;
  margin-top: -2em;
}

#navbar-links-container a {
  text-decoration: none;
  font-size: 20px;
  padding: 8px 20px;
  border-radius: 40px;
  transition: all 1s ease;
}

#navbar-links-container a:hover {
  background-color: rgba(10, 105, 175, 0.15);
}

/* highlight link of current page */
.onThisPage {
  color: #A86D49;
  font-weight: bold;
}

.notOnThisPage {
  color: black;  font-weight: bold;
}

.notOnThisPage:hover {
  color: #A86D49;
}

/* desktop bottom navbar */
#bottom-navbar {
  background: linear-gradient(to bottom, #ebdbbb, #a88030);
  height: 50px;
  position: absolute;
  bottom: -40px;
  width: 100%;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 
      0 -2px 10px rgba(0, 0, 0, 0.2),
      inset 0 2px 4px rgba(255, 255, 255, 0.1),
      inset 0 -1px 2px rgba(139, 117, 84, 0.3);
  clip-path: polygon(
    0% 15%,
    1.25% 13.5%,
    2.5% 12.5%,
    3.75% 12%,
    5% 12.5%,
    6.25% 13.5%,
    7.5% 14.5%,
    8.75% 15.5%,
    10% 16%,
    11.25% 16.5%,
    12.5% 17%,
    13.75% 17.5%,
    15% 18%,
    16.25% 17.5%,
    17.5% 17%,
    18.75% 16.5%,
    20% 16%,
    21.25% 15.5%,
    22.5% 14.5%,
    23.75% 13.5%,
    25% 12.5%,
    26.25% 12%,
    27.5% 12.5%,
    28.75% 13.5%,
    30% 14.5%,
    31.25% 15.5%,
    32.5% 16%,
    33.75% 16.5%,
    35% 17%,
    36.25% 17.5%,
    37.5% 18%,
    38.75% 17.5%,
    40% 17%,
    41.25% 16.5%,
    42.5% 16%,
    43.75% 15.5%,
    45% 14.5%,
    46.25% 13.5%,
    47.5% 12.5%,
    48.75% 12%,
    50% 12.5%,
    51.25% 13.5%,
    52.5% 14.5%,
    53.75% 15.5%,
    55% 16%,
    56.25% 16.5%,
    57.5% 17%,
    58.75% 17.5%,
    60% 18%,
    61.25% 17.5%,
    62.5% 17%,
    63.75% 16.5%,
    65% 16%,
    66.25% 15.5%,
    67.5% 14.5%,
    68.75% 13.5%,
    70% 12.5%,
    71.25% 12%,
    72.5% 12.5%,
    73.75% 13.5%,
    75% 14.5%,
    76.25% 15.5%,
    77.5% 16%,
    78.75% 16.5%,
    80% 17%,
    81.25% 17.5%,
    82.5% 18%,
    83.75% 17.5%,
    85% 17%,
    86.25% 16.5%,
    87.5% 16%,
    88.75% 15.5%,
    90% 14.5%,
    91.25% 13.5%,
    92.5% 12.5%,
    93.75% 12%,
    95% 12.5%,
    96.25% 13.5%,
    97.5% 14.5%,
    98.75% 15.5%,
    100% 15%,
    100% 100%,
    0% 100%
  );
}

#bottom-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      /* Random sand grains - multiple layers with different sizes and positions */
      radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
      radial-gradient(circle at 45% 65%, rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px),
      radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.15) 2.5px, transparent 2.5px),
      radial-gradient(circle at 25% 85%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
      radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.14) 2px, transparent 2px),
      radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.11) 1.8px, transparent 1.8px),
      radial-gradient(circle at 35% 75%, rgba(255, 255, 255, 0.13) 2.2px, transparent 2.2px),
      radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.09) 1.2px, transparent 1.2px),
      /* Sand waves */
      repeating-linear-gradient(
          45deg,
          rgba(0, 0, 0, 0.2) 0px,
          rgba(0, 0, 0, 0.2) 1px,
          transparent 1px,
          transparent 3px
      );
  background-size: 
      35px 35px,
      45px 45px,
      40px 40px,
      50px 50px,
      30px 30px,
      55px 55px,
      38px 38px,
      42px 42px,
      8px 8px;
  background-position: 
      0 0,
      10px 5px,
      -5px 10px,
      15px -5px,
      -10px 15px,
      5px -10px,
      -15px 5px,
      10px -15px,
      0 0;
  opacity: 0.95;
  mix-blend-mode: multiply;
  clip-path: inherit;
}

#bottom-navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
      background-position: 200% 0;
  }
  100% {
      background-position: -200% 0;
  }
}

#bottom-navbar-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  max-width: 1200px;
  padding: 0 2em;
}

#bottom-navbar a {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

#bottom-navbar a:hover {
  color: #f4d03f;
}

.footer-heading {
  font-size: 20px;
  margin-top: 1.5em;
  font-weight: bold;
  color: #fff;
}

.footer-text-container {
  font-size: 15px;
  color: #fff;
}

#facebook-icon {
  margin-left: 1em;
}

#instagram-icon {
  margin-left: .73em;
}

#linkedin-icon {
  margin-left: 1.5em;
}

#youtube-icon {
  margin-left: 1.56em;
}

#footer-logo {
  width: 8em;
  position: absolute;
  right: 14em;
  bottom: 0.1em;
}

#follow-us {
  width: 10em;
  margin-left: 10em;
}

.media-links {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
}

.footer-icon {
  margin-top: .2em;
  width: 1em;
}

#contact-us {
  width: 10em;
}

.contact-us-subheader {
  margin-top: 1em;
}

.sand-grain {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: overlay;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
  will-change: transform;
}

@media (max-width: 900px) {
  /* mobile top navbar */

  #navbar-links-container {
    margin-right: .8em;
  }

  #navbar-links-container a {
    font-size: 14px;
    padding-right: 7.5px;
    padding-left: 7.5px;
  }

  /* ipad bottom navbar*/
  #follow-us {
    margin-left: 5em;
  }

  #footer-logo {
    right: 4em;
    bottom: 0em;
  }

}






@media (max-width: 750px) {

  #top-navbar {
    position: static;
  }

  /* mobile top navbar */
  #mobile-top-navbar {
    background-color: #F2F2F2;
    height: 295px;
  }

  main {
    padding-bottom: 300px;
    margin-top: 4em;
  }

  .section-header {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }


  #hamburger-icon {
    display: initial;
    float: right;
    height: 30px;
    margin-right: 1em;
    margin-top: .55em;
  }

  #hamburger-icon:hover {
    cursor: pointer;
  }

  #navbar-links-container {
    display: none;
  }

  .mobile-navbar-links-container {
    display: flex;
    flex-direction: column;
    padding-top: .25em;
  }

  #mobile-navbar-links-container a {
    text-decoration: none;
    font-size: 14px;
    margin-left: 1em;
    padding-top: .82em;
    padding-bottom: .82em;
  }
}

@media (max-width: 620px) {

  /* mobile bottom navbar */
  #bottom-navbar {
    height: 420px;
  }

  #bottom-navbar-container {
    flex-direction: column;
    align-items: center;
  }

  #follow-us {
    text-align: center;
    margin-left: 0em;
    margin-bottom: 1em;
  }

  #contact-us {
    width: 300px;
    margin-left: 0em;
    text-align: center;
  }

  #contact-us-heading {
    margin-top: 0em;
  }

  #footer-logo {
    width: 4em;
  }

}

/* desktop screens */
@media (min-width: 1200px) {

  /* bottom navbar */
  #bottom-navbar {
    height: 250px;
  }

  #footer-logo {
    bottom: .8em;
  }
}

/* large desktop screens */
@media (min-width: 1800px) {

  /* bottom navbar */
  #footer-logo {
    bottom: 2em;
  }

  #follow-us {
    margin-left: 20em;
  }
}

.navbar-decoration {
  position: absolute;
  bottom: 50px;
  z-index: 1001;
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  background: transparent;
  mix-blend-mode: normal;
}

.navbar-decoration:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}


.floating-pineapple {
  position: absolute;
  bottom: 140px;
  left: 10%;
  z-index: 9999999;
  width: 100px;
  height: 100px;
  object-fit: contain;
  transform: rotate(-25deg) scale(1.2);
  pointer-events: none;
}



.floating-chest {
  position: absolute;
  bottom: 140px;
  left: 30%;
  z-index: 9999999;
  width: 100px;
  height: 100px;
  object-fit: contain;
  transform: rotate(0deg) scale(1.2);
  pointer-events: none;
}



.floating-enchanted-book {
  position: absolute;
  bottom: 140px;
  left: 80%;
  z-index: 9999999;
  width: 100px;
  height: 100px;
  object-fit: contain;
  transform: rotate(20deg) scale(1.2);
  pointer-events: none;
}




