html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*, ::before, ::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::-moz-selection {
  background-color: #4CAF50;
  color: white;
}

::selection {
  background-color: #4CAF50;
  color: white;
}

a {
  text-decoration: inherit;
  color: inherit;
}

body {
  font-family: "Lato", sans-serif;
  font-display: swap;
  font-size: 1rem;
  color: #FEFEFE;
  font-size: 16px;
  background-color: #1A1B1D;
  overflow-x: hidden;
}
.mobile-nav {
  display: none;
}

.menu {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5%;
  right: 5%;
  width: 50px;
  height: 50px;
  background-color: #4CAF50;
  border: solid 2px #4CAF50;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}
.menu .line {
  position: absolute;
  left: 25%;
  height: 1px;
  transform-origin: left;
  background-color: #1A1B1D;
}
.menu .line1 {
  top: 35%;
  width: 50%;
  transition: all ease-in-out 250ms;
  transform: translateY(-50%) scaleX(0.5);
}
.menu .line2 {
  top: 50%;
  width: 50%;
  transition: all ease-in-out 250ms;
  transform: translateY(-50%) scaleX(1);
}
.menu .line3 {
  top: 65%;
  width: 50%;
  transition: all ease-in-out 250ms;
  transform: translateY(-50%) scaleX(0.75);
}
.menu:hover .line1 {
  transform: scaleX(1);
}
.menu:hover .line3 {
  transform: scaleX(1);
}

.ss-menu {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5%;
  right: 5%;
  width: auto;
  height: 50px;
  background-color: #1A1B1D;
  border: solid 2px #4CAF50;
  border-radius: 25px;
  cursor: pointer;
  transition: all ease-in-out 100ms;
  opacity: 0;
  z-index: 999;
  padding: 0 15px;
}
.ss-menu img {
  position: relative;
  width: 20px;
  height: 20px;
  transition: all ease-in-out 100ms;
  margin-left: 10px;
}

.ss-menu:hover img {
  transform: scale(1.2);
  transition: all ease-in-out 100ms;
}
.ss-menu:hover {
  background-color: #4CAF50;
  transition: all ease-in-out 100ms;
}

.menu.active .line1 {
  top: 50%;
  width: 50%;
  transform: scaleX(1);
  transition: all ease-in-out 250ms;
  transition-delay: 25ms;
}

.menu.active .line2 {
  width: 50%;
  transform: scaleX(1);
  opacity: 0;
  transition: all ease-in-out 250ms;
}

.menu.active .line3 {
  top: 50%;
  width: 50%;
  transform: scaleX(1);
  transition: all ease-in-out 250ms;
  transition-delay: 25ms;
}

.visible1 { opacity: 1; transform: translateY(75px); transition: all ease-in-out 250ms; transition-delay: 25ms; }
.visible2 { opacity: 1; transform: translateY(150px); transition: all ease-in-out 250ms; transition-delay: 50ms; }
.visible3 { opacity: 1; transform: translateY(225px); transition: all ease-in-out 250ms; transition-delay: 100ms; }
.visible4 { opacity: 1; transform: translateY(300px); transition: all ease-in-out 250ms; transition-delay: 125ms; }
.visible5 { opacity: 1; transform: translateY(375px); transition: all ease-in-out 250ms; transition-delay: 150ms; }
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0; /* slightly tighter */
  display: flex;
  justify-content: center;
  z-index: 1000;
  background: transparent; /* remove translucent bar so only text shows */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all ease-in-out 200ms;
  margin: 0 20px;
}

.nav-item .menu-text {
  color: #FEFEFE;
  font-size: 1.2rem;
  white-space: nowrap;
  transition: color 200ms ease-in-out;
}

.ss-menu .menu-text {
  color: #FEFEFE;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-item:hover {
  transform: translateY(-2px);
}
.nav-item:hover .menu-text {
  color: #4CAF50;
}
section {
  min-height: 80vh;
  padding: 50px 15% 50px 15%;
  background-color: #1A1B1D;
}

.separator {
  width: 20vw;
  height: 2px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #4CAF50;
}

.mainView {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  color: #9fa0ac;
  background: url("../green_yeti_photos/18422456_1466582796739522_8655376707877281809_o.jpg");
  background-size: cover;
  background-position: center;
  background-color: transparent;
}

