/* --- CSS VARIABLES FOR EASY EDITING --- */
:root {
    --bg-color: #121212;
    --text-color: #ffffff;
    --accent-color: #8c8c8c;
    --font-main: 'Montserrat', sans-serif;
    /* Replace URL below with your actual band photo */
    --banner-img: url('media/broad_issue_galerie_ohne_logo.png');
}

/* --- RESET & BASICS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background 0.3s;
    /* Optional: Add a slight gradient so nav is visible on light photos */
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 300;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;

    color: red;
}

/* --- HERO SECTION (BANNER) --- */
.hero {
    position: relative;
    background-image: var(--banner-img);
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full screen height */

    /* Flexbox magic to center the logo */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity to taste */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensures logo stays above the overlay */
    text-align: center;
}

.main-logo {
    max-width: 1920px; /* Adjust size based on your logo design */
    width: 80%;       /* Responsive: logo shrinks on mobile */
    height: auto;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5)); /* Adds depth */
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    /* ... keep your existing scroll-indicator styles ... */
}

.logo-container {
    z-index: 2;
    text-align: center;
}

.band-logo {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    width: 30%;
    /* If using an image logo, remove border/padding and set width */
}

.single-logo {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    width: 30%;
    /* If using an image logo, remove border/padding and set width */
}
.band-logo-footer {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    width: 100%;
    /* If using an image logo, remove border/padding and set width */
}
.socials-logo {
    width: 5%;
}

.past {
    text-decoration: line-through;
    opacity: 0.6; /* Macht die Zeile zusätzlich etwas blasser */
}

/* Animated Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    animation: bounce 2s infinite;
    font-size: 3.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* --- CONTENT SECTIONS --- */
.content-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.placeholder-box {
    width: 320px;
    height: 320px;
    background: #222;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
}

.placeholder-box img:hover {


}

.music-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap; /* Ensures it looks good on mobile */
}


.music-link {
    text-decoration: none;
    color: #fff;
    background-color: #222; /* Dark background for a modern look */
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #444;
}

.music-link:hover {
    background-color: #ff0000; /* Changes to red when hovered to match your single "RED" */
    transform: translateY(-3px);
    color: #fff;
}

.social-link {
    text-decoration: none;
    color: #fff;
    background-color: #222; /* Dark background for a modern look */
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #444;
}

.social-link:hover {
    background-color: #ff0000; /* Changes to red when hovered to match your single "RED" */
    transform: translateY(-3px);
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap; /* Ensures it looks good on mobile */
}

.placeholder-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block;    /* Removes default bottom spacing on images */
}

.placeholder-box.video-box {
    width: 100%;           /* Fills the width of the section */
    max-width: 640px;      /* Standard video width (optional: remove if you want full screen width) */
    height: auto;          /* Resets the fixed 300px height */
    aspect-ratio: 16 / 9;  /* Automatically calculates the correct video height */
    padding: 0;            /* Removes padding so video fits edge-to-edge */
}

.placeholder-box.video-box iframe {
    width: 100%;
    height: 100%;
}

/* --- TOUR LIST STYLING --- */
.tour-list {
    list-style: none;
    text-align: left;
    margin-top: 40px;
}

.tour-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.ticket-button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.ticket-button:hover {
    background: white;
    color: black;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .band-logo {

        padding: 10px 20px;
        width: 10%;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.7rem;
    }
}