:root {
    --accent-color: var(--color-teal); /* inherits from shared/css/core.css */
    --color-dark: var(--bg-primary);   /* inherits from shared/css/theme.css */
}

/* Hide in-page navigation menu - TODO: remove entirely if not needed */
.menu, .ss-menu { display: none !important; }

/* Responsive YouTube videos */
iframe.youtube-video {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
}

::selection {
  background-color: var(--accent-color);
  color: white;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--color-dark);
}

.shareBtn {
  position: absolute;
  top: 5%;
  left: 5%;
  display: flex;
}

.elementBtn {
  padding: 0 5px;
  cursor: pointer;
  transition: all ease-in-out 250ms;
}
.elementBtn img {
  position: relative;
  width: 25px;
}

.menu {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 12%;
  right: 5%;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border: solid 2px var(--accent-color);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.menu .line {
  position: absolute;
  left: 25%;
  height: 1px;
  transform-origin: left;
  background-color: var(--color-dark);
}
.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: 12%;
  right: 5%;
  width: 50px;
  height: 50px;
  background-color: var(--color-dark);
  border: solid 2px var(--accent-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all ease-in-out 100ms;
  opacity: 0;
  z-index: -1;
}
.ss-menu img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  transition: all ease-in-out 100ms;
}
.ss-menu:hover img {
  transform: translate(-50%, -50%) scale(1.2);
  transition: all ease-in-out 100ms;
}
.ss-menu:hover {
  background-color: var(--accent-color);
  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, .visible2, .visible3, .visible4 {
  opacity: 1;
  transition: all ease-in-out 250ms;
  z-index: 1;
}
.visible1 { transform: translateY(75px); transition-delay: 25ms; }
.visible2 { transform: translateY(150px); transition-delay: 50ms; }
.visible3 { transform: translateY(225px); transition-delay: 100ms; }
.visible4 { transform: translateY(300px); transition-delay: 125ms; }

section {
  min-height: 80vh;
  padding: 50px 15% 50px 15%;
  background-color: var(--color-dark);
}

.separator {
  width: 20vw;
  height: 2px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: var(--accent-color);
}

.mainView {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  color: var(--text-secondary);
  background: url("../img/scott_big_white.jpg");
  background-size: cover;
  background-position: center;
  background-color: transparent;
}
.mainView::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .mainView::before {
  background: rgba(0, 0, 0, 0.25);
}
[data-theme="dark"] .shareBtn img {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
          drop-shadow(0 0 8px rgba(245, 245, 245, 0.3))
          drop-shadow(0 0 12px rgba(245, 245, 245, 0.2))
          drop-shadow(0 0 16px rgba(225, 225, 225, 0.1));
}

h1 {
  position: absolute;
  text-align: center;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  font-size: 3.5rem;
  font-weight: 900;
  color: #FEFEFE;  /* bright white for hero visibility */
  text-shadow: 
    -1.5px -1.5px 0 black,
     1.5px -1.5px 0 black,
    -1.5px  1.5px 0 black,
     1.5px  1.5px 0 black,
     0 2px 10px var(--color-dark);
  text-transform: uppercase;
  opacity: 0;
  animation: opacity 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
  animation-delay: 1s;
}

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

h2#slogan {
  position: absolute;
  text-align: center;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-color);
  text-shadow: 0 2px 10px var(--color-dark);
  opacity: 0;
  transform: translateY(-45px);
  animation: slideY 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
  animation-delay: 1s;
}

@keyframes slideY {
  from {
    opacity: 0;
    transform: translateY(-45px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
p {
  line-height: 30px;
  margin: 50px 0 50px 0;
}

p.miniPara {
  color: var(--text-primary);
  line-height: 30px;
  margin: 0;
}

.hardLight {
  font-size: 1.5rem;
  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: 80%;
}
.imgContent .card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.imgContent .card p {
  text-align: center;
  margin: 0;
  padding: 0;
}
.imgContent .card p:first-of-type {
  font-size: 1.3rem;
  color: var(--text-primary);
}

.imgContent img {
  position: relative;
  width: 100%;
  max-width: 250px;
  margin: 15px auto;
  border-radius: 15px;
}

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

p.pink {
  color: var(--accent-color);
  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);
}

.date table {
  margin: 70px 0;
  width: 100%;
  border-spacing: 0;
}
.date table td {
  border-bottom: solid 1px var(--text-secondary);
  color: var(--text-secondary);
  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: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ss-nextShow, .ss-music {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*height: 70vh;*/
}

footer {
  background-color: var(--color-blue);
  min-height: 15vh;
}

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: var(--color-dark);
  padding: 15px;
  border: none;
  margin: 0;
  outline: none;
}
form.newsletterForm input[type=email] {
  color: var(--color-dark);
  border: solid var(--color-dark) 3px;
  width: 50%;
  border-radius: 999px 0 0 999px;
}
form.newsletterForm label[for=checkRobotNews] {
  color: var(--text-secondary);
}
form.newsletterForm #hideNews {
  display: none;
  margin: 10px 0;
}
form.newsletterForm #hideNews input {
  border-radius: 999px;
  font-size: 0.9rem;
  background-color: var(--text-primary);
}
form.newsletterForm input[type=submit] {
  text-transform: uppercase;
  border: solid var(--color-dark) 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: var(--accent-color);
  transform: translateX(5px);
}

.hidePara {
  margin: 0;
  color: var(--accent-color);
}

:::placeholder {
  color: var(--color-dark);
}

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;
}
footer img {
  max-width: 24px;
  margin: 0 2px 0 2px;
  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;
}
#upArrow:hover {
  animation: animeLogo ease-in-out 0.3s;
}

@keyframes animeLogo {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.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;
}

@media screen and (max-width: 1024px) {
  .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: 2rem;
    bottom: 45%;
  }

  h2#slogan {
    width: 90%;
    font-size: 2rem;
    bottom: 20%;
  }

  footer .socialBanner {
    display: none;
  }

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

  section.blocNewsletter {
    padding: 50px 2% 50px 2%;
    background-size: 160%;
    background-repeat: no-repeat;
    background-position: 100% 20%;
  }

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

  .hardLight {
    width: 100%;
  }

  .imgContent .card::before {
    display: none;
  }

  p.pink:hover {
    transform: none;
  }

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

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

  #upArrow {
    width: 48px;
  }
  #upArrow:hover {
    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%;
  }

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

  .hardLight {
    font-size: 1rem;
  }

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

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

.ss-music .hardLight {
  margin: 40px auto 40px auto;
}

.photo-credit {
  position: absolute;
  bottom: 1px;
  right: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

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

/* override shared settings */
h2 {
  border-bottom: none;
}
/*.theme-toggle {
  visibility: hidden;
}*/
