@media (max-width: 700px) {
  .admin-login-button {
    left: 14px;
    bottom: 14px;
    font-size: 0.9rem;
    padding: 9px 14px;
  }
}
.hidden-admin-symbol {
  color: inherit;
  text-decoration: none;
  cursor: default;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #0f0f12;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  width: min(1400px, 96%);
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  transform: scale(3.95);
  transform-origin: left center;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.nav li {
  display: inline-block;
}

.nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  position: relative;
  white-space: nowrap;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: 0.2s ease;
}

.nav a:hover {
  filter: brightness(1.15);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #7a5a16 0%, #fff2a6 50%, #8f6a1c 100%);
  border-radius: 2px;
}

/* Startseite Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 80px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-front-logo {
  width: 1240px;
  max-width: 80vw;
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #c6a15b;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.1rem;
  color: #dddddd;
  max-width: 640px;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: #c6a15b;
  color: #111;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.footer-center-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  color: #f3f3f3;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-center-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-center-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-center-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.35);
}

.footer-center-link {
  color: #f3f3f3;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.2s ease;
}

.footer-center-link:hover {
  color: #fff2a6;
}
.footer-center-item,
.footer-center-link {
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.35);
}

.footer-center-link:hover {
  filter: brightness(1.15);
}
/* Unterseiten Hintergrundvideo */
.page-bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: transparent;
}

.page-text {
  max-width: 700px;
  color: #d8d8d8;
  margin-bottom: 30px;
}

