/* =========================================
   BASIS-DESIGN – GOLD-BRAUN-THEMA
   ========================================= */
:root {
  --bg: #b19782;
  --accent: #2c1b10;
  --gold-start: #b29a84;
  --gold-end: #d4af37;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Amatic SC", "Segoe UI", Tahoma, sans-serif;
  background: var(--bg);
  color: var(--accent);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
}
.logo h1 { margin: 0; font-size: 26px; }
.logo p { margin: 0; font-size: 12px; }

.nav-desktop {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-desktop a {
  text-decoration: none;
  color: var(--accent);
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.25s ease;
}
.nav-desktop a:hover {
  color: var(--gold-end);
}

/* =========================================
   BURGER-MENÜ – ELEGANTES GOLD-DESIGN
   ========================================= */
.burger {
  display: none;
  width: 48px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1201;
}
.burger div {
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}
.burger:hover div { background: var(--gold-end); }
.burger.toggle div:nth-child(1) { transform: rotate(-45deg) translate(-6px, 7px); }
.burger.toggle div:nth-child(2) { opacity: 0; }
.burger.toggle div:nth-child(3) { transform: rotate(45deg) translate(-6px, -7px); }

/* ===== Mobile Navigation Overlay (volle Höhe) ===== */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* volle Fensterhöhe */
  background: rgba(44, 27, 16, 0.9);
  backdrop-filter: blur(4px);
  z-index: 1200;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 26px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-mobile a:hover {
  color: var(--gold-end);
  transform: scale(1.08);
}

.menu-overlay {
  backdrop-filter: blur(2px);
}

/* =========================================
   SONSTIGE BEREICHE
   ========================================= */
.container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
}
.hero-image {
  margin-top: 18px;
  width: 70%;
  max-width: 900px;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Upload */
.upload-area {
  border: 2px dashed rgba(0,0,0,0.12);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: #5a4a3b;
  cursor: pointer;
  background-color: rgba(255,255,255,0.85);
  transition: all 0.2s ease;
}
.upload-area.dragover {
  background-color: #f1e8e0;
  border-color: rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.upload-list {
  width: 95%;
  max-width: 800px;
  margin-top: 16px;
  text-align: left;
}
.progress-item {
  background: rgba(255,255,255,0.95);
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.progress-item strong { width: 30%; word-break: break-all; font-size: 15px; }
.progress-bar-wrap { flex: 1; background: #eee; height: 12px; border-radius: 8px; overflow: hidden; }
.progress-bar {
  width: 0%;
  height: 100%;
  transition: width .25s ease;
  background: linear-gradient(90deg, var(--gold-start) 0%, var(--gold-end) 100%);
  box-shadow: 0 0 8px rgba(212,175,55,0.25);
}
.progress-status { width: 70px; text-align: right; font-size: 14px; color: #333; }

/* Gallery */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.gallery-item {
  background: rgba(255,255,255,0.95);
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-item img { max-width: 220px; border-radius: 6px; display: block; }
.gallery-item video { max-width: 320px; border-radius: 6px; display: block; }
.download-btn {
  margin-top: 8px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid var(--accent);
  text-decoration: none;
  color: var(--accent);
}

/* Music Icon */
.music-icon {
  position: fixed;
  top: 18px;
  right: 18px;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gold-end);
  z-index: 2000;
  transition: transform .2s, color .2s;
  display: none;
}
.music-icon.show { display: block; }
.music-icon:hover { transform: scale(1.15); color: #b8922f; }

/* Responsive Anpassungen */
@media (max-width: 800px) {
  .nav-desktop { display: none; }
  .burger { display: block; }
  .hero-image { width: 95%; }
}
