/* OPTIMIERTES CSS FÜR ELKES LIVE-WEBSITE */
/* Eisblau-Design mit Raleway + zwei schöne Kästen */

/* Grundlayout */
body {
  font-family: 'Raleway', sans-serif;
  background-color: #F4F9F9;
  color: #2C3E50;
  margin: 0;
  line-height: 1.6;
text-align: justify !important; 
}

/* Navigation */
.nav {
  background: #f5f5f5;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #555;
}

/* Content-Bereich */
.content {
  padding: 30px;
  background-color: #ffffff;
  color: #2C3E50;
  max-width: 800px;
  margin: 0 auto;
text-align: justify !important; 
}

/* Überschriften */
h1 {
  font-size: 2em;
  color: #48D1CC;
  border-bottom: 2px solid #aadfe0;
  margin-bottom: 0.5em;
  font-weight: 600;
}

h2 {
  font-size: 1.6em;
  color: #3CB3B0;
  border-bottom: 1px solid #aadfe0;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 500;
}

h3 {
  font-size: 1.3em;
  color: #3CB3B0;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: 500;
}

/* Textformatierungen */
strong {
  font-weight: bold;
  color: #000;
}

em {
  font-style: italic;
  color: #555;
}

/* Absätze */
p {
  margin-bottom: 1em;
}

/* Listen */
ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.3em;
}

/* Zeitangabe */
.zeitangabe {
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95em;
}

/* ZWEI SCHÖNE KÄSTEN - Eisblau-Design */

/* Blauer Kasten (Info/Gedanken) */
.blue-box {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-left: 4px solid #2196f3;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(33,150,243,0.1);
  font-style: italic;
}

/* Türkis-Kasten (Highlights/Wichtiges) - passend zum Eisblau */
.highlight-box {
  background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
  border-left: 4px solid #00897b;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,137,123,0.1);
  font-weight: 500;
}

/* Alternative: Grüner Kasten (falls Türkis nicht gefällt) */
.green-box {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  border-left: 4px solid #4caf50;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(76,175,80,0.1);
  font-weight: 500;
}

/* Divider */
.divider {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #48D1CC, #3CB3B0);
  margin: 30px 0;
  border-radius: 2px;
}

/* Section Break */
.section-break {
  height: 20px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    #E8F4F4 10px,
    #E8F4F4 20px
  );
  margin: 25px 0;
  border-radius: 4px;
}

/* BILD-GRÖSSEN */
.bild-klein {
  width: 300px;
  max-width: 100%;
  border: 2px solid #aadfe0;
  border-radius: 8px;
  margin: 15px 0;
  display: block;
}

.bild-mittel {
  width: 500px;
  max-width: 100%;
  border: 2px solid #48D1CC;
  border-radius: 8px;
  margin: 15px 0;
  display: block;
}

.bild-original {
  max-width: 100%;
  border: 3px solid #3CB3B0;
  border-radius: 8px;
  margin: 15px 0;
  display: block;
}

/* Bildnachweis */
.bildnachweis {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.9em;
  color: #666;
  font-style: italic;
}

/* Navigation unten */
.navigation {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid #E8F4F4;
}

.navigation a {
  color: #48D1CC;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border: 1px solid #aadfe0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navigation a:hover {
  background-color: #E8F4F4;
  color: #3CB3B0;
}

/* Zitate */
blockquote {
  background-color: #E6FAFA;
  border-left: 4px solid #48D1CC;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    padding: 20px 15px;
  }
  
  h1 {
    font-size: 1.8em;
  }
  
  h2 {
    font-size: 1.4em;
  }
  
  .bild-mittel, .bild-klein {
    width: 100%;
  }
  
  .navigation {
    flex-direction: column;
    gap: 10px;
  }
}

/* Google Fonts Import für Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,0,1;wght@300;400;500;600;700&display=swap');