/* Allgemeine Content-Bereiche */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.content-card {
  background: rgba(10, 12, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px;
}

.content-card h3 {
  margin-bottom: 10px;
}

.content-card p {
  margin-bottom: 18px;
}
.content-card p {
  line-height: 1.3;
}
.about-list {
  margin: 18px 0;
  padding-left: 20px;
  color: #d8d8d8;
}

.about-list li {
  margin-bottom: 8px;
}

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.gallery-item {
  min-height: 220px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #cfcfcf;
  background: rgba(10, 12, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px;
}

/* Team */
.team-image {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2b2f39, #1a1e27);
  margin-bottom: 18px;
}

/* Partner */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-card h3,
.partner-card p {
  text-align: center;
}

.partner-logo-box {
  margin-top: 10px;
  padding: 16px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 14px;
}

.partner-logo {
  max-width: 330px;
  max-height: 330px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Songs-Seite */
.song-page-layout {
  display: grid;
  grid-template-columns: 220px 720px;
  justify-content: center;
  gap: 24px;
  align-items: start;
}

.song-upload-panel {
  padding: 24px;
  border-radius: 18px;
  background: rgba(10, 12, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 130px;
}

.song-upload-panel h2 {
  margin-bottom: 16px;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.song-dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 36px 20px;
  text-align: center;
  background: rgba(6, 8, 11, 0.78);
  transition: 0.2s ease;
}

.song-dropzone.dragover {
  border-color: #cfa93a;
  background: rgba(35, 39, 48, 0.95);
}

.song-upload-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.song-upload-btn,
.cover-upload-label {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  text-align: center;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  color: #111;
}

.cover-file-name {
  color: #cfcfcf;
  font-size: 0.95rem;
  text-align: center;
}

.song-library-box {
  max-height: 650px;
  width: 70%;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(8, 10, 13, 0.92);
  padding: 18px;
  margin: auto;
}

.song-library-header {
  margin-bottom: 18px;
  text-align: center;
}

.song-library-header h2,
.song-library-title {
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.song-library-header p {
  color: #d6c28a;
}

.song-library-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.song-library-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(12, 14, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.song-library-cover {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: #222;
  flex-shrink: 0;
}

.song-library-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.song-library-title {
  font-weight: 700;
  word-break: break-word;
}

.song-library-audio {
  margin-top: 6px;
  width: 320px;
  max-width: 100%;
}

.song-delete-btn {
  margin-left: auto;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  background: rgba(255, 70, 70, 0.18);
  color: #ffd2d2;
  border: 1px solid rgba(255, 70, 70, 0.35);
  flex-shrink: 0;
}

.song-delete-btn:hover {
  background: rgba(255, 70, 70, 0.28);
}

.song-library-box::-webkit-scrollbar {
  width: 10px;
}

.song-library-box::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.song-library-box::-webkit-scrollbar-thumb {
  background: rgba(207, 169, 58, 0.55);
  border-radius: 10px;
}

/* Footer */
.footer {
  padding: 26px 0;
  background: #090a0d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #a9a9a9;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.footer-note {
  max-width: 420px;
  text-align: right;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
  .song-page-layout {
    grid-template-columns: 1fr;
  }

  .song-upload-panel {
    position: static;
    top: auto;
  }

  .song-library-box {
    max-width: 850px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 0;
    min-height: auto;
  }

  .nav {
    width: 100%;
    margin-left: 0;
  }

  .nav ul {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .logo-img {
    transform: scale(2.25);
  }

  .hero-front-logo {
    width: 320px;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav a {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 120px 0 80px;
  }

  .song-library-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .song-library-cover {
    width: 100%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .song-delete-btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
    max-width: 100%;
  }
}
/* Preise-Seite mittig */
.page-section h1.eyebrow,
.page-section .page-text {
  text-align: center;
}

.page-section .content-card {
  text-align: center;
}

.page-section .about-list {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
}

.page-section .about-list li {
  margin-bottom: 10px;
}
.page-section h1 {
  font-size: 3rem;
}
.wersindwir-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.news-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  justify-content: center;
  gap: 24px;
  align-items: start;
}

.news-upload-panel {
  padding: 24px;
  border-radius: 18px;
  background: rgba(10, 12, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 130px;
}

.news-upload-panel h2 {
  margin-bottom: 16px;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.news-dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 36px 20px;
  text-align: center;
  background: rgba(6, 8, 11, 0.78);
  transition: 0.2s ease;
}

.news-dropzone.dragover {
  border-color: #cfa93a;
  background: rgba(35, 39, 48, 0.95);
}

.news-upload-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-upload-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  text-align: center;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  color: #111;
}

.news-text-input {
  min-height: 140px;
  resize: vertical;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 18, 0.96);
  color: #f5f5f5;
  padding: 14px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.news-feed-box {
  max-height: 900px;
  width: 100%;
  max-width: 1050px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(8, 10, 13, 0.92);
  padding: 18px;
}

.news-feed-header {
  margin-bottom: 18px;
  text-align: center;
}

.news-feed-header h2 {
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.news-feed-header p {
  color: #d6c28a;
}

.news-feed-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-feed-image {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
  border-radius: 14px;
  background: #111;
  display: block;
  margin: 0 auto;
}

.news-feed-image {
  width: 60%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  background: #111;
}

.news-feed-content {
  text-align: center;
}

.news-feed-title {
  margin-bottom: 10px;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.news-feed-text {
  color: #f0f0f0;
  white-space: pre-line;
}

.news-delete-btn {
  align-self: center;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  background: rgba(255, 70, 70, 0.18);
  color: #ffd2d2;
  border: 1px solid rgba(255, 70, 70, 0.35);
}

.news-feed-box::-webkit-scrollbar {
  width: 10px;
}

.news-feed-box::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.news-feed-box::-webkit-scrollbar-thumb {
  background: rgba(207, 169, 58, 0.55);
  border-radius: 10px;
}
@media (max-width: 1100px) {
  .news-page-layout {
    grid-template-columns: 1fr;
  }

  .news-upload-panel {
    position: static;
    top: auto;
  }

  .news-feed-box {
    margin: 0 auto;
  }
}

/* Nur öffentliche songs.php */
.page-section > .container > .song-library-box {
  width: 65%;
  margin: 0 auto;
}

.page-section > .container > .song-library-box .song-library-item {
  gap: 2px;
}

/* BILDER MODUL */
.image-admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  justify-content: center;
  gap: 24px;
  align-items: start;
}

/* ... Rest des Bilder-Moduls unverändert ... */
.image-upload-panel {
  padding: 24px;
  border-radius: 18px;
  background: rgba(10, 12, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 130px;
}

.image-upload-panel h2 {
  margin-bottom: 16px;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.image-dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 36px 20px;
  text-align: center;
  background: rgba(6, 8, 11, 0.78);
  transition: 0.2s ease;
}

.image-dropzone.dragover {
  border-color: #cfa93a;
  background: rgba(35, 39, 48, 0.95);
}

.image-upload-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-upload-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  text-align: center;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  color: #111;
}

.image-gallery-box {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.public-image-gallery-box {
  max-width: 1100px;
}

.image-gallery-header {
  margin-bottom: 18px;
  text-align: center;
}

.image-gallery-header h2 {
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.image-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(12, 14, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 10;
}

.image-gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-delete-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  background: rgba(255, 70, 70, 0.18);
  color: #ffd2d2;
  border: 1px solid rgba(255, 70, 70, 0.35);
}

.public-image-gallery-card .image-delete-btn {
  display: none;
}

@media (max-width: 1100px) {
  .image-admin-layout {
    grid-template-columns: 1fr;
  }

  .image-upload-panel {
    position: static;
    top: auto;
  }

  .image-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .image-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .image-gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* Bild-Vorschau öffentlich */
.previewable-image {
  cursor: pointer;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 5000;
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox-content {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
/* BILDER MODUL */
.image-admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  justify-content: center;
  gap: 24px;
  align-items: start;
}

.image-upload-panel {
  padding: 24px;
  border-radius: 18px;
  background: rgba(10, 12, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 130px;
}

.image-upload-panel h2 {
  margin-bottom: 16px;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.image-dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 36px 20px;
  text-align: center;
  background: rgba(6, 8, 11, 0.78);
  transition: 0.2s ease;
}

.image-dropzone.dragover {
  border-color: #cfa93a;
  background: rgba(35, 39, 48, 0.95);
}

.image-upload-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-upload-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  text-align: center;
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  color: #111;
}

.image-gallery-box {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.image-gallery-header {
  margin-bottom: 18px;
  text-align: center;
}

.image-gallery-header h2 {
  background: linear-gradient(90deg, #7a5a16 0%, #cfa93a 20%, #fff2a6 40%, #cfa93a 60%, #8f6a1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.image-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(12, 14, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
}

.image-gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-delete-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  background: rgba(255, 70, 70, 0.18);
  color: #ffd2d2;
  border: 1px solid rgba(255, 70, 70, 0.35);
}

@media (max-width: 1100px) {
  .image-admin-layout {
    grid-template-columns: 1fr;
  }

  .image-upload-panel {
    position: static;
    top: auto;
  }

  .image-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .image-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .image-gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* Öffentliche Bildvorschau in der Seite */
.previewable-image {
  cursor: pointer;
}

.inline-image-preview {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px;
  min-height: 320px;
  border-radius: 18px;
  background: rgba(8, 10, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.inline-preview-image {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  display: block;
}
.image-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  background: rgba(10, 12, 16, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.image-lightbox-prev {
  left: 24px;
}

.image-lightbox-next {
  right: 24px;
}

.image-lightbox-nav:hover {
  background: rgba(20, 24, 32, 0.9);
}
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  flex: 0 0 calc((100% - 72px) / 4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
}
.partner-logo-box {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 14px;
  padding: 16px;
}

.partner-logo {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}