/* ===== Standard Theme: Dunkles Blau + Gold ===== */






/* ===== Header Layout ===== */
.site-header {
  position: fixed;       /* Header bleibt oben stehen */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between; /* Nav links, Logo rechts */
  align-items: center;
  padding: 10px 20px;
  background: rgba(0,0,0,0.7); /* halbtransparent, wirkt filmisch */
  z-index: 1000;         /* über allem */
}

/* Navigation */
.nav {
  display: flex;
  gap: 80px;
}

.nav a {
  text-decoration: none;
  color: var(--color-accent);    /* deine Goldfarbe */
  font-weight: 500;
}

/* Logo */
.logo img {
  height: 80px;          /* Logo-Größe */
}

/* Platz für den fixierten Header schaffen */
body {
  padding-top: 70px;     /* Höhe des Headers ausgleichen */
}

/* micro-interactions */
.card:hover {
  transform: translateY(-2px);
  transition: .2s ease;
}

/* gold accent lines */
.section-title {
  position: relative;
  text-align: center;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;              /* Länge des Strichs */
  height: 3px;              /* Dicke */
  background: var(--gold);  /* Farbe */
  margin: 10px auto 0;      /* auto = mittig */
}

/* ===== HERO SLIDER (isoliert) ===== */

.hero-slider {
  background: var(--color-background);
  color: var(--color-text);
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-caption {
  position: absolute;
  bottom: 15%;
  left: 10%;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.hero-caption h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-caption p {
  font-size: 1.4rem;
}


/* ===== site-footer ===== */

.site-footer {
  background: #000;
  color: var(--color-text);
  border-top: 3px solid var(--color-accent);
  padding: 20px 0;
  margin-top: 40px;
}

.site-footer .footer-content {
  display: flex;
  justify-content: space-between; /* verteilt links, Mitte, rechts */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* gleicher Abstand links/rechts */
  flex-wrap: wrap; /* für responsive Umbruch */
}

.site-footer .footer-left {
  flex: 1;
  text-align: left;
}

.site-footer .footer-center {
  flex: 1;
  text-align: center;
}

.site-footer .footer-right {
  flex: 1;
  text-align: right;
}

.site-footer a {
  color: var(--color-accent);
  margin: 0 10px;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .small {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--color-text);
}

/* Responsive: auf schmalen Bildschirmen untereinander */
@media (max-width: 768px) {
  .site-footer .footer-left,
  .site-footer .footer-center,
  .site-footer .footer-right {
    flex: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}


/* ===== Hochzeit Page ===== */

/* ===== Hero ===== */
.page-hochzeit .hero {
  text-align: center;
  padding: 30px 20px;       /* kompakter Abstand oben/unten */
  margin-bottom: 20px;      /* kontrollierter Abstand zum Content */
}

.page-hochzeit .hero h1 {
  margin: 0 0 10px;
  color: #FFD700;           /* Gold */
  font-size: 2.5rem;
  font-weight: bold;
}

.page-hochzeit .hero h2 {
  margin: 0 0 15px;
  color: #ccc;
  font-size: 1.5rem;
  font-weight: normal;
}

/* ===== Content-Block ===== */
.page-hochzeit .content-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 40px 30px 40px; /* Abstand links/rechts + unten */
}

.page-hochzeit .content-block img {
  flex: 0 0 30%;            /* Bild kleiner: 30% Breite */
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.page-hochzeit .content-block .text {
  flex: 1;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-hochzeit .content-block h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-hochzeit .content-block h4 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #ccc;
  font-weight: normal;
}

.page-hochzeit .content-block p {
  margin-top: 0;
  color: #ddd;
}



/* ===== Gästebuch ===== */
.page-hochzeit .guestbook-title {
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-hochzeit .guestbook-wrapper {
  max-width: 800px;      /* gleiche Breite für Eingabe + Ausgabe */
  margin: 0 auto;        /* mittig */
}

.page-hochzeit .guestbook-form {
  margin-bottom: 30px;
}

.page-hochzeit .guestbook-form input,
.page-hochzeit .guestbook-form textarea {
  width: 100%;           /* Felder füllen die Box */
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #555;
  border-radius: 4px;
  background: #333;
  color: #fff;
}

.page-hochzeit .guestbook-form button {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  border: 1px solid #FFD700;
  background: transparent;
  color: #FFD700;
  border-radius: 4px;
}

.page-hochzeit .guestbook-list {
  margin-top: 20px;
}

.page-hochzeit .guestbook-list .card {
  background-color: #333;   /* gleiche Farbe wie Eingabemaske */
  color: #fff;              /* weißer Text */
  border: 1px solid #555;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 15px;
  text-align: left;         /* Text linksbündig */
}
.page-hochzeit .card-body {
  display: flex;
  align-items: flex-start;
  gap: 15px; /* Abstand zwischen Bild und Text */
}

.page-hochzeit .guestbook-list .card-title {
  color: #FFD700;           /* Gold für Namen */
  font-weight: bold;
  text-align: left;

}

.page-hochzeit .guestbook-text {
  flex: 1;        /* Text nimmt den restlichen Platz */
  text-align: left;
  color: #fff;
}

.page-hochzeit .guestbook-img {
  width: 80px;   /* Bild deutlich kleiner */
  height: auto;
  border-radius: 4px;
  flex-shrink: 0; /* verhindert, dass das Bild gestreckt wird */
}
.page-hochzeit .guestbook-date {
  color: #fff;
  font-size: 0.9em;
}


/* ===== Galerie Container ===== */
.gallery-modern {
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== Karussell fixieren ===== */
#galleryCarousel .carousel-item {
  height: 400px !important;
}

#galleryCarousel .carousel-item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 10px;
}

/* ===== Thumbnail-Filmstreifen ===== */
.thumb-strip {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding: 15px 0;
}

.thumb-strip img {
  height: 80px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.thumb-strip img:hover {
  transform: scale(1.05);
  border-color: var(--color-accent);
}



/* ===== Lightbox ===== */
#lightboxOverlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

#lightboxOverlay img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

#lightboxOverlay .close {
  position: absolute;
  top: 20px; right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* ===== Dark Theme (nur Galerie) ===== */

body.dark {
  --color-background: #111;
  --color-text: #f0f0f0;
  --color-accent: #ffcc00;
  --color-accent-hover: #ffe066;

  --btn-bg: var(--color-accent);
  --btn-text: #111;
  --btn-hover-bg: var(--color-accent-hover);
  --btn-hover-text: #000;

  --link-color: var(--color-accent);
  --link-hover: var(--color-accent-hover);
}


/* ===== MUSIC THEME ===== */

body.music {
  --color-background: #0b0b12;
  --color-text: #e0e0ff;
  --color-accent: #8a2be2;        /* Neon-Lila */
  --color-accent-hover: #b57aff;  /* helleres Neon */

  --btn-bg: var(--color-accent);
  --btn-text: #fff;
  --btn-hover-bg: var(--color-accent-hover);
  --btn-hover-text: #fff;

  --link-color: var(--color-accent);
  --link-hover: var(--color-accent-hover);
}


/* =========================================
   RETRO THEME – Premium Analog Film Look
   ========================================= */


body.retro {
  --color-background: #1b120a;        /* warmes Dunkelbraun */
  --color-text: #f2e7d5;              /* warmes Retro-Beige */
  --color-accent: #d9a441;            /* Gold */
  --color-accent-hover: #f5c96b;
  --color-shadow: rgba(0,0,0,0.55);

  --btn-bg: var(--color-accent);
  --btn-text: #1b120a;
  --btn-hover-bg: var(--color-accent-hover);
  --btn-hover-text: #000;

  background-color: var(--color-background);
  color: var(--color-text);
}

/* Slider nur auf der Filmseite deaktivieren */
body.retro .hero-slider {
  display: none !important;
}
/* =========================================
   RETRO FILMISCHER HERO-BEREICH
   ========================================= */

body.retro .film-hero {
  position: relative;
  height: 280px;
  background: radial-gradient(circle at center, #3a2a1a 0%, #1b120a 80%);
  border-bottom: 3px solid rgba(217,164,65,0.4);
  box-shadow: inset 0 0 80px rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Filmgrain Overlay */
body.retro .film-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
  circle,
  rgba(255,255,255,0.03) 0%,
  rgba(255,255,255,0.03) 1%,
  transparent 1%,
  transparent 3%
);

  opacity: 0.25;
  pointer-events: none;
}

/* Letterbox Balken */
body.retro .film-hero::before {
  content: "";
  position: absolute;
  top: 0;
  height: 40px;
  width: 100%;
  background: rgba(0,0,0,0.7);
  box-shadow: 0 10px 20px rgba(0,0,0,0.8);
}

body.retro .film-hero .film-title {
  font-family: "Georgia", serif;
  font-size: 48px;
  color: var(--color-accent);
  text-shadow: 0 0 15px rgba(0,0,0,0.8);
  z-index: 2;
}

body.retro .film-hero .film-sub {
  font-size: 18px;
  color: var(--color-text);
  margin-top: 10px;
  opacity: 0.85;
  z-index: 2;
}
/* =========================================
   Retro Filmrollen-Trennlinie – GOLD METALLIC
   ========================================= */

@keyframes gold-shine {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

body.retro .filmroll-divider {
  background: linear-gradient(
    90deg,
    #6a4e1a,
    #b68b2a,
    #e7c46a,
    #f5e3a1,
    #d9a441,
    #b68b2a,
    #6a4e1a
  );
  background-size: 300px 100%;
  animation: gold-shine 4s linear infinite;
}


  border-top: 2px solid rgba(255,215,140,0.6);
  border-bottom: 2px solid rgba(255,215,140,0.6);

  box-shadow:
    inset 0 0 25px rgba(0,0,0,0.6),
    0 0 20px rgba(217,164,65,0.4);
}

/* Perforationslöcher oben */
body.retro .filmroll-divider::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 14px;

  background:
    radial-gradient(circle, rgba(0,0,0,0.9) 40%, transparent 41%) 0 0 / 42px 14px repeat-x;

  opacity: 0.9;
}

/* Perforationslöcher unten */
body.retro .filmroll-divider::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 14px;

  background:
    radial-gradient(circle, rgba(0,0,0,0.9) 40%, transparent 41%) 0 0 / 42px 14px repeat-x;

  opacity: 0.9;
}
@keyframes filmroll-move {
  0% { background-position: 0 0; }
  100% { background-position: -40px 0; }
}

body.retro .filmroll-divider::before,
body.retro .filmroll-divider::after {
  animation: filmroll-move 0.6s linear infinite;
}

/* Container */
.video-container {
  max-width: 900px;
  margin: 20px auto;
  background: #000;
  border: 2px solid #c9a23f;
  box-shadow: 0 0 20px rgba(201,162,63,0.4);
}

/* Video */
video {
  width: 100%;
  display: block;
  background: #000;
}

/* Controls */
.controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0d0d0d;
  padding: 12px;
  border-top: 2px solid #c9a23f;
  color: #c9a23f;
  font-family: "Segoe UI", sans-serif;
}

/* Buttons */
.btn-control {
  background: #111;
  border: 1px solid #c9a23f;
  color: #c9a23f;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 4px;
  transition: 0.2s ease;
}

.btn-control:hover {
  background: #c9a23f;
  color: #000;
  box-shadow: 0 0 10px #c9a23f;
}

/* Seekbar */
#seekBar {
  flex: 1;
  height: 6px;
  background: #333;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
}

