/*
Projekt Echos der Stille
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Zweck       für jede Seite geltende Stile der Website       +
Datei       genStyle.css                                    +
erstellt    21.09.2025                                      +
geändert    24.09.2025                                      +
Autor       R.F. Böhmer                                        +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/

/* Schriftgrößen für verschiedene Viewportbreiten */
html {
    font-size: clamp(1rem,2.5vw,1.3rem);
}

/* Schriftarten Montserrat und Lora einbinden
   ------------------------------------------ */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora/Lora-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora/Lora-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

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

/* Body */
body {
    font-family: 'Montserrat', sans-serif;
    padding-top: 60px; /* Platz für den festen Header */
    line-height: 1.6;
    background: #F5F5F5;
    color: #404040;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.header nav ul li a {
    text-decoration: none;
    color: #f6f6f6;
    padding: 0 15px;
    font-weight: normal;
}

.header nav ul li a:hover {
    background: #e6e6e6;
    color: #333;
}

/* Hauptinhalt (Beispiel) */
.content {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.footer nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 0 15px;
}

.footer nav ul li a:hover {
    background: #e6e6e6;
    color: #333;
}
