/* --------------------------------
   General
-------------------------------- */

body {
    margin: 0;
    background: #000;
    color: #fff;
}


/* --------------------------------
   Header
-------------------------------- */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.site-header .navbar {
    min-height: 90px;
    background: rgba(0, 0, 0, 0.55);
}

.site-header .navbar-brand {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.site-header .nav-link {
    color: #fff;
    font-weight: 600;
    margin-right: 1rem;
}

.site-header .nav-link:hover {
    color: #ccc;
}

.site-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}

.site-header .navbar-toggler-icon {
    filter: invert(1);
}


/* --------------------------------
   Social Media
-------------------------------- */

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.25rem;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 0.6;
}


/* --------------------------------
   Hero
-------------------------------- */

.hero {
    min-height: 100vh;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.35)
        ),
        url("../images/NewNoise_M4F_Minoritenkeller_Tulln.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.hero-content h1 {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    letter-spacing: 0.15em;
}

.hero-content p {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}


/* --------------------------------
   Setlist
-------------------------------- */

.setlist-card {
    width: min(900px, 90vw);
    max-height: 80vh;
    overflow-y: auto;

    padding: 2.5rem 3rem;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

    text-align: center;
}

.setlist-card h1 {
    margin-bottom: 0.25rem;

    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
}

.setlist-subtitle {
    margin-bottom: 2rem;

    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.setlist {
    margin: 0;
    padding-left: 2rem;

    text-align: left;
}

.setlist li {
    display: flex;
    justify-content: space-between;
    gap: 2rem;

    padding: 0.7rem 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.setlist li span:last-child {
    color: rgba(255, 255, 255, 0.65);
    text-align: right;
}


/* --------------------------------
   Calendar
-------------------------------- */

.calendar-card {
    width: min(1000px, 90vw);
    height: min(82vh, 750px);

    padding: 2.5rem;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

    text-align: center;

    overflow-y: auto;

    box-sizing: border-box;
}

.calendar-card h1 {
    margin-bottom: 0.25rem;

    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
}

.calendar-subtitle {
    margin-bottom: 2rem;

    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.calendar-container {
    width: 100%;
    height: 500px;
}

.calendar-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* --------------------------------
   Band
-------------------------------- */

.band-card {
    display: flex;
    flex-direction: column;

    width: min(1000px, 92vw);
    height: min(82vh, 750px);

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

    overflow: hidden;

    text-align: left;
}


/* --------------------------------
   Band Header Image
-------------------------------- */

.band-header-image {
    width: 100%;
    height: 220px;

    flex-shrink: 0;
}

.band-header-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* --------------------------------
   Band Main
-------------------------------- */

.band-main {
    display: grid;
    grid-template-columns: 1fr 1.3fr;

    flex: 1;

    min-height: 0;

    overflow: hidden;
}


/* --------------------------------
   Band Side Image
-------------------------------- */

.band-side-image {
    min-width: 0;
    height: 100%;
}

.band-side-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* --------------------------------
   Band Story
-------------------------------- */

.band-story {
    padding: 2rem 2.5rem;

    overflow-y: auto;

    font-size: 1rem;
    line-height: 1.7;
}

.band-story h1 {
    margin-bottom: 0.25rem;

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
}

.band-subtitle {
    margin-bottom: 2rem;

    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.band-story p {
    margin-bottom: 1.25rem;
}

.band-finale {
    margin-top: 2rem;

    font-size: 1.4rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* --------------------------------
   Mobile
-------------------------------- */

@media (max-width: 991.98px) {

    .hero {
        padding: 90px 0 20px;
    }

   .band-card {
        height: 80vh;
    }

    .band-header-image {
        height: 150px;
    }

    .band-main {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .band-side-image {
        height: 220px;
    }

    .band-story {
        padding: 1.5rem;
        overflow-y: visible;
    }

    .calendar-card {
        height: 80vh;
        padding: 1.5rem;
    }

    .calendar-container {
        height: 450px;
    }
}

.site-footer {
    display: none;
}

@media (max-width: 600px) {

    .site-header .navbar {
        min-height: 120px;
    }

    .site-header .container-fluid {
        position: relative;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0.75rem;
    }

    /* Überschrift oben */
    .site-header .navbar-brand {
        position: static !important;
        transform: none !important;
        order: 1;
        margin: 0;
        font-size: 1.5rem;
    }

    /* Burger darunter */
    .site-header .navbar-toggler {
        order: 2;
        margin-top: 0.5rem;
    }

    /* Navigation unter dem Burger */
    .site-header .navbar-collapse {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .site-header .navbar-nav {
        align-items: center;
    }

    .site-header .nav-link {
        margin-right: 0;
    }

      /* Social Media aus dem Header entfernen */
    .site-header .social-links {
        display: none;
    }

   /* Social Media im Footer anzeigen */
    .site-footer {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0.75rem 0;
        background: rgba(0, 0, 0, 0.75);
        z-index: 1000;
    }


    .site-footer .social-links {
        justify-content: center;
    }
}