/* Seekbar Thumb */
#seekBar::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #c9a23f;
  border-radius: 50%;
  box-shadow: 0 0 8px #c9a23f;
  cursor: pointer;
}

/* Volume Bar */
#volumeBar {
  width: 80px;
  appearance: none;
  height: 6px;
  background: #333;
  border-radius: 4px;
  cursor: pointer;
}

#volumeBar::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #c9a23f;
  border-radius: 50%;
  box-shadow: 0 0 8px #c9a23f;
}

/* Time Labels */
#currentTime, #duration {
  color: #c9a23f;
  font-size: 14px;
  min-width: 45px;
  text-align: center;
}




/* =========================================
   Filmstreifen-Look für Retro Cards
   ========================================= */
body.retro .film-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}


body.retro .film-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 2px solid transparent;
  background-image:
    linear-gradient(#1b120a, #1b120a),
    linear-gradient(135deg, #6a4e1a, #b68b2a, #e7c46a, #f5e3a1, #d9a441, #b68b2a, #6a4e1a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
  overflow: hidden;
  transition: 0.25s ease;
}
@keyframes perforation-flicker {
  0% { opacity: 0.85; }
  50% { opacity: 0.55; }
  100% { opacity: 0.85; }
}

body.retro .film-card::before,
body.retro .film-card::after {
  animation: perforation-flicker 1.2s infinite ease-in-out;
}


/* Filmstreifen-Löcher links */
body.retro .film-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* vorher -12px */
  width: 10px;
  height: 100%;
  background:
    radial-gradient(circle, rgba(0,0,0,0.8) 40%, transparent 41%) 0 0 / 10px 32px repeat-y;
  opacity: 0.9;
  pointer-events: none;
}

