@import url('https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap');

:root {
      --livvic-thin {
        font-family: "Livvic", sans-serif;
        font-weight: 100;
        font-style: normal;
      }

      --livvic-extralight {
        font-family: "Livvic", sans-serif;
        font-weight: 200;
        font-style: normal;
      }

      --livvic-light {
        font-family: "Livvic", sans-serif;
        font-weight: 300;
        font-style: normal;
      }

      --livvic-regular {
        font-family: "Livvic", sans-serif;
        font-weight: 400;
        font-style: normal;
      }

      --livvic-medium {
        font-family: "Livvic", sans-serif;
        font-weight: 500;
        font-style: normal;
      }

      --livvic-semibold {
        font-family: "Livvic", sans-serif;
        font-weight: 600;
        font-style: normal;
      }

      --livvic-bold {
        font-family: "Livvic", sans-serif;
        font-weight: 700;
        font-style: normal;
      }

      --livvic-black {
        font-family: "Livvic", sans-serif;
        font-weight: 900;
        font-style: normal;
      }

      --livvic-thin-italic {
        font-family: "Livvic", sans-serif;
        font-weight: 100;
        font-style: italic;
      }

      --livvic-extralight-italic {
        font-family: "Livvic", sans-serif;
        font-weight: 200;
        font-style: italic;
      }

      --livvic-light-italic {
        font-family: "Livvic", sans-serif;
        font-weight: 300;
        font-style: italic;
      }

      --livvic-regular-italic {
        font-family: "Livvic", sans-serif;
        font-weight: 400;
        font-style: italic;
      }

      --livvic-medium-italic {
        font-family: "Livvic", sans-serif;
        font-weight: 500;
        font-style: italic;
      }

      --livvic-semibold-italic {
        font-family: "Livvic", sans-serif;
        font-weight: 600;
        font-style: italic;
      }

      --livvic-bold-italic {
        font-family: "Livvic", sans-serif;
        font-weight: 700;
        font-style: italic;
      }

      --livvic-black-italic {
        font-family: "Livvic", sans-serif;
        font-weight: 900;
        font-style: italic;
      }
    }

* {
      margin: 0;
      padding: 0;
  }

body {
  background-color: white;
}

h1 {
  visibility: hidden;
  position: absolute;
  margin: 0;
  color: rgb(0, 0, 0);
  font-family: 'Livvic', sans-serif;
  font-weight: 600;
  font-size: 2em;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  letter-spacing: .20em;
  text-align: center;
  padding-top: 1rem;
  /* border: purple 3px solid; */
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

#logo {
  /* margin: auto; */
  visibility: hidden;
  position: fixed;
  display: inline;
  padding: 1.5rem;
  height: 7rem;
  width: 7rem;
  background: none;
  /* border: 2px pink dashed; */
}




/* ============== HEADER START ============= */

header {
  z-index: 2;
  position: fixed;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 15%);
  transition: background-color 1.2s ease;
  min-height: 60px;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right bottom, #6A82FB, #FC5C7D);
  opacity: 0;
  transition: opacity 2s ease;
  z-index: -1;
}

header.scrolled {
  background-color: black;
}

header.about::before {
  opacity: 1;
}

header.contact {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header.contact::before {
  opacity: 0;
}

header.contact #pageNav a {
  color: black !important;
}

header.contact #socialNav .fa {
  color: black !important;
}

header.contact #navContainer hr {
  border-color: black !important;
}

header.contact #pageNav a:hover {
  background-color: black !important;
  color: white !important;
}

header.contact #socialNav .fa:hover {
  background-color: black !important;
  color: white !important;
}

header.contact #pageNav a.active {
  background-color: black !important;
  color: white !important;
}

header.contact ~ main #logoSmall.sticky {
  filter: none !important;
}

header.contact ~ main #oldMic.sticky {
  filter: none !important;
}

header.scrolled #pageNav a {
  color: white;
}

header.scrolled #socialNav .fa {
  color: white;
}

header.scrolled #navContainer hr {
  border-color: white;
}

/* <<<<<<<<<<< START PAGE NAV >>>>>>>>>>>>> */

