/* style.css */

html {
	Font-size: 62.5%;
	margin: 0;
    padding: 0;
	}

body {
	background-color: #fff6ef;
	color: #565656;
	margin: 0;
    padding: 0;
	font-family: 'ReadexPro';	
	font-size: 1.6rem;
	}

@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(3.2rem, 6vw, 8rem);
	color: #565656;
	text-align: center;
	max-width: 100%;
    margin-top: 0.8rem;
	margin-bottom: 1.6rem;
}

h2 {
	padding-top: 1.6rem;
	font-size: clamp(3.5rem, 5vw, 5.6rem);
	color: #565656;
}

h3 {
	font-size: clamp(2.9rem, 3.5vw, 4rem);
	color: #565656;
	text-align: left;
    margin-top: 1.6rem;
	margin-bottom: 0.5rem;
}

h4 {
	color: #565656;
	font-size: clamp(2.2rem, 2.7vw, 3.2rem);
	margin-bottom: 0;
}

h5 {
	color: #565656;
	font-size: clamp(1.9rem, 1.9vw, 2.4rem);
	margin-bottom: 0;
}

li {
  margin-bottom: 1rem; 
  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: 2.4rem;	
	margin-bottom: 8rem;
}

.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;
}

a.revlink {
    color: #c26148;
	text-decoration: none;
	font-weight: bold;
}

a.revlink:hover {
    color: #0099ff;
}

hr {
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
}

.short-hr {
    width: 6.4rem;
    margin: 3.2em auto;
}

.no-top-space {
    padding-top: 0;
    margin-top: 0;
}

.no-bottom-space {
    padding-bottom: 0;
    margin-bottom: 0;
}

.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.8rem;
	text-align: justify;
	padding: 0 1rem;
	max-width: 900px;
	margin: 0 auto;
	}

.special-container {
    width: 100%;
    margin-top: 1rem;
    padding: 0;
    background-color: #c26148;
    color: #ffffff;
    font-size: 1.9rem;
}

.special-container-content {
    padding: 3rem 14rem;
}

.special-button-link {
    display: inline-block;
    padding: 1.5rem 2.5rem;
    border: 3px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.9rem;
    transition: all 0.3s ease;
}

.special-button-link:hover {
    background-color: #ffffff;
    color: #c26148;
}

.centcont {
    text-align: center;
}

.brown-button {
    display: inline-block;
    padding: 1.5rem 2.5rem;
    background-color: #c26148;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.9rem;
	transition: all 0.3s ease;
}

.brown-button:hover {
    color: #c26148;
    background-color: #e7bc70;
}

.blue-button {
    display: inline-block;
    padding: 1.5rem 2.5rem;
    background-color: #e2f6ff;
    border: 1px solid #0099ff;
    border-radius: 8px;
    color: #565656;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.9rem;
	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: 95%;
    margin: 3.2rem auto;
    padding: 2.4rem;
    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: 1.6rem;
    font-style: normal;
	font-weight: bold;
    margin-top: 1em;
    color: #c26148;
}

.infobox {
    width: 95%;
    margin: 3.2rem auto;
    padding: 2.4rem;
    border: 1px solid #c26148;
	background-color: #e2d7c5;
    border-radius: 8px;
	font-family: 'Oswald';
	font-weight: 400;
	letter-spacing: -0.2px;
    box-sizing: border-box;
}

.infobox.alt {
	background-color: #f2ece3;
}

.infobox h3 {
	color: #c26148;
	font-weight: 600;
	font-size: 2rem;
	margin: 0;
}

.mt-05 {
    margin-top: 0.5rem;
}

.mt-10 {
    margin-top: 1rem;
}

.mt-20 {
    margin-top: 2rem;
}

.mt-30 {
    margin-top: 3rem;
}

.mt-40 {
    margin-top: 4rem;
}

.mb-05 {
    margin-bottom: 0.5rem;
}

.mb-10 {
    margin-bottom: 1rem;
}

.mb-20 {
    margin-bottom: 2rem;
}

.mb-30 {
    margin-bottom: 3rem;
}

.mb-40 {
    margin-bottom: 4rem;
}

.ghost-v-05 {
    height: 0.5rem;
}

.ghost-v-10 {
    height: 1rem;
}

.ghost-v-20 {
    height: 2rem;
}

.ghost-v-30 {
    height: 3rem;
}

.ghost-v-40 {
    height: 4rem;
}

@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: 3.2rem 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 , .alert-braun {
        width: 95%;
        padding: 1.6rem;
    }
}	