/* Filmstreifen-Löcher rechts */
body.retro .film-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* vorher -12px */
  width: 10px;
  height: 100%;
  background:
    radial-gradient(circle, rgba(0,0,0,0.8) 40%, transparent 41%) 0 0 / 10px 32px repeat-y;
  opacity: 0.9;
  pointer-events: none;
}



/* Poster-Bilder */
body.retro .film-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 2px solid rgba(217,164,65,0.4);
}

/* Card Body */
body.retro .film-body {
  padding: 25px;
  background: rgba(27, 18, 10, 0.85);
  color: var(--color-text);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Überschriften */
body.retro .film-body h3 {
  color: var(--color-accent);
  font-family: "Georgia", serif;
  margin-bottom: 12px;
  padding-bottom: 8px;
  position: relative;
}

body.retro .film-body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* Buttons */
body.retro .btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: 0.25s ease;
  margin-top: 15px;
  align-self: flex-start;
}

body.retro .btn:hover {
  transform: translateY(-2px);
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-text);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}




/* ===== WEDDING THEME ===== */

body.wedding {
  --color-background: #faf7f2;
  --color-text: #5a4a42;
  --color-accent: #d9a441;
  --color-accent-hover: #e8c16a;

  --btn-bg: var(--color-accent);
  --btn-text: #fff;
  --btn-hover-bg: var(--color-accent-hover);
  --btn-hover-text: #fff;

  --link-color: var(--color-accent);
  --link-hover: var(--color-accent-hover);
}

