2025-07-30 00:35:15 +02:00
|
|
|
|
// ===========================
|
|
|
|
|
|
// TYPOGRAPHY – Schriftarten & Textstile
|
|
|
|
|
|
// ===========================
|
2025-06-06 18:12:46 +02:00
|
|
|
|
|
|
|
|
|
|
body {
|
2025-07-30 00:35:15 +02:00
|
|
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
color: #222;
|
2025-06-06 18:12:46 +02:00
|
|
|
|
-webkit-font-smoothing: antialiased;
|
2025-07-30 00:35:15 +02:00
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2025-06-06 18:12:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-31 01:33:44 +02:00
|
|
|
|
.hero-subtitle {
|
|
|
|
|
|
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
color: $text-dark;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.12em;
|
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-07-30 00:35:15 +02:00
|
|
|
|
// ---------------------------
|
|
|
|
|
|
// Überschriften-Stile
|
|
|
|
|
|
// ---------------------------
|
|
|
|
|
|
|
|
|
|
|
|
h1 {
|
2025-07-31 01:33:44 +02:00
|
|
|
|
font-size: clamp(2rem, 5vw, 3rem); // ~32px auf Desktop
|
2025-07-30 00:35:15 +02:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
color: #046e6e;
|
2025-06-06 18:12:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-31 01:33:44 +02:00
|
|
|
|
h1.page-title {
|
|
|
|
|
|
font-size: clamp(2.5rem, 6vw, 4rem);
|
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-07-29 19:10:33 +02:00
|
|
|
|
h2 {
|
2025-07-31 01:33:44 +02:00
|
|
|
|
font-size: clamp(1.25rem, 2vw, 1.5rem); // Reaktionsfähig statt fix
|
2025-07-30 00:35:15 +02:00
|
|
|
|
font-style: italic;
|
2025-06-06 18:12:46 +02:00
|
|
|
|
font-weight: 400;
|
2025-07-30 00:35:15 +02:00
|
|
|
|
line-height: 1.4;
|
2025-08-02 01:31:47 +02:00
|
|
|
|
margin-bottom: 5rem; // Erhöht den Abstand nach h2
|
2025-07-31 01:33:44 +02:00
|
|
|
|
color: #222;
|
2025-07-30 00:35:15 +02:00
|
|
|
|
}
|
2025-07-29 19:10:33 +02:00
|
|
|
|
|
2025-07-31 01:33:44 +02:00
|
|
|
|
|
2025-07-30 00:35:15 +02:00
|
|
|
|
h3 {
|
2025-07-31 01:33:44 +02:00
|
|
|
|
font-size: clamp(1.2rem, 1.8vw, 1.5rem);
|
2025-07-30 00:35:15 +02:00
|
|
|
|
font-weight: normal;
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
margin-bottom: 1rem;
|
2025-07-31 01:33:44 +02:00
|
|
|
|
color: inherit;
|
2025-06-06 18:12:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-31 01:33:44 +02:00
|
|
|
|
p {
|
2025-07-31 12:48:54 +02:00
|
|
|
|
font-style: normal;
|
|
|
|
|
|
font-size: clamp(1.3rem, 1.5vw, 1.4rem);
|
2025-07-31 01:33:44 +02:00
|
|
|
|
margin-bottom: 1.25rem;
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-07-30 00:35:15 +02:00
|
|
|
|
// ---------------------------
|
|
|
|
|
|
// Textausrichtung
|
|
|
|
|
|
// ---------------------------
|
2025-06-06 18:12:46 +02:00
|
|
|
|
|
2025-07-30 00:35:15 +02:00
|
|
|
|
.text-left { text-align: left; }
|
|
|
|
|
|
.text-right { text-align: right; }
|
|
|
|
|
|
.text-center { text-align: center; }
|
|
|
|
|
|
.text-justify { text-align: justify; }
|
2025-06-06 18:12:46 +02:00
|
|
|
|
|
2025-07-30 00:35:15 +02:00
|
|
|
|
// ---------------------------
|
|
|
|
|
|
// Text-Elemente
|
|
|
|
|
|
// ---------------------------
|
2025-06-06 18:12:46 +02:00
|
|
|
|
|
2025-07-30 00:35:15 +02:00
|
|
|
|
strong, b {
|
|
|
|
|
|
font-weight: 700;
|
2025-06-06 18:12:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-30 00:35:15 +02:00
|
|
|
|
p {
|
|
|
|
|
|
margin-bottom: 1.25rem;
|
2025-06-06 18:12:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-30 00:35:15 +02:00
|
|
|
|
// ---------------------------
|
|
|
|
|
|
// Listen
|
|
|
|
|
|
// ---------------------------
|
|
|
|
|
|
|
|
|
|
|
|
ul, ol {
|
|
|
|
|
|
padding-left: 1.5rem;
|
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------
|
|
|
|
|
|
// Links
|
|
|
|
|
|
// ---------------------------
|
|
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
|
color: #046e6e;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
transition: color 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
|
color: #F5A623;
|
|
|
|
|
|
text-decoration: underline;
|
2025-06-06 18:12:46 +02:00
|
|
|
|
}
|