#navContainer {
  /* margin:auto; */
  padding-bottom: .5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  animation-delay: 1s;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
}

#pageNav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 1rem;
  margin-bottom: 1rem;
  margin-left: auto;
  /* border: 3px green dotted; */
}

#pageNav a {
  width: 10rem;
  margin: 1px;
  font-family: 'Livvic', sans-serif;
  font-size: 2rem;
  text-align: center;
  text-decoration: none;
  background-color: none;
  border-radius: 5px;
  color: black;
  transition: color 1.2s ease, background-color 1s ease-out;
}

#pageNav a:hover {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
}

header.scrolled #pageNav a:hover {
  background-color: white;
  color: black;
}

header.scrolled #pageNav a.active {
  background-color: white;
  color: black;
}

/* <<<<<<<<<<< END PAGE NAV >>>>>>>>>>>>> */

#navContainer hr{
  width: 70%;
  margin: 0.5rem auto;
  border: solid 1px black;
  transition: border-color 1.2s ease;
}

/* START SOCIAL NAV */

#socialNav {
  padding: .75rem 0rem 0rem 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;

  animation-delay: 1s;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;

  /* border: 5px green dashed; */
}

#socialNav .fa {
  width: 2rem;
  padding: 1rem;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  background-color: none;
  color: black;
  transition: color 1.2s ease, background-color 1s ease-out;
}

#socialNav .fa:hover {
  cursor: pointer;
  background-color: black;
  color: white;
}

header.scrolled #socialNav .fa:hover {
  background-color: white;
  color: black;
}
/* END SOCIAL NAV */



/* ============== MAIN START ============= */

main {
  /* display: inline-flex; */
  /* border: 2px black solid; */
  /* margin-bottom: 6rem; */
}

/* ------------------------------ HOME START -------------------------------------- */

#homeSection {
  background-position: center;
  background: no-repeat;
  background: #FC5C7D;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #6A82FB, #FC5C7D);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right bottom, #6A82FB, #FC5C7D); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}



#logoBig {
  height: 30rem;
  width: 30rem;
  /* border: 2px pink dashed; */

  display: block;
  margin: 0 auto;
  padding: 11rem 0 2rem 0;

  animation-delay: 1s;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
}

/* <<< START AUDIO CONTAINER >>>> */

#audioContainer {
  margin: 0 auto 0 auto;
  padding: 0rem 0rem 2rem 0rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  font-family: 'Livvic', sans-serif;
  /* border: 2px orange dotted; */

  animation-delay: 2s;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color 1s;
  transition-timing-function: ease-in;
  transition: background-color 1s;
  transition-timing-function: ease-out;
}

#audioContainer audio {
  width: 40rem;
  height: 2rem;
  border-radius: 25px;
  margin-bottom: 0rem;

  /* filter: invert(1) */
}

#audioContainer a {
  border-radius: 20px;
  font-family: 'Livvic', sans-serif;
  font-size: .8rem;
  color: white;
  margin-top: .5rem;
  padding: .25rem 1rem .50rem 1rem;
  text-align: center;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
  /* border: 1px white solid; */
}

#audioContainer a:hover {
  color: black;
  /* background: black; */
  /* border: 1px white solid; */
}

/* <<<< END AUDIO CONTAINER >>>> */






/* ------------------------------ VIDEOS START -------------------------------------- */

#videosSection {
  background-position: center;
  padding: 0;
  margin: 0;
}




/* -------- LOGO SMALL --------- */

#logoSmall {
  position: absolute;
  padding: 0;
  margin: 2rem 1rem 0 1rem;
  height: 4.5rem;
  width: 4.5rem;
  visibility: hidden;
  transition: filter 2s ease, position 1s ease, top 1s ease, left 1s ease, visibility 0s;
  z-index: 3;
}

#logoSmall.sticky {
  position: fixed;
  top: 2rem;
  left: 0;
  filter: invert(1);
  visibility: visible;
}

#sectionHeadingText {
  visibility: hidden;
  font-family: 'Livvic', sans-serif;
  font-size: 6rem;
  text-align: center;
  margin: 0 auto 0 auto;
  padding: 2rem 0 2rem 0;
  line-height: 0.7;
  vertical-align: baseline;
  /* border: 1px dotted brown; */
}

