/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* VARIABLES  */
@property --logo-color {
  syntax: "<color>";
  inherits: false;
  initial-value: #c9104f;
}

@property --main-font {
  font-family: "Public Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

[id] {
  scroll-margin-top: 40px;
}

html {
  scroll-behavior: smooth;
}

.logo {
  margin-top: 60px;
}

body {
  font-family: var(--main-font);
}
.home-container {
  text-align: center;
  font-size: 4em;
}
footer {
  text-align: center;
  font-size: 1.5em;
  width: 100vw;
}

.buy-album-link {
  margin-top: 0 !important;
}

#contact {
  margin-bottom: 80px;
}

.album-art-custom {
  max-width: 100%;
  border: 2px solid black;
}

.gallery-image {
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5) !important;
  -webkit-transition: all 0.3s ease-out !important;
  -o-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
  border: 2px solid black;
  border-radius: 5px;
}

.gallery-image:hover {
  -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.5) !important;
}

.underline {
  text-decoration: underline;
}

.animated-link {
  position: relative;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #f8f9fa;
}

.animated-link::after {
  content: "";
  position: absolute;
  bottom: -0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);

  width: 0;
  height: 4px;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}

.animated-link:hover {
  color: #0d6efd;
}

.animated-link:hover::after {
  width: 100%;
}

#spark {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;

  -webkit-transform-origin: 35% 15%;

  -ms-transform-origin: 35% 15%;

  transform-origin: 35% 15%;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.8;
  }
}

.section {
  text-align: center;
  font-size: 1.5em;
  max-width: 1500px;
  margin: 0 auto;
}

.heading,
.navbar-brand {
  font-family: var(--main-font);
  font-weight: 900;
  letter-spacing: 2px;
}

.heading-text {
  border-bottom: 5px solid var(--logo-color);
}

.subtext {
  font-family: var(--main-font);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--logo-color);
}

.new-album {
  font-family: var(--main-font);
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 20px !important;
}

.album-date {
  font-family: var(--main-font);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--logo-color);
  background-color: black;
  padding: 10px;
  border-radius: 5px;
}

.album-date-br {
  display: block;
}

.about-text {
  font-size: 1em;
  padding: 20px;
}

.social-text {
  font-size: 1em;
  padding: 20px;
}

.icon {
  width: 100px;
  margin: 20px;
}

.icon-button {
  display: inline-block;
  margin: 20px;
  -webkit-transition: all 0.3s ease-out !important;
  -o-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: white;
}

.icon-button:hover {
  -webkit-transform: scale(1.3) !important;
  -ms-transform: scale(1.3) !important;
  transform: scale(1.3) !important;
  color: white;
  text-decoration: none !important;
}

.black-button {
  position: relative;
  overflow: hidden;

  font-weight: 600;
  font-size: 1em;
  letter-spacing: 2px;
  color: white;
  background-color: black;
  border: 5px solid var(--logo-color);
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out !important;
  -o-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
  cursor: pointer;
  margin: 10px;
}

.black-button:hover {
  color: white;
  text-decoration: none !important;
  -webkit-transform: scale(1.1) !important;
  -ms-transform: scale(1.1) !important;
  transform: scale(1.1) !important;
  -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.5) !important;
}

.black-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;

  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    color-stop(/* Fully transparent left edge */),
    to(/* Peak white in the center */)
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    /* Fully transparent left edge */ rgba(255, 255, 255, 0.3) 50%,
    /* Peak white in the center */ rgba(255, 255, 255, 0) 100%
      /* Fully transparent right edge */
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    /* Fully transparent left edge */ rgba(255, 255, 255, 0.3) 50%,
    /* Peak white in the center */ rgba(255, 255, 255, 0) 100%
      /* Fully transparent right edge */
  );

  /* Start the strip off the left edge, and skew it for a slick effect */
  -webkit-transform: translateX(-100%) skewX(-30deg);
  -ms-transform: translateX(-100%) skewX(-30deg);
  transform: translateX(-100%) skewX(-30deg);
}

/* --- 4. Sheen Animation Trigger --- */
.black-button:hover::before {
  /* When hovered, run the keyframe animation */
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

/* --- 5. Keyframe Animation --- */
@-webkit-keyframes shine {
  /* Start position: 100% off-screen to the left */
  0% {
    -webkit-transform: translateX(-100%) skewX(-30deg);
    transform: translateX(-100%) skewX(-30deg);
  }
  /* End position: 250% across to ensure it slides completely off the right edge */
  100% {
    -webkit-transform: translateX(250%) skewX(-30deg);
    transform: translateX(250%) skewX(-30deg);
  }
}
@keyframes shine {
  0% {
    -webkit-transform: translateX(-100%) skewX(-30deg);
    transform: translateX(-100%) skewX(-30deg);
  }
  100% {
    -webkit-transform: translateX(250%) skewX(-30deg);
    transform: translateX(250%) skewX(-30deg);
  }
}

.coming-soon {
  max-width: 80vw;
}

#social {
  margin-bottom: 75px;
}

.form-card {
  margin: 6px;
}

.fa-brands {
}

.fa-facebook-f {
  color: #1877f2;
}

.fa-instagram {
  color: #c13584;
}