h1 {
  position: absolute;
  text-align: center;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50%;
  font-size: 7vh;
  font-weight: 900;
  color: #4CAF50;
  text-shadow: 0 2px 10px #1A1B1D;
  text-transform: uppercase;
  opacity: 0;
  -webkit-animation: opacity 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
  animation: opacity 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
h2 {
  font-size: 2rem;
}

.header-social-icons {
  /* Kept for footer/legacy use. Hidden on desktop when social icons are moved to Home */
  display: none;
}
.header-social-icons a {
  margin: 0 15px;
  position: relative;
  transition: transform 250ms ease-in-out;
}
.header-social-icons a:hover {
  transform: scale(1.15);
}
.header-social-icons img {
  width: 56px;
  height: 56px;
}
.header-social-icons .facebook {
  /* Facebook Blue #1877F2 */
  filter: brightness(0) saturate(100%) invert(39%) sepia(82%) saturate(2206%) hue-rotate(200deg) brightness(101%) contrast(95%);
}
.header-social-icons .instagram {
  /* Instagram Magenta #C13584 - representative color for the gradient */
  filter: brightness(0) saturate(100%) invert(32%) sepia(51%) saturate(2806%) hue-rotate(296deg) brightness(86%) contrast(90%);
}
.header-social-icons .bandcamp {
  /* Bandcamp Blue #629AA9 */
  filter: brightness(0) saturate(100%) invert(61%) sepia(22%) saturate(583%) hue-rotate(151deg) brightness(95%) contrast(88%);
}
.header-social-icons .spotify {
  /* Spotify Green #1DB954 */
  filter: brightness(0) saturate(100%) invert(55%) sepia(44%) saturate(1253%) hue-rotate(97deg) brightness(96%) contrast(86%);
}
.header-social-icons .youtube {
  /* YouTube Red #FF0000 */
  filter: brightness(0) saturate(100%) invert(13%) sepia(98%) saturate(7485%) hue-rotate(358deg) brightness(102%) contrast(105%);
}

/* New bottom-center social icons for Home page */
.home-bottom-social {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  z-index: 3;
  opacity: 0.98;
  padding: 6px 12px;
}
.home-bottom-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease-in-out;
}
.home-bottom-social a:hover { transform: translateY(-4px) scale(1.05); }
.home-bottom-social img { width: 36px; height: 36px; }

/* Make the bottom-center social icons white (convert black/colored SVGs to white) */
.home-bottom-social img {
  -webkit-filter: invert(100%) brightness(200%);
  filter: invert(100%) brightness(200%);
}

@media screen and (max-width: 767px) {
  /* On small screens, keep icons slightly larger and move near the bottom but above carousel controls */
  .home-bottom-social { bottom: 6%; }
  .home-bottom-social img { width: 44px; height: 44px; }
  /* Make sure mobile header-social-icons is not shown twice */
  .header-social-icons { display: none; }
}

.icon-text {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: #FEFEFE;
  background: rgba(26, 27, 29, 0.8);
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.header-social-icons a:hover .icon-text {
  opacity: 1;
}
p {
  color: #9fa0ac;
  line-height: 30px;
  margin: 50px 0 50px 0;
}

p.miniPara {
  color: #FEFEFE;
  line-height: 30px;
  margin: 0;
}

.hardLight {
  font-size: 3vh;
  line-height: 40px;
  font-weight: 900;
  text-align: center;
  width: 70%;
  margin: 70px auto 70px auto;
}

.imgContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  width: 100%;
}
.imgContent .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  margin: 10px;
}
.imgContent .card p {
  text-align: center;
  margin: 0;
  padding: 0;
}
.imgContent .card p:first-of-type {
  font-size: 1.3rem;
  color: #FEFEFE;
}
.imgContent .card::before {
  content: none;
  background-color: transparent;
}
.imgContent .card:hover::before {
  opacity: 0;
}
.imgContent img {
  position: relative;
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin: 15px auto;
  border-radius: 15px;
}

/* Position Danis photo to show head and logo */
.imgContent img.danis-photo {
  object-position: center top;
}

/* Image Modal/Lightbox Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1001; /* Sit on top, menu is 1000 */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: auto;
  max-width: 80%;
  max-height: 80vh;
  margin-top: 5%;
  animation-name: zoom;
  animation-duration: 0.6s;
}

/* Add Animation */
@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

p.miniTitle {
  font-size: 4vh;
  line-height: 40px;
  font-weight: 900;
  text-align: center;
  color: white;
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
}