/* -------- VIDEO CAROUSAL --------- */

#videoCarousel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  margin: 1rem 0 5rem 0;
}


#prevBtn {
  left: calc((100vw - 80vw) / 4 - 25px);
}

#nextBtn {
  right: calc((100vw - 80vw) / 4 - 25px);

}

#videoContainer {
  width: 80vw;
  aspect-ratio: 16/9;
}

#videoContainer iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.carousel-btn {
  background: black;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: black;
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.9);
}

#prevBtn {
  text-indent: -2px;
}

#nextBtn {
  text-indent: 2px;
}



/* ------------------------------ SHOWS START -------------------------------------- */


#showsSection {
  padding: 4rem 2rem;
  background-color: #f8f8f8;
  position: relative;
}

#showsHeading {
  visibility: hidden;
  font-family: 'Livvic', sans-serif;
  /* font-variant: small-caps; */
  font-size: 6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 0.7;
}

#oldMic {
  position: absolute;
  top: 4rem;
  right: 2rem;
  height: 6rem;
  width: 6rem;
  transition: filter 2s ease, position 1s ease, top 1s ease, right 1s ease, left 1s ease, transform 1s ease, height 0.5s ease, width 0.5s ease;
  z-index: 3;
}

#oldMic.sticky {
  position: fixed;
  top: 3rem;
  right: 1rem;
  filter: invert(1);
}



/* -------- SHOWS CONTAINER --------- */

#showsContainer {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;

}

#showsList {
  max-width: 25rem;

}

.show-item {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  overflow: hidden;
}

.show-details {
  flex: 1;
  min-width: 0;
  /* max-width: 600px; */
}

.show-content {
  /* max-width: 400px; */
}

.show-text-and-image {
  display: flex;

}

/* -------- SHOW TEXT--------- */
.show-text {
  width: 13rem;
  /* border: 2px dashed orange; */
}

.show-date {
  font-family: 'Livvic', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
}

.show-time {
  font-family: 'Livvic', sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1;
}

.show-venue {
  font-family: 'Livvic', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.3rem;
  display: block;
  line-height: 1;
}

.show-location {
  font-family: 'Livvic', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

/* -------- SHOW IMAGE--------- */
.show-image {
  width: 8rem;
  flex-shrink: 0;
  /* border: 2px dashed green; */
}

.show-image img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin: 0;
  padding: 0;
}


/* -------- CALENDAR LINKS --------- */
.calendar-links {
  width: 20rem;
  display: flex;
  gap: 0.5rem;
  /* border: 2px red dashed; */
}

.calendar-links a {
  font-family: 'Livvic', sans-serif;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.calendar-links a:hover {
  background: #333;
}

.directions-btn {
  background: #007bff !important;
  margin-left: 1rem;
}

.directions-btn:hover {
  background: #0056b3 !important;
}

#showsCalendar {
  flex: 1;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#calendarKey {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  font-family: 'Livvic', sans-serif;
  font-size: 0.9rem;
}

.key-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.key-today {
  width: 20px;
  height: 20px;
  background: black;
  border-radius: 3px;
}

.key-event {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #6A82FB, #FC5C7D);
  position: relative;
}

#customCalendar {
  padding: 1rem;
}

#calendarHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

#calendarHeader button {
  background: black;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

#calendarHeader button:hover {
  background: #333;
}

#calendarHeader h3 {
  font-family: 'Livvic', sans-serif;
  font-size: 1.5rem;
  margin: 0;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 1px;
}

.calendar-weekdays div {
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
  background: #f5f5f5;
  font-family: 'Livvic', sans-serif;
}

#calendarDays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.calendar-day {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid #eee;
  font-family: 'Livvic', sans-serif;
  transition: background-color 0.2s;
}

.calendar-day.has-event {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.calendar-day.has-event:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background-color: black;
  color: white !important;
}

.calendar-day.today.has-event:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background-color: white;
  color: black !important;
}

.calendar-day:hover {
  background: #f0f0f0;
}

