:root {
  /* Light Theme Colors */
  --sidebar-bg: #F5F5F5;
  --primary-color: #4F46E5;
  --secondary-color: #3B82F6;
  --background-color: #FFFFFF;
  --border-color: #E5E7EB;
  --text-color: #111827;
  --text-secondary: #6B7280;
}

body.dark-theme {
  /* Dark theme colors */
  --sidebar-bg: #374151;
  --primary-color: #8B5CF6;
  --secondary-color: #60A5FA;
  --background-color: #0d111b;
  --border-color: #374151;
  --text-color: #F9FAFB;
  --text-secondary: #9CA3AF;
}

.main-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  flex: 1;
}

.main-view {
  flex: 1;
}


    .site-header {
      position: relative;
    }

    .logo-wrapper {
      position: relative;
      display: inline-block;
      bottom: -15px;
    }

    .logo-wrapper .logo {
      display: block;
      max-width: 80px; 
      height: auto;
      image-rendering: crisp-edges;
    }

    .logo-wrapper .moewe {
      position: absolute;
      bottom: 82%;      
      width: 35px;             
      height: auto;
      pointer-events: auto;
      cursor: pointer;
      animation: moewe-walk 8s linear infinite;
      transform-origin: center bottom;
    }

    .logo-wrapper .moewe.paused {
      animation-play-state: paused;
    }

  
    @keyframes moewe-walk {
  0% {
    transform: translateX(0px) translateY(0) scaleX(-1);
  }
  10% {
    transform: translateX(10px) translateY(-8px) scaleX(-1);
  }
  20% {
    transform: translateX(20px) translateY(0) scaleX(-1);
  }
  30% {
    transform: translateX(30px) translateY(-6px) scaleX(-1);
  }
  40% {
    transform: translateX(40px) translateY(0) scaleX(-1);
  }
  48% {
    transform: translateX(50px) translateY(-8px) scaleX(-1);
   }
  50% {
    transform: translateX(50px) translateY(0) scaleX(-1);
  }
  52% {
    transform: translateX(50px) translateY(-4px) scaleX(1);
  }
  55% {
    transform: translateX(45px) translateY(0) scaleX(1);
  }
  60% {
    transform: translateX(40px) translateY(-6px) scaleX(1);
  }
  70% {
    transform: translateX(30px) translateY(-8px) scaleX(1);
  }
  80% {
    transform: translateX(20px) translateY(0) scaleX(1);
  }
  90% {
    transform: translateX(5px) translateY(-6px) scaleX(1);
  }
  100% {
    transform: translateX(0px) translateY(0) scaleX(-1);
  }
}

/* ===== ZEITUNGS LOOK ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

.overview {
    width: 100%;
    min-height: 100%;
    padding: 2rem;
    background:
      linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.95)),
      url("images/paper_texture.jpg");

    background-size: cover;
    color: #111;
}

/* HEADER */

.overview .kurier-header {
    position: relative;
    overflow: hidden;

    background:
      linear-gradient(135deg, #111827 0%, #1f2937 100%);

    border-radius: 24px;

    min-height: 170px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 2rem 8%;

    box-shadow:
      0 10px 30px rgba(0,0,0,0.25);

    margin-bottom: 3rem;
}

.overview .kurier-header::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
      radial-gradient(circle at top right,
      rgba(255,255,255,0.15),
      transparent 40%);
}

.kurier-header img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.kurier-header .center {
    text-align: center;
}

.kurier-header .center h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: white;
    margin: 0;
    letter-spacing: 2px;
}

.kurier-header .center h4 {
    margin-top: 0.4rem;
    color: #d1d5db;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

@media (max-width: 768px) {

    .kurier-header img:last-of-type {
        display: none;
    }

}

/* PANEL */

.zeitung-panel {
    position: relative;

    background:
      linear-gradient(145deg,
      rgba(255,255,255,0.96),
      rgba(245,245,245,0.98));

    border-radius: 28px;

    padding: 4rem 3rem;

    box-shadow:
      0 20px 40px rgba(0,0,0,0.15);

    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.08);
}

.zeitung-overlay {
    position: absolute;
    inset: 0;

    background:
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.01) 2px,
        rgba(0,0,0,0.01) 4px
      );

    pointer-events: none;
}

.zeitung-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.zeitung-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    margin-bottom: 1.5rem;
}

.zeitung-title .material-symbols-outlined {
    font-size: 2.8rem;
    color: #111827;
}

.zeitung-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 0;
}

.zeitung-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;

    font-family: 'Cormorant Garamond', serif;
}

/* PASSWORD */

.password-area {
    display: flex;
    gap: 1rem;

    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.password-area input {
    width: 320px;

    padding: 1rem 1.4rem;

    border-radius: 16px;
    border: 2px solid #d1d5db;

    font-size: 1rem;

    background: white;

    transition: 0.25s;
}

.password-area input:focus {
    outline: none;
    border-color: #111827;

    box-shadow:
      0 0 0 4px rgba(17,24,39,0.1);
}

.password-area button {
    padding: 1rem 2rem;

    border: none;
    border-radius: 16px;

    background:
      linear-gradient(135deg, #111827, #374151);

    color: white;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: 0.25s;
}

.password-area button:hover {
    transform: translateY(-3px);

    box-shadow:
      0 10px 20px rgba(0,0,0,0.2);
}

#error-message {
    margin-top: 1.5rem;
    color: #dc2626;
    font-weight: 600;
}

/* TAG GRID */

.tage-grid {
    position: relative;
    z-index: 2;

    margin-top: .8rem;

    display: grid;

    grid-template-columns:
      repeat(auto-fit, minmax(180px, 1fr));

    gap: .7rem;
}

.tag-card {
    text-decoration: none;

    background:
      linear-gradient(145deg,
      #ffffff,
      #f3f4f6);

    border-radius: 22px;

    padding: 2rem 1rem;

    text-align: center;

    border: 1px solid rgba(0,0,0,0.08);

    transition: 0.3s;

    box-shadow:
      0 10px 20px rgba(0,0,0,0.08);
}

.tag-card:hover {
    transform:
      translateY(-8px)
      scale(1.03);

    box-shadow:
      0 20px 30px rgba(0,0,0,0.15);
}

.tag-card h3 {
    margin: 0;

    font-size: 2rem;

    color: #111827;

    font-family: 'Playfair Display', serif;
}

.tag-card p {
    margin-top: 0.7rem;

    font-size: 1rem;

    color: #6b7280;
}

/* HIDDEN */

.hidden {
    display: none;
}

/* MOBILE */

@media (max-width: 768px) {

    .kurier-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .kurier-header .center h1 {
        font-size: 2.5rem;
    }

    .zeitung-panel {
        padding: 2rem 1.5rem;
    }

    .zeitung-title h2 {
        font-size: 2rem;
    }

    .password-area input {
        width: 100%;
    }

    .password-area button {
        width: 100%;
    }
}