/* =========================================
   Wedding Theme – Dunkles Weinrot & Gold
   ========================================= */

body.wedding {
  --color-background: #2a0f14;
  --color-text: #f5e9e9;
  --color-accent: #d9a441;
  --color-accent-hover: #e8c16a;
  --color-shadow: rgba(0,0,0,0.5);

  --btn-bg: var(--color-accent);
  --btn-text: #2a0f14;
  --btn-hover-bg: var(--color-accent-hover);
  --btn-hover-text: #2a0f14;

  --link-color: var(--color-accent);
  --link-hover: var(--color-accent-hover);

  background-color: var(--color-background);
  color: var(--color-text);
}

/* Goldene Trennlinie */
body.wedding .divider {
  width: 160px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
  margin: 50px auto;
  border-radius: 2px;
}

/* Intro */
body.wedding .hochzeit-intro {
  text-align: center;
  padding: 60px 0;
}

body.wedding .hochzeit-intro h1,
body.wedding .hochzeit-intro h2 {
  font-family: "Georgia", serif;
  color: var(--color-accent);
}

/* Content-Blöcke */
body.wedding .content-block,
body.wedding .guestbook-container,
body.wedding .hochzeit-intro {
 display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  margin-bottom: 50px;
  backdrop-filter: blur(4px);
}

/* Bilder im Magazin-Layout */
body.wedding .content-block img {
  width: 30%;
  height: auto;
  border-radius: 14px;
  border: 2px solid rgba(217,164,65,0.6); /* Goldrahmen */
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
body.wedding .content-block .text {
  flex: 1;
}


/* Überschriften */
body.wedding h1,
body.wedding h2,
body.wedding h3 {
  color: var(--color-accent);
  font-family: "Georgia", serif;
  letter-spacing: 0.5px;
}

body.wedding h4 {
  font-weight: 400;
  opacity: 0.85;
}

/* Buttons */
body.wedding .btn,
body.wedding button {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  background-color: var(--btn-bg);
  color: var(--btn-text);
}

body.wedding .btn:hover,
body.wedding button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Gästebuch Inputs */
body.wedding .guestbook-form input,
body.wedding .guestbook-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(217,164,65,0.4);
  padding: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--color-text);
}
body.wedding .guestbook-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  margin-bottom: 50px;
  backdrop-filter: blur(4px);
}