p.pink {
  color: #4CAF50;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
}
p.pink:hover {
  transform: translateX(5px);
  transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
}

#bandVideo {
  width: 640px;
  max-width: 100%;
  background-color: #1E0E18;
  cursor: pointer;
}

.date table {
  margin: 70px 0;
  width: 100%;
  border-spacing: 0;
}
.date table td {
  border-bottom: solid 1px #9fa0ac;
  color: #9fa0ac;
  padding-top: 10px;
  padding-bottom: 10px;
}
.date table td a {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}
.date table td a:hover {
  transform: translateX(5px);
  transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
}
.date table td:first-of-type {
  color: white;
}
.date table td:nth-of-type(even) {
  padding-left: 7px;
}
.date table span {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ss-nextShow, .ss-music {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 50px 0;
}

.ss-music iframe {
    max-width: 100%;
}

footer {
  background-color: #4CAF50;
  min-height: 15vh;
}

.contact .hardLight {
  width: 100%;
  margin: 70px 0;
  text-align: left;
}

section.blocNewsletter {
  min-height: inherit;
  text-align: center;
  padding: 150px 15%;
  background: url("../img/background-newsletter.jpg");
  background-position: 50% 40%;
  background-size: cover;
}

form.newsletterForm input {
  color: #1A1B1D;
  padding: 15px;
  border: none;
  margin: 0;
  outline: none;
}
form.newsletterForm input[type=email] {
  color: #1A1B1D;
  border: solid #1A1B1D 3px;
  width: 50%;
  border-radius: 999px 0 0 999px;
}
form.newsletterForm label[for=checkRobotNews] {
  color: #9fa0ac;
}
form.newsletterForm #hideNews {
  display: none;
  margin: 10px 0;
}
form.newsletterForm #hideNews input {
  border-radius: 999px;
  font-size: 0.9rem;
  background-color: #FEFEFE;
}
form.newsletterForm input[type=submit] {
  text-transform: uppercase;
  border: solid #1A1B1D 3px;
  background-color: white;
  border-radius: 999px;
  margin-left: -25px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
}
form.newsletterForm input[type=submit]:hover {
  transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
  color: #4CAF50;
  transform: translateX(5px);
}

.contactForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contactForm input, .contactForm textarea {
  color: #1A1B1D;
  padding: 15px;
  width: 70%;
  border: none;
  margin: 15px 0 15px 0;
  font-family: inherit;
  outline: none;
}
.contactForm input {
  border-radius: 999px;
}
.contactForm label, .contactForm p.labelP {
  color: white;
  font-size: 3vh;
  font-weight: 900;
}
.contactForm p.labelP {
  margin: 20px auto;
}
.contactForm textarea {
  border-radius: 5px;
}
.contactForm input[type=submit] {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 2vh;
  cursor: pointer;
  transition: all ease-in-out 250ms;
  background-color: white;
}
.contactForm input[type=submit]:hover {
  transform: scaleX(0.8);
  letter-spacing: 0.8rem;
  transition: all ease-in-out 250ms;.ss-music iframe {
    max-width: 100%;
}
  color: white;
  background-color: #4CAF50;
}
.contactForm .inscriptionCheck {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.contactForm .inscriptionCheck input[type=radio] {
  margin: 0 10px;
  width: 10px;
}
.contactForm .inscriptionCheck label {
  font-size: 2vh;
  font-weight: inherit;
}
.contactForm #helpNom, .contactForm #helpTel, .contactForm #helpMail, .contactForm #helpRobot {
  display: none;
}

.hidePara {
  margin: 0;
  color: #4CAF50;
}

::-webkit-input-placeholder {
  color: #1A1B1D;
}

::-moz-placeholder {
  color: #1A1B1D;
}

:-ms-input-placeholder {
  color: #1A1B1D;
}

::-ms-input-placeholder {
  color: #1A1B1D;
}

::placeholder {
  color: #1A1B1D;
}

footer {
  text-align: center;
  padding: 50px 0 50px 0;
}
footer p {
  margin: 10px 0 10px 0;
  color: white;
}
footer p.bolder {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
  text-transform: uppercase;
}
footer .socialBanner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
footer img {
  max-width: 32px;
  margin: 5px;
  cursor: pointer;
}

.footerBaner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerBaner .bandBanner {
  margin: 0 30px;
  width: 100%;
  max-width: 75px;
  cursor: default;
}