.calendar-day.empty {
  cursor: default;
  border: none;
}

.calendar-day.has-event {
  position: relative;
  background: transparent;
  color: black;
  font-weight: normal;
}

.calendar-day.has-event {
  color: white !important;
  font-weight: bold;
  z-index: 1;
}

.calendar-day.has-event::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #6A82FB, #FC5C7D);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.calendar-day.has-event:hover::before {
  background: linear-gradient(to right bottom, #5A72EB, #EC4C6D);
}

.calendar-day.today {
  background: black;
  color: white !important;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.calendar-day.today.has-event {
  background: black;
  color: white !important;
  font-weight: bold;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.calendar-day.today.has-event::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(to right bottom, #6A82FB, #FC5C7D);
  transform: translate(-50%, -50%);
  z-index: -1;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

#nextMonthCalendar {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

#nextMonthCalendar h3 {
  font-family: 'Livvic', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  text-align: center;
}

#nextCalendarDays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}


/* ------------------------------ ABOUT START -------------------------------------- */

#aboutSection {
  padding: 4rem 2rem 0rem 2rem;
  background-color: white;
}

#aboutHeading {
  visibility: hidden;
  font-family: 'Livvic', sans-serif;
  /* font-variant: small-caps; */
  font-size: 6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 0.7;
}


#translationContainer {
  background-color: rgba(0, 0, 0, .6);
  margin-bottom: .5rem;
  padding: 1rem 1.5rem;
  animation-delay: 3s;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
}

#translationContainer p {
  text-align: center;
  color: #ffffff;
  font-size: 1.4em;
  font-family: 'Livvic', sans-serif;
}


#motto {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: 'Livvic', sans-serif;
  font-size: 1.5rem;
  color: black;
  margin: 0;
  display: block;
  text-align: center;
  font-weight: 400;
}


#twoTuxContainer {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: .5rem;

  animation-delay: 2s;
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
}

#twoTuxContainer #twoTux {
  margin-top: 0rem;
  animation-delay: 1s;
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;

}


#navHorContainer {
  height: 6em;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: rgba(0, 0, 0, .6);


  animation-delay: 3s;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}


/* END PAGE LOAD TRANSISIONS */

#navHorContainer a {
  padding: 0em .5em .5em .5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  width: 5rem;
  height: 2rem;
  text-align: center;
  text-decoration: none;
  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
  font-family: 'Livvic', sans-serif;
  font-size: 2em;
  color: #ffffff;
  border: 2px white solid;
}


#navHorContainer #a1:hover {
  background-color: rgb(84, 212, 255);
  color: rgb(255, 159, 175);
 }

 #navHorContainer #a2:hover {
  color: rgb(215, 0, 0);
  background-color: rgb(182, 182, 182);
 }

 #navHorContainer #a3:hover {
  color: rgb(215, 215, 0);
  background-color: rgb(0, 0, 0);
 }

 #navHorContainer #a4:hover {
  color: rgb(47, 215, 0);
  background-color: rgb(255, 255, 255);
 }

 #navHorContainer #a5:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 0, 0);
 }

 #navHorContainer #a6:hover {
  color: rgb(215, 190, 0);
  background-color: rgb(29, 3, 179);
 }


 #fun {
  margin-top: 1rem;
  margin-bottom: 8rem;
  display: block;
  font-size: 2em;
  background-color: #ffffff;
  text-align: center;
  font-weight: 400;
  /* border: 2px blue dashed; */
}


/* ------------------------------ CONTACT START -------------------------------------- */

#contactSection {
  padding: 4rem 2rem;
  background-image: url('graphics/aaabstract.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#contactHeading {

  margin-top: 6rem;
  font-family: 'Livvic', sans-serif;
  /* font-variant: small-caps; */
  font-size: 6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 0.7;
}


#bonjour {
  margin-top: 6rem;
  display: block;
  font-size: 2rem;

  text-align: center;
  font-family: 'Livvic', sans-serif;
  /* border: 2px blue dashed; */
}