body.wedding .guestbook-form input:focus,
body.wedding .guestbook-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 8px rgba(217,164,65,0.4);
}

/* =========================================
   STANDARD THEME – Edles Blau-Gold Premium
   ========================================= */

body.standard {
  --color-background: #0a1224;        /* tiefes, edles Nachtblau */
  --color-text: #e8e8f0;              /* weiches, helles Grau */
  --color-accent: #d4af37;            /* warmes Gold */
  --color-accent-hover: #f2c94c;      /* helleres Gold */
  --color-shadow: rgba(0,0,0,0.45);

  --btn-bg: var(--color-accent);
  --btn-text: #0a1224;
  --btn-hover-bg: var(--color-accent-hover);
  --btn-hover-text: #000;

  --link-color: var(--color-accent);
  --link-hover: var(--color-accent-hover);

  background-color: var(--color-background);
  color: var(--color-text);
}

/* =========================================
   STANDARD THEME – Edles Blau-Gold Premium
   ========================================= */

body.standard {
  --color-background: #0a1224;        /* tiefes Nachtblau */
  --color-text: #e8e8f0;              /* weiches Grau */
  --color-accent: #d4af37;            /* warmes Gold */
  --color-accent-hover: #f2c94c;      /* helleres Gold */
  --color-shadow: rgba(0,0,0,0.45);

  --btn-bg: var(--color-accent);
  --btn-text: #0a1224;
  --btn-hover-bg: var(--color-accent-hover);
  --btn-hover-text: #000;

  --link-color: var(--color-accent);
  --link-hover: var(--color-accent-hover);

  background-color: var(--color-background);
  color: var(--color-text);
}

/* =========================================
   STANDARD THEME – Premium Film Magazin FIXED
   ========================================= */

body.standard {
  --color-background: #0a1224;
  --color-text: #e8e8f0;
  --color-accent: #d4af37;
  --color-accent-hover: #f2c94c;

  --btn-bg: var(--color-accent);
  --btn-text: #0a1224;
  --btn-hover-bg: var(--color-accent-hover);
  --btn-hover-text: #000;

  background-color: var(--color-background);
  color: var(--color-text);
}

/* =========================================
   Magazin Grid
   ========================================= */

body.standard .magazine-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* =========================================
   Magazin Cards (Film-Poster Look)
   ========================================= */

body.standard .mag-card {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

body.standard .mag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
}

/* =========================================
   Poster-Bilder – FIX: exakt gleiche Größe
   ========================================= */

body.standard .mag-img img {
  width: 100%;
  height: 240px;        /* feste Höhe = alle gleich */
  object-fit: cover;    /* Bild wird sauber beschnitten */
  object-position: center;
  display: block;
}

/* =========================================
   Card Body – FIX: Text IMMER lesbar
   ========================================= */

body.standard .mag-body {
  padding: 25px;
  background: rgba(10, 18, 36, 0.85); /* dunkles Blau, NICHT transparent */
  color: var(--color-text);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =========================================
   Überschriften
   ========================================= */
/* Goldene Überschriften im Standard Theme */
body.standard h1,
body.standard h2,
body.standard h3,
body.standard .mag-body h3 {
  color: var(--color-accent) !important;
  font-family: "Georgia", serif;
  letter-spacing: 0.5px;
}

body.standard .mag-body h3 {
  color: var(--color-accent);
  font-family: "Georgia", serif;
  margin-bottom: 12px;
  padding-bottom: 8px;
  position: relative;
}

body.standard .mag-body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* =========================================
   Buttons
   ========================================= */

body.standard .btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: 0.25s ease;
  margin-top: 15px;
  align-self: flex-start;
}

body.standard .btn:hover {
  transform: translateY(-2px);
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-text);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
