

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #eee;
    line-height: 1.6;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ================= HEADER / NAV ================= */

header {
    background: rgba(0,0,0,0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;

    position: sticky;
}

nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

/* Hover Effekt */
nav a:hover {
    color: white;
    transform: translateY(-2px);
}

/* animierte Linie */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* aktiver Menüpunkt */
nav a.active {
    color: white;
}

nav a.active::after {
    width: 100%;
}

/* ================= HERO ================= */

.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 4rem;
}

.hero p {
    font-size: 1.4rem;
    color: #d4af37;
}

.hero h1 {
    color: white;
}

.hero p {
    color: #d4af37;
}

/* ================= LAYOUT ================= */

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 60px 0;

    flex: 1;
}

.card {
    background: #1b1b1b;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

/* Band Mitglieder */
.band-member {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

/* ================= GALERIE ================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ================= LIGHTBOX ================= */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 70vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.close:hover {
    color: #d4af37;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 15px;
}

.arrow:hover {
    color: #d4af37;
}

.left {
    left: 30px;
}

.right {
    right: 30px;
}

/* ================= FOOTER ================= */

footer {
    background: #000;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

h2 {
    color: #d4af37;
    margin-bottom: 15px;
}
/* Footer Links */

.footer-nav a,
.footer-nav a:visited {
    color: #d4af37;
    text-decoration: none;
    margin: 0 12px;
    font-weight: bold;
}

.footer-nav a:hover {
    color: white;
}

footer {
    position: relative;
}

.footer-logo {
    position: absolute;
    right: 10px;
    bottom: 15px;
    width: 50px;
    height: auto;
}

@media (max-width: 768px) {
    .footer-logo {
        width: 48px;
        right: 15px;
        bottom: 20px;
    }
}

.download-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #d4af37;
    color: #111;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.download-btn:hover {
    background: white;
}

.downloads-section {
    margin-top: 60px;
}

.download-text {
    margin-bottom: 30px;
}




/* ================= PASSWORD ================= */

.input-group {
  position: relative;
  width: 300px;
}

.input-group input {
  width: 100%;
  padding: 14px 45px 14px 12px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background: #f7f7f7;
  outline: none;
  transition: 0,2s;
}

.input-group input:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
  background: #fff;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  transition: 0.2s;
  pointer-events: none;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  font-size: 12px;
  background: white;
  padding: 0 4px;
  color: #6c63ff;
}

.toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 0;
}


/* Desktop: Auge ausblenden */

@media (min-width: 768px) {
    .toggle {
        display: none;
    }
}

.toggle:hover {
    color: #000;
}

/* ================= HANDY OPTIMIERUNG ================= */

@media (max-width: 768px) {

    nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .container {
        width: 95%;
        padding: 20px 0;
    }

    .input-group {
        width: 100%;
        max-width: 300px;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}

/* ================= FACEBOOK BUTTON ================= */

.facebook-button {
    position: absolute;
    left: 20px;
    bottom: 15px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1877f2;
    border-radius: 50%;

    text-decoration: none;
    transition: transform 0.3s ease;
}

.facebook-button svg {
    width: 24px;
    height: 32px;
    fill: white;
}

.facebook-button:hover {
    transform: scale(1.1);
}