/* style.css */

html {
	margin: 0;
    padding: 0;
	}

body {
	background-color: #fff6ef;
	color: #565656;
	margin: 0;
    padding: 0;
	font-family: 'ReadexPro';
	}

@font-face {
  font-family: 'ReadexPro';
  src: url('/ReadexPro-VariableFont_HEXP,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument';
  src: url('/InstrumentSerif-Regular.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

h1 {
	font-size: clamp(2.5em, 8vw, 6em);
	color: #565656;
	text-align: center;
	max-width: 100%;
}

h2 {
	padding-top: 1em;
	font-size: clamp(2.2em, 5vw, 3.5em);
	color: #565656;
}

h3 {
	font-size: clamp(1.8em, 3.5vw, 2.5em);
	color: #565656;
	text-align: left;
    margin-top: 1em;
	margin-bottom: 0.3em;
}

h4 {
	color: #565656;
	font-size: clamp(1.4em, 2.7vw, 2.0em);
	margin-bottom: 0em;
}

h5 {
	color: #565656;
	font-size: clamp(1.2em, 1.9vw, 1.5em);
	margin-bottom: 0em;
}

li {
  margin-bottom: 10px; 
  text-align: left;
}

.tight-list li {
  margin-bottom: 0;
}

.no-bull {
    list-style: none;
}

header {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
	text-align: center;
}

header p {
    font-size: 1.5em;	
	margin-bottom: 5em;
}

.site-header-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.site-header-full-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

a {
    color: #0099ff;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
    color: #c26148;
}

hr {
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
}

.short-hr {
    width: 4em;
    margin: 2em auto;
}

.no-top-space {
    padding-top: 0;
    margin-top: 0;
}

.no-bottom-space {
    padding-bottom: 0;
    margin-bottom: 0;
}

.blau {
  color: #0094ff;
}

.grün {
  color: #c0d569;
}

.braun {
  color: #c26148;
}

.page-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
	max-width: 900px;
	margin: 0 auto;
	padding-top: 0px;
    min-height: 100vh;
	/*background-color: red;*/
}

.content {
	font-size: 1.31em;
	text-align: justify;
	padding: 0 5px;
	max-width: 900px;
	margin: 0 auto;
	}

.special-container {
    width: 100%;
    margin-top: 10px;
    padding: 0;
    background-color: #c26148;
    color: #ffffff;
    font-size: 1.2em;
}

.special-container-content {
    padding: 3rem 14rem;
}

.special-button-link {
    display: inline-block;
    padding: 15px 25px;
    border: 3px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.special-button-link:hover {
    background-color: #ffffff;
    color: #c26148;
}

.centcont {
    text-align: center;
}

.brown-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #c26148;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
	transition: all 0.3s ease;
}

.brown-button:hover {
    color: #c26148;
    background-color: #e7bc70;
}

.blue-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #e2f6ff;
    border: 1px solid #0099ff;
    border-radius: 8px;
    color: #565656;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
	transition: all 0.3s ease;
}

.blue-button:hover {
    color: #565656;
    background-color: #e9f7ef;
    border: 1px solid #c0d569;
}

/* Text-Bild Layout mit Flexbox */
.text-image-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: -2em 0;
}

.text-image-content {
    flex: 1;
	text-align: left;
}

.text-image-picture {
    flex-shrink: 0;
}

.text-image-picture img {
    max-width: 300px;
    height: auto;
	margin: 2em auto;
	display: block;
}

.quote-container {
    width: 90%;
    margin: 2em auto;
    padding: 1.5em;
    border: 1px solid #c26148;
    border-radius: 8px;
	font-family: 'Instrument';
	font-weight: 400;
	letter-spacing: -0.2px;
    box-sizing: border-box;
}

.quote-author {
    text-align: right;
	font-family: 'Oswald';
	font-size: 1em;
    font-style: normal;
	font-weight: bold;
    margin-top: 1em;
    color: #c26148;
}


@media (min-width: 601px) and (max-width: 780px) { 

    .page-wrapper {
        max-width: 100% !important;
        width: 100%;
        box-sizing: border-box;
    }
	
    .special-container-content {
        padding: 2rem 4rem;
    }

    .text-image-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .text-image-picture {
        text-align: center;
    }
    
    .text-image-picture img {
        max-width: 100%;
    }	

}

@media (min-width: 300px) and (max-width: 600px) {

    .page-wrapper {
        max-width: 100% !important;
        width: 100%;
        box-sizing: border-box;
    }
	
    .special-container-content {
        padding: 1.5rem 0.5rem;
    }

    .text-image-container {
        flex-direction: column;
        gap: 15px;
    }
	
	.text-image-picture {
        order: -1;
        text-align: center;
		margin: 2em auto;
    }	
	
    .text-image-picture img {
        max-width: 90%;
        width: auto;
        height: auto;
		display: block;
    }
    
    .text-image-content h5 {
        text-align: center;
        margin-top: 0.5em;
    }
}	

    .quote-container {
        width: 95%;
        padding: 1em;
    }