#laurentContact {
  padding: 20px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-evenly;
  align-items: center;
  font-family: 'Livvic', sans-serif;
  font-size: xx-large;
  /* border: 2px blue dashed; */

  animation-delay: 1s;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
}

#greetingContainer {

  padding: 20px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-evenly;
  align-items: center;
  font-family: 'Livvic', sans-serif;
  font-size: xx-large;
  /* border: 2px blue dashed; */

}

#greeting {
  background: rgba(255, 255, 255) !important;
  border-radius: 25px;
  -webkit-appearance: none;
  appearance: none;
  filter: invert(1);
}

#greeting::-webkit-media-controls-panel {
  background: rgba(255, 255, 255);
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

#laurentContact a {
  text-decoration: none;
  text-align: center;
  color: #0000EE;

  transition: color .25s;
  transition-timing-function: ease-in;
  transition: background-color .25s;
  transition-timing-function: ease-out;
}

#laurentContact a:hover {
  cursor: pointer;
  background-color: white;
  color: black;
}


hr {
  width: 80%;
  margin: auto;

  animation-delay: 1s;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
}


/* MAIL LIST */


#join {
  display: block;
  font-size: 2rem;

  text-align: center;
  font-family: 'Livvic', sans-serif;
  margin-top: .5em;
  /* border: 2px blue dashed; */
}

#mailListForm {
  margin-top: 2em;
  margin-bottom: 12rem;

  animation-delay: 1s;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;

  transition: color .5s;
  transition-timing-function: ease-in;
  transition: background-color .5s;
  transition-timing-function: ease-out;
}

.inputsContainer {
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 0rem;
  background: transparent;
}


input[type=text], input[type=submit] {
  width: 25%;
  padding: 12px;
  margin: 1em;
  display: inline-block;
  border: 1px solid #2a2a2a;
  font-family: 'Livvic', sans-serif;
  font-size: large;
}

/* Style the submit button */
input[type=submit] {
  font-family: 'Livvic', sans-serif;
  font-weight: 460;
  background-color: #0000EE;
  color: white;
  border: 1px solid #0000EE;

  transition: color .25s;
  transition-timing-function: ease-in;
  transition: background-color .25s;
  transition-timing-function: ease-out;
}

input[type=submit]:hover {
  cursor: pointer;
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  /* border: 1px solid #0000EE; */
}


/* ------------------------------ FOOTER START -------------------------------------- */


#footer {

  text-align: center;
  background-color: black;

}

#copyright {
  padding: 2rem 0 2rem 0;
  color: white;
}

/* EVENT MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.modal-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.modal-close:hover {
  color: #000;
}

.modal-show {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-direction: row-reverse;
}

.modal-image {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.modal-details {
  flex: 1;
}

.modal-date {
  font-family: 'Livvic', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.modal-time {
  font-family: 'Livvic', sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.modal-venue {
  font-family: 'Livvic', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.3rem;
}

.modal-location {
  font-family: 'Livvic', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.modal-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.modal-buttons a {
  font-family: 'Livvic', sans-serif;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.modal-buttons a:hover {
  background: #333;
}

.modal-directions {
  background: #007bff !important;
}

.modal-directions:hover {
  background: #0056b3 !important;
}

/* ============================================================================= */
/* ========================== MOBILE RESPONSIVE STYLES ========================== */
/* ============================================================================= */

/* Mobile Menu Toggle Button (Hamburger) */
#mobileMenuToggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 28px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

#mobileMenuToggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: black;
  transition: all 0.3s ease;
}

header.scrolled #mobileMenuToggle span {
  background-color: white;
}

header.contact #mobileMenuToggle span {
  background-color: black;
}

.mobile-menu-open #mobileMenuToggle span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.mobile-menu-open #mobileMenuToggle span:nth-child(2),
.mobile-menu-open #mobileMenuToggle span:nth-child(3) {
  opacity: 0;
}

.mobile-menu-open #mobileMenuToggle span:nth-child(4) {
  transform: translateY(-12px) rotate(-45deg);
}

.mobile-menu-open #oldMic:not(.sticky) {
  opacity: 0;
  visibility: hidden;
}