.fa-spotify {
  color: #1db954;
}

.fa-bandcamp {
  color: #629aa9;
}

.fa-soundcloud {
  color: #ff5500;
}

.fa-window-close {
  width: 50px;
  height: 50px;
}

.btn-close {
  padding: 0 !important;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease-out !important;
  -o-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
  top: -5px;
  right: -10px;
  opacity: 0.6;
}

.get-merch-link {
  margin-top: 40px;
}

.fa-shopping-cart,
.fa-music,
.fa-store {
  color: var(--logo-color);
}

.apple-music-logo {
  width: 48px;
  height: 48px;
  display: inline-block;
  /* margin-top: 1rem; */
  -webkit-filter: invert(15%) sepia(74%) saturate(7386%) hue-rotate(328deg)
    brightness(97%) contrast(107%);
  filter: invert(15%) sepia(74%) saturate(7386%) hue-rotate(328deg)
    brightness(97%) contrast(107%);
}

.youtube-music-logo {
  width: 48px;
  height: 48px;
}

.fa-envelope {
  color: var(--logo-color);
}

#imageModal .modal-content {
  background-color: transparent;
  border: 4px solid white;
  /* -webkit-box-shadow: 0 0 20px 10px var(--logo-color);
  box-shadow: 0 0 20px 10px var(--logo-color); */
}

#modalImage {
  max-height: 90vh;
  -o-object-fit: contain;
  object-fit: contain;
  background-color: black;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  opacity: 0.8;
  height: 150px;
  top: 50%;
  -webkit-transition: all 0.3s ease-out !important;
  -o-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover,
.btn-close:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2rem;
  height: 2rem;

  background-size: 150% 150%;
}

.modal-backdrop {
  background-color: #000000;
  -webkit-transition: opacity 0.3s ease-in-out !important;
  -o-transition: opacity 0.3s ease-in-out !important;
  transition: opacity 0.3s ease-in-out !important;
}

.modal-backdrop.show {
  opacity: 0.8 !important;
}

#contact .form-label {
  font-weight: 600;
  color: #adb5bd;
}

.contact-heading-text {
  color: black !important;
}

#contact .form-control {
  background-color: #343a40;
  color: #ffffff;
  border: 1px solid #495057;
  border-radius: 8px;
  padding: 12px 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#contact .form-control:focus {
  background-color: #495057;
  border-color: #0d6efd;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

#contact .btn-dark {
  background-color: #0d6efd;
  border-color: #0d6efd;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 30px;
  border-radius: 50px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

#contact .btn-dark:hover {
  background-color: #0a58ca;
  border-color: #0a58ca;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

#contact .form-card {
  background-color: #343a40;
  padding: 40px;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.gallery-image {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.gallery-image:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.heading-text {
  font-size: 0.8em;
}

/* animated navbar toggler icon  */
.animated-icon {
  width: 30px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  /* Center bars vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* Style for the three horizontal bars */
.animated-icon span {
  display: block;
  position: absolute; /* Allows for easy overlay and rotation */
  height: 3px;
  width: 100%;
  background: white; /* Matches your navbar-dark text color */
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out; /* Smooth transition for rotation/movement */
}

/* Position the three bars within the container */
.animated-icon span:nth-child(1) {
  top: 0px;
}
.animated-icon span:nth-child(2) {
  top: 11px; /* Center bar */
}
.animated-icon span:nth-child(3) {
  top: 22px;
}

#tour-dates-container {
  text-align: center;
  padding: 40px 20px;
  background-color: #1a1a1a;
  color: white;
}

.show-entry {
  margin-bottom: 40px;
}

.show-venue {
  font-size: 1.75rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.show-date {
  font-size: 1.5rem;
  margin: 5px 0;
}

.show-time {
  font-size: 1.2rem;
  color: #c9104f; /* Branding color */
  font-weight: 600;
}

/* Loading and Error states */
.status-msg {
  font-style: italic;
  color: #888;
}

/* --- 2. Expanded State (Animation to 'X') --- */

/* When the toggler button is NOT collapsed (i.e., the menu is open) */
.navbar-toggler:not(.collapsed) .animated-icon span:nth-child(1) {
  top: 11px; /* Move top bar to center */
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg); /* Rotate 45deg past 90deg */
}

.navbar-toggler:not(.collapsed) .animated-icon span:nth-child(2) {
  opacity: 0; /* Hide the middle bar */
  left: -0px; /* Optional: Slide it out quickly */
}

.navbar-toggler:not(.collapsed) .animated-icon span:nth-child(3) {
  top: 11px; /* Move bottom bar to center */
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg); /* Rotate in the opposite direction */
}

@media (min-width: 768px) {
  .album-date-br {
    display: none;
  }

  /* [id] {
      scroll-margin-top: -100px;
    } */

  .heading-text {
    font-size: 1em;
  }

  .animated-link::after {
    background-color: #c9104f; /* Use the primary blue color for the underline */
  }

  /* .navbar-nav .nav-link:hover {
      border-bottom: 2px solid var(--logo-color);
    } */

  .carousel-control-prev:hover,
  .carousel-control-next:hover,
  .btn-close:hover {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }

  .album-art-custom {
    max-width: 500px;
  }
}
