/* Grundlegendes Styling */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #001f30; /* Dunkelblauer Hintergrund */
  color: #333333;
}

.page-wrapper {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff; /* Weißer Kasten für den Inhalt */
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Header */
.year-badge {
  font-weight: bold;
  color: #505050;
  margin-bottom: 10px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #00324B; /* Dunkelblaue Trennlinie */
  padding-bottom: 15px;
}

.profile-img {
  max-width: 120px;
  height: auto;
  border-radius: 4px;
}

.site-title {
  margin: 0;
  font-size: 2.2rem;
  color: #00324B; /* Dunkelblaue Überschrift */
}

/* Titel-Link im Header styling-neutral halten */
.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-title a:hover {
  text-decoration: underline;
}

.site-subtitle {
  margin: 5px 0 0 0;
  color: #505050;
}

/* Layout (Menü & Inhalt) */
.main-container {
  display: flex;
  gap: 30px;
}

.sidebar {
  width: 200px;
  flex-shrink: 0;
  background-color: #f0f4f8;
  padding: 15px;
  border-radius: 4px;
}

.menue {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menue li {
  margin-bottom: 12px;
}

.menue a {
  text-decoration: none;
  color: #00324B;
  font-weight: bold;
}

.menue a:hover {
  color: #006699;
  text-decoration: underline;
}

.hauptfenster {
  flex-grow: 1;
}

.hauptfenster h2 {
  color: #00324B;
  margin-top: 0;
}

/* Styling für die Lieder-Liste */
.song-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.song-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.song-date {
  color: #777;
  font-size: 0.9rem;
  white-space: nowrap;
}

.youtube-box {
  margin-top: 25px;
  padding: 12px;
  background-color: #f0f4f8;
  border-left: 4px solid #00324B;
}

.youtube-box a {
  color: #00324B;
  font-weight: bold;
  text-decoration: none;
}

.youtube-box a:hover {
  text-decoration: underline;
}

/* Styling für Impressum & Quellen-Box */
.sources-box {
  margin-top: 25px;
  padding: 15px;
  background-color: #f0f4f8;
  border-radius: 4px;
}

.sources-link {
  color: #00324B;
  font-weight: bold;
  text-decoration: none;
}

.sources-link:hover {
  text-decoration: underline;
}

/* Styling für Quellen-Liste & Schulprojekt-Hinweis */
.sources-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.sources-list li {
  margin-bottom: 12px;
}

.sources-list a {
  color: #00324B;
  font-weight: bold;
  text-decoration: none;
}

.sources-list a:hover {
  text-decoration: underline;
}

.disclaimer-box {
  margin-top: 25px;
  padding: 12px 15px;
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
  color: #555;
  font-size: 0.95rem;
}

.disclaimer-box p {
  margin: 0;
}

/* Styling für die persönliche Seite */
.post-date {
  color: #777777;
  font-size: 0.9rem;
  margin-top: -10px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #cccccc;
  padding-bottom: 8px;
}

.personal-post p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.personal-post .signature {
  margin-top: 25px;
  font-size: 1.05rem;
  color: #00324B;
}

/* Styling für eigene Werbung/Projekte */
.promo-box {
  margin: 25px 0;
  padding: 15px 18px;
  background-color: #f0f4f8;
  border-left: 4px solid #00324B;
  border-radius: 4px;
}

.promo-box h3 {
  margin-top: 0;
  color: #00324B;
  font-size: 1.1rem;
}

.promo-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.promo-links li {
  margin-bottom: 6px;
}

.promo-links a {
  color: #00324B;
  font-weight: bold;
  text-decoration: none;
}

.promo-links a:hover {
  text-decoration: underline;
}

/* Styling für die Datenschutz & Hinweise Box */
.info-card {
  margin-top: 20px;
  background-color: #ffffff;
  border: 1px solid #dcdfe3;
  border-left: 5px solid #00324B;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.info-card-header {
  display: flex;
  align-items: center;
  background-color: #f4f7f9;
  padding: 12px 18px;
  border-bottom: 1px solid #eef1f4;
}

.info-icon {
  display: inline-block;
  background-color: #00324B;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  font-weight: bold;
  margin-right: 12px;
}

.info-card-header h3 {
  margin: 0;
  color: #00324B;
  font-size: 1.1rem;
}

.info-card-body {
  padding: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
}

.info-card-body p {
  margin-top: 0;
  margin-bottom: 12px;
}

.info-card-body p:last-child {
  margin-bottom: 0;
}

/* --- STYLING FÜR DEN FOOTER (Ganz unten für höchste Priorität) --- */
.site-footer {
  width: 100%;
  clear: both;
  background-color: #00324B !important;
  color: #ffffff !important;
  text-align: center;
  padding: 15px 20px;
  margin-top: 30px;
  border-radius: 0 0 6px 6px;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0 auto !important;
  padding: 0;
  text-align: center !important;
  color: #ffffff !important;
  font-size: 0.9rem;
}

.site-footer a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: underline !important;
  color: #d0e8ff !important;
}

/* Mobil-Anpassung (Ganz am Ende) */
@media (max-width: 600px) {
  .main-container, .header-content {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
  }
}