:root {
    --green: #63b23c;
    --blue: #00BEFF;
    --white: #ffffff;
    --greenhover: #22c55e;
    --green-band-card: #89ff00;
    --blue-band-card: #00bcd4;
    --band-name: #00bd56;
    --band-role: #00BEFF;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Höhe des fixen Headers */
}
body { font-family: 'Inter', sans-serif; }
.bg-hero {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
}
#progressBar {
    height: 4px;
    background: var(--green);
    width: 0%;
}
#parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/parallax_1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: -1;
    pointer-events: none;
    transition: background-position 0.1s ease-out;
}
.nav-link {
    position: relative;
    padding-bottom: 4px;
    color: white;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--greenhover)
}
.nav-link:hover::after {
  transform: scaleX(1);
}
/* Active link stays underlined */
.nav-link.active {
  color: var(--greenhover);
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: var(--greenhover);
    transform: scaleX(1);
}

/* Animated underline base */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--greenhover);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
img {
    filter: contrast(120%) saturate(1.3);
}
.fancy-list {
    padding: 0;
    margin: 0;
}
.fancy-list li {
    margin-bottom: 0rem;
    padding: 0rem;
    background-color: #00000000;
    border-radius: 0rem;
    transition: all 0.3s ease;
}
.fancy-list li:hover {
    transform: scale(1.02);
    background-color: #000000;
    opacity: 1;
    color: var(--green)
}
/* macht die portrait-formate im thumbnail rechteckig. Brauchen wir das wirklich oder kann das weg?*/
.gallery-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 3px;
    display: block;
}





/*----------------------------
 Band Section // Splide Carousel 
----------------------------*/
.band-card {
    position: relative;
    width: 12rem; /* Tailwind w-60 */
    height: 455px;
    background-color: black;
    border-radius: 0.3rem;
    /* box-shadow: 4px 4px 10px -2px #7efa65;  */
    /* x,y,blur,Spread Radius */
    /* overflow: hidden; */
    flex-shrink: 0;
    margin: 25px;
}
    .band-card::before,
    .band-card::after {
        content: "";
        position: absolute;
        top: -1px;
        bottom: -1px;
        left: -1px;
        right: -1px;
        border-radius: 0.3rem;
        background: linear-gradient(235deg, #89ff00, #000, #000, #00bcd4);
        z-index: -1;
    }

    .band-card::after {
        filter: blur(10px);
    }
.band-card-header {
    height:50%;
    border-radius: 0.3rem 0.3rem 0rem 0rem;
    background-size: cover;
    background-position: center;
}
.band-profile-container {
    display: flex;
    justify-content: center;
    margin-top: -3rem;
}
.band-profile-pic {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 90px; /* rund*/
    border: 4px solid #000000;
}
.band-name {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;     /* font-semibold */
    color: #00bd56;        /* text-gray-900 */
}
.band-role {
    font-size: 0.875rem; /* text-sm */
    color: #00BEFF;      /* text-gray-900 */
}
.band-bio {
    font-size: 0.875rem;
    color: #ffffff;      /* text-gray-500 */
    margin-top: 0.5rem;
}
.splide__track {
    overflow: hidden !important;
}