/*
Theme Name: Isca 2026
Author: Les Sturgeon
Version: 2.0 
*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
p {
  margin: 0;
  padding: 0;
}
.center {
  text-align: center !important;
}
.navDesktop {
  display: none;
}
@media screen and (min-width: 950px) {
  .navMobile {
    display: none;
  }
  .navDesktop {
    display: block;
    background-color: #258b49;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
  }
}
.navMobile p {
  font-size: 4rem;
  text-align: center;
  color: black;
}
.navMobile .menu {
  font-size: clamp(2rem, 5.1vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.toggle-canvas {
  box-shadow: none;
  text-shadow: none;
  outline: none;
  color: yellow;
  border: 0;
  font-size: 25px;
  padding: 0 5px;
  margin: 0;
  position: fixed;
  top: 5px;
  right: 3px;
  background-color: rgba(0, 0, 0, 0);
  background-color: #258b49;
  border-radius: 10px;
  z-index: 1000;
}
.toggle-canvas:hover,
.toggle-canvas:focus {
  color: white;
  text-align: right;
}
.offset-canvas {
  top: 0;
  left: 0px;
  bottom: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #45b06a;
  z-index: 999;
  transform: translate3d(-1300px, 0, 0);
  transition: transform 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.offset-canvas .scroller {
  height: 100%;
  overflow-y: scroll;
}
.offset-canvas ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.offset-canvas ul li a {
  display: block;
  padding: 10px;
  text-align: center;
  border-bottom: 2px dashed black;
  color: yellow;
  text-decoration: none;
  font-size: 2rem;
}
.offset-canvas ul li a:hover {
  background-color: #258b49;
  text-decoration: underline;
}
.offset-canvas.show-canvas {
  transform: translate3d(0, 0, 0);
  transition: transform 0.8s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
ul.nav {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  max-width: 70%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  z-index: 200;
}
ul.nav > li {
  position: relative;
  flex-grow: 1;
  flex-shrink: 0;
  height: 60px;
  font-size: 16px;
  text-align: center;
  line-height: 60px;
  letter-spacing: 1px;
  color: yellow;
  cursor: pointer;
}
ul.nav > li:hover {
  background: rgba(0, 0, 0, 0.2);
}
ul.nav > li:hover ul.dropdown {
  visibility: visible;
  transform: translate(0, 0);
  opacity: 1;
  z-index: 0;
}
ul.nav > li:hover ul.dropdown > li {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}
ul.dropdown {
  visibility: hidden;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  margin: 0;
  width: 250px;
  padding: 5px 0 30px;
  list-style: none;
  color: yellow;
  background: #e5e4ea;
  background: #45b06a;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 1px 2px 5px -1px rgba(0, 0, 0, 0.15), 0px 4px 14px -1px rgba(0, 0, 0, 0.1);
  transform: translate(0, -60px);
  transition: transform 0.2s ease-out, opacity 0.2s, z-index 0s 0.2s;
  opacity: 0;
  z-index: -1;
}
ul.dropdown > li {
  font-size: 1.1rem;
  cursor: pointer;
}
ul.dropdown > li:hover {
  background: rgba(0, 0, 0, 0.1);
}
@-webkit-keyframes slideInLeft {
  from {
    transform: translate(-25%, 0);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translate(-25%, 0);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.cookieFixed {
  position: fixed;
  bottom: 5px;
  left: 5px;
  background-color: #258b49;
  border-radius: 20px;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  z-index: 2;
}
.cookieForm {
  margin: 0;
  padding: 20px;
}
.cookieButton {
  float: right;
  width: 150px;
  margin-bottom: 20px;
  text-align: center;
  border: 0;
  outline: 0;
  font-size: clamp(1rem, 2.1vw, 1.5rem);
  padding: 3px;
  background-color: white;
  border-radius: 20px;
  border: 4px solid black;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.cookieButton a {
  color: yellow !important;
}
.cookieButton:hover {
  background-color: #45b06a;
}
.cookiesText {
  font-size: clamp(1rem, 2.1vw, 3rem);
  width: 90%;
  margin: 0 auto;
}
.cookiesBold {
  font-weight: bold;
}
.cookieBox {
  width: 80%;
  margin: 0 auto;
  background-color: #45b06a;
  border-radius: 20px;
}
.cookieBox .heading {
  font-size: clamp(2.5rem, 2.1vw, 4.5rem);
  text-align: center;
  color: wheat;
}
.center {
  text-align: center !important;
}
.alignRight {
  text-align: right;
}
html {
  font-family: "Chewy", system-ui;
  font-family: "Oswald", sans-serif;
  font-family: "Momo Signature", cursive;
  font-family: "Bree Serif", serif;
  font-family: "Cabin", serif;
  font-family: "Caveat", serif;
  font-family: "Alegreya", serif;
  font-family: "Quicksand", serif;
  color: black;
  font-size: 16px;
}
a {
  color: yellow;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: wheat;
}
.heading {
  font-size: clamp(2.5rem, 2.1vw, 3.5rem);
  text-align: center;
  color: #258b49;
  font-weight: 700;
}