#upArrow {
  display: none;
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
}
#upArrow:hover {
  -webkit-animation: animeLogo ease-in-out 0.3s;
  animation: animeLogo ease-in-out 0.3s;
}

@-webkit-keyframes animeLogo {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animeLogo {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
button[name=backSite] {
  border: none;
  border-radius: 5px;
  max-width: 250px;
  margin: 25px;
  padding: 10px;
  background-color: #4CAF50;
  font-size: 2.5vh;
  font-weight: bolder;
  color: white;
  cursor: pointer;
}

.animatableY {
  opacity: 0;
  transform: translate3d(0, 3vh, 0);
  transition: all ease-in-out 1s;
}

.animatableX {
  opacity: 0;
  transform: translate3d(-3vw, 0, 0);
  transition: all ease-in-out 1s;
}

.animatableOpacity {
  opacity: 0;
  transition: all ease-in-out 1s;
}

.showed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: all ease-in-out 1s;
}

.ss-music + .ss-music {
    padding-top: 0;
}

.ss-music + .ss-music > .hardLight {
    margin-top: 20px;
}

/* Carousel container */
.carousel-container {
  display: none; /* Hidden by default */
  position: relative;
  max-width: 100%;
  margin: auto;
}

.carousel-slide {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Bands in town widget responsive */
.bit-widget-initializer table {
    width: 100% !important;
}

@media screen and (max-width: 1024px) {
  /* On small screens show only the GREEN YETI logo at top-left and hide the nav/hamburger */
  /* Make the header span the full width on mobile and center items vertically */
  .desktop-header {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  /* increase top padding so the logo is nudged down via padding instead of margin */
  padding: 12px 12px 12px 12px;
    align-items: center;
    justify-content: space-between;
    z-index: 1002;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
    pointer-events: auto;
  }
  /* Mobile: make sure ss-menu icons align with text */
  .ss-menu img {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-left: 8px;
    display: inline-block;
  }
  .ss-menu .menu-text {
    display: inline-block;
    vertical-align: middle;
  }

  /* Make only the first (merch) menu icon white */
  .ss-menu1 img {
    -webkit-filter: invert(100%) brightness(200%);
    filter: invert(100%) brightness(200%);
  }
  /* Hide the big desktop nav and header social icons on mobile, but keep the mobile hamburger visible */
  .desktop-header .main-nav,
  .desktop-header .header-social-icons,
  .main-nav {
    display: none !important;
  }
  /* Ensure the mobile hamburger/menu is visible on the right */
  .mobile-nav {
    display: block !important;
  }

  /* Make sure the hamburger sits above the logo if they overlap */
  .mobile-nav .menu {
    z-index: 1003;
  }
  /* Keep logo visible and compact in the top-left */
  #logo-link {
    display: block;
    text-decoration: none;
  }
  #logo-link h1 {
    font-size: 1.25rem;
    margin: 0;
    color: #4CAF50;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    line-height: 1;
    white-space: nowrap; /* keep GREEN YETI on one line */
  }

  /* Logo image styling for mobile - 30% smaller */
  .logo-image {
    height: 65px;
    width: 65px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
  }

  /* Position the mobile hamburger at the right and vertically center it inside the header */
  /* Restore original hamburger fixed position at top-right */
  .mobile-nav {
    display: block !important;
    position: fixed;
    right: 5%;
    top: 5%;
    transform: none;
    z-index: 1003;
  }
  /* Ensure the menu sizing matches original */
  .mobile-nav .menu {
    position: fixed;
    top: 5%;
    right: 5%;
    width: 50px;
    height: 50px;
  }

  /* Ensure the logo text is left-aligned and not affected by other h1 rules on small screens */
  #logo-link h1 {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    margin-left: 12px;
    text-align: left;
  }
  .menu:hover .line1 {
    transform: scaleX(0.5);
  }
  .menu:hover .line3 {
    transform: scaleX(0.75);
  }
  .menu.active .line3 {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 767px) {
  h1 {
    width: 90%;
    font-size: 2.5rem;
    bottom: auto;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .mainView {
    background: none;
  }

  .carousel-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
  }

  .carousel-slide img {
    height: 100vh;
    object-fit: cover;
  }
  
  /* Position Danis carousel photo to avoid overlap with menu logo on mobile */
  .carousel-slide img.danis-carousel {
    object-position: center 35%;
  }

  .modal-content {
    max-width: 95%;
  }

  .header-social-icons {
    bottom: auto; /* Ensure it's not conflicting with desktop 'bottom' */
    top: 47%; /* Moved up from 53% to 47% */
    transform: translate(-50%, -50%);
  }
  .header-social-icons img {
    width: 40px;
    height: 40px;
  }
  .header-social-icons a {
    margin: 0 10px;
  }

  footer .socialBanner {
    display: flex;
  }

  section {
    padding: 50px 5% 50px 5%;
  }

  section.blocNewsletter {
    padding: 50px 5% 50px 5%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  form.newsletterForm input[type=email] {
    width: 100%;
    border-radius: 999px;
    margin-bottom: 10px;
  }
    form.newsletterForm input[type=submit] {
    margin-left: 0;
    width: 100%;
  }


  .hardLight {
    width: 100%;
    font-size: 1.5rem;
  }

  #bandVideo {
    max-width: 100%;
  }

  .contactForm input, .contactForm textarea {
    width: 100%;
  }

  .imgContent .card::before {
    display: none;
  }
    .imgContent .card {
    width: 100%;
    max-width: 300px;
  }
    .imgContent img {
    width: 100%;
    height: auto;
  }
  .band .imgContent img {
    height: 250px;
    object-fit: cover;
  }
  
  /* Position Danis photo to show head and logo on mobile */
  .band .imgContent img.danis-photo {
    object-position: center top;
  }


  p.pink:hover {
    transform: none;
  }

  .date table td a:hover {
    transform: none;
  }

  form.newsletterForm input[type=submit]:hover {
    transform: none;
  }

  .contactForm input[type=submit]:hover {
    transform: none;
    letter-spacing: 0.2rem;
    color: #1A1B1D;
    background-color: white;
  }

  #upArrow {
    width: 48px;
  }
  #upArrow:hover {
    -webkit-animation: none;
    animation: none;
  }

  .date table td:nth-of-type(even) {
    padding-left: 1px;
  }
}
@media all and (min-width: 768px) and (max-width: 1024px) {
  form.newsletterForm input[type=email] {
    width: 60%;
  }

  .contactForm input, .contactForm textarea {
    width: 90%;
  }
}
@media all and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2#slogan {
        font-size: 1.2rem;
    }
    .hardLight {
        font-size: 1.2rem;
    }
    .date table {
        font-size: 0.9rem;
    }
}

