/* Grundlayout */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(0,0,58);
    color: white;
    margin: 0;
}

/* HEADER ---------------------------------------------------- */

.header {
    text-align: center;
    padding: 10px 0;
}

.header-logo {
    max-width: 55%;
    height: auto;
}

/* LAYOUT ---------------------------------------------------- */

.layout {
    display: flex;
    max-width: 55%;
    margin: 0 auto;
}

/* NAVIGATION (links) --------------------------------------- */
.main-nav {
    width: 180px;             /* Breite der linken Spalte */
    padding: 0;
    margin: 0;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-bottom: 6px;       /* Abstand zwischen Buttons */
}

.main-nav a {
    display: block;
    padding: 10px 12px;
    background: #081246;      /* dunkles Marineblau */
    color: #0cf;              /* Türkis, wie deine Schrift */
    text-decoration: none;
    border-radius: 4px;       /* weiche Ecken */
    font-weight: bold;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
    background: #0cf;         /* invertiert */
    color: #081246;
}

.sidebar {
    width: 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
}

.sidebar img {
    width: 120px;
}

/* CONTENT (rechts) ----------------------------------------- */

.content {
    flex: 1;
    padding: 20px;
}

.bandfoto {
    max-width: 100%;
    height: auto;
    display: block;
}

.yt {
    max-width: 100%;
    margin-top: 20px;
}

/* FOOTER ---------------------------------------------------- */

.footer {
    margin-top: 40px;
}

/* LINKS ----------------------------------------------------- */

a {
    color: #0cf;
}

/* OPTIONAL: Globale Tabellen-Styles entfernen */
table {
    border-collapse: collapse;
}

.contact-box {
    margin: 20px 0;
    padding: 10px;
}

.youtube-link {
    margin: 0 0 20px 0;
}

.yt-large {
    font-size: 28px;
}

.contact-info p {
    margin: 5px 0;
}

.gigs {
    margin-top: 20px;
}

.gigs h2 {
    font-size: 24px;
    color: cyan;
    margin-bottom: 15px;
}

.gig {
    display: grid;
    grid-template-columns: 150px 200px 1fr;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.gig span {
    font-size: 16px;
    color: white;
}

.gig-date {
    width: 120px;
    font-weight: bold;
    color: #0ff; /* cyan, passend zu deiner Seite */
}

.gig-place {
    width: 200px;
}

.gig-desc {
    flex: 1;
}

div.video-placeholder{
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 640px;
    height: 360px;
    margin: 20px 0;
}

div.video-placeholder img{
    width: 640px;
    height: 360px;
    filter: brightness(60%);
}

div.video-placeholder .overlay-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    text-align: center;
}

hr {
    border: 0;
    height: 2px; /* kannst du anpassen */
    background: linear-gradient(to right, #081246, #0cf, #081246);
    margin: 20px 0; /* optional */
}


/* COOKIE BANNER -------------------------------------------------- */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 40, 0.95); /* passt zu deinem Dark-Blue */
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.6);
}

.cookie-banner__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-banner__text {
    margin: 0;
}

.cookie-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-btn {
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #0cf;
    background: transparent;
    color: #0cf;
    padding: 6px 12px;
    font-size: 14px;
}

.cookie-btn--accept {
    background: #0cf;
    color: #000028;
    font-weight: bold;
}

.cookie-btn:hover {
    filter: brightness(1.1);
}

.cookie-banner__link {
    margin: 0;
    font-size: 12px;
}

.cookie-banner__link a {
    color: #0cf;
    text-decoration: underline;
}

/* zum Verstecken, wenn Einwilligung bereits gegeben/abgelehnt wurde */
.cookie-hidden {
    display: none;
}