.mobile-menu-open #oldMic.sticky {
  opacity: 1;
  visibility: visible;
  z-index: 25;
}

/* ========================== MOBILE MEDIA QUERIES ========================== */
@media screen and (max-width: 768px) {
  /* -------------- GENERAL MOBILE STYLES -------------- */
  body {
    overflow-x: hidden;
  }

  /* -------------- HEADER & NAVIGATION -------------- */
  #mobileMenuToggle {
    display: flex;
    position: fixed;
    top: 20px;
    height: 28px;
    z-index: 20;
  }

  #navContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    flex-direction: column;
    justify-content: flex-start;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 6;
    padding-top: 60px;
  }

  .mobile-menu-open #navContainer {
    transform: translateX(0);
  }

  header.scrolled #navContainer {
    background-color: rgba(0, 0, 0, 0.95);
  }

  header.contact #navContainer {
    background-color: rgb(255, 255, 255);
  }

  header {
    padding: 0.5rem 0;
    min-height: 60px;
    display: flex;
    align-items: center;
  }

  #pageNav {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  #pageNav a {
    width: 100%;
    margin: 0.5rem 0;
    font-size: 1.8rem;
    padding: 0.5rem 0;
  }

  #socialNav {
    padding: 0.5rem 0;
    column-gap: 0.5rem;
  }

  #socialNav .fa {
    width: 2.5rem;
    padding: 0.8rem;
    font-size: 1.8rem;
  }

  /* -------------- LOGO ADJUSTMENTS -------------- */
  #logoBig {
    height: 15rem;
    width: 15rem;
    padding: 8rem 0 2rem 0;
  }

  #logoSmall.sticky {
    top: -1.25rem;
    left: 0.5rem;
    height: 3rem;
    width: 3rem;
    z-index: 15;
  }

  #oldMic {
    top: 2rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  #oldMic.sticky {
    top: 0.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    height: 3rem;
    width: 3rem;
    z-index: 15;
    transition: filter 0.5s ease, top 0.8s ease, height 0.5s ease, width 0.5s ease;
  }

  /* -------------- SECTION HEADINGS -------------- */
  #sectionHeadingText, #showsHeading, #aboutHeading {
    font-size: 3rem;
  }

  /* -------------- HOME SECTION -------------- */
  #audioContainer audio {
    width: 90%;
    max-width: 300px;
  }

  /* -------------- VIDEO SECTION -------------- */
  #videoContainer {
    width: 95vw;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  #prevBtn {
    left: 5px;
  }

  #nextBtn {
    right: 5px;
  }

  /* -------------- SHOWS SECTION -------------- */
  #showsContainer {
    flex-direction: column;
    gap: 2rem;
  }

  #showsList {
    max-width: 100%;
  }
  
  #showsSection {
    padding: 4rem 0.5rem;
  }
  
  #showsCalendar {
    width: 100%;
    overflow-x: auto;
  }

  .show-item {
    flex-direction: column;
    padding: 1.5rem;
  }

  .show-image {
    width: 100%;
    margin-top: 1rem;
  }

  .show-image img {
    width: 100%;
    height: auto;
    max-height: 180px;
  }

  .calendar-links {
    width: 100%;
    flex-wrap: wrap;
  }

  /* -------------- ABOUT SECTION -------------- */
  #twoTux {
    width: 100%;
    height: auto;
  }

  /* -------------- CONTACT SECTION -------------- */
  #contactSection {
    background-image: url('graphics/aaabstract1.3.svg');
  }
  
  #laurentPhone, #laurentEmail {
    white-space: nowrap;
  }
  
  #laurentContact {
    padding: 20px 10px;
    width: 90%;
    margin: 1rem auto;
    font-size: 1.8rem;
  }
  
  #laurentEmail {
    font-size: 1.6rem;
  }

  .inputsContainer {
    flex-direction: column;
  }

  input[type=text], input[type=submit] {
    width: 90%;
    margin: 0.5rem auto;
  }

  /* -------------- MODAL ADJUSTMENTS -------------- */
  .modal-show {
    flex-direction: column;
  }

  .modal-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
}



/* ------------------------------ CONTACT START -------------------------------------- */