@media all and (max-width: 320px) {
  table {
    font-size: 0.8rem;
  }
  table td:last-of-type {
    display: none;
  }

  .hardLight {
    font-size: 2vh;
  }

  form.newsletterForm input[type=email] {
    width: 100%;
  }

  .footerBaner p.bolder {
    font-size: 0.8rem;
  }
}

@media screen and (max-height: 500px) and (max-width: 926px) {
  .header-social-icons img {
    width: 30px;
    height: 30px;
  }
  .header-social-icons a {
    margin: 0 5px;
  }
  h1 {
    font-size: 5vh;
  }
}

/*# sourceMappingURL=style.css.map */

.prev, .next {
  display: none;
}

/* Desktop Header Adjustments */
@media screen and (min-width: 1025px) {
  .desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  .header-left {
    display: flex;
    align-items: center;
  }

  #logo-link {
    position: static;
    text-decoration: none;
  }

  #logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease-in-out;
  }

  #logo-link h1 {
    font-size: 2rem;
    margin: 0;
    color: #4CAF50;
    text-shadow: 0 2px 10px #1A1B1D;
    text-transform: uppercase;
    font-weight: 900;
    position: static;
    text-align: left;
    width: auto;
    left: auto;
    transform: none;
    bottom: auto;
    opacity: 1;
    animation: none;
  }

  /* Logo image styling for desktop */
  .logo-image {
    height: 120px;
    width: 120px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
  }

  .main-nav {
    position: static;
    display: flex;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .desktop-header .header-social-icons {
    position: static;
    bottom: auto;
    right: auto;
    left: auto;
    transform: none;
    width: auto;
    top: auto;
    margin-left: 30px;
    animation: none;
    opacity: 1;
    display: flex;
    align-items: center;
  }

  .desktop-header .header-social-icons a {
    margin: 0 10px;
  }

  .desktop-header .header-social-icons img {
    width: 28px;
    height: 28px;
  }
}