:root {
    --pageWidth:        800px;
    --raster15:         15px;
    --raster30:         30px;
    --raster90:         90px;
    
    --sizeSmallTXT:     16px;
    --sizeTXT:          16px;
    --sizeLargeTXT:     22px;
    
    --base:             #970f20; /* rot */
    --bodyBG:           #706f6f; /* dunkelgrau */
    --bodyTXT:          #706f6f; /* dunkelgrau */
    --linkTXT:          #706f6f; /* dunkelgrau */
    --highlightBG:      #970f20; /* rot */
    --highlightTXT:     #ffffff; /* weiss */
    --lightBG:          #f5f5f5; /* hellgrau */
    --lightTXT:         #706f6f; /* dunkelgrau */
    --linkFooterTXT:    #ffffff; /* weiss */
}


/* nunito-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/nunito-v26-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nunito-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/nunito-v26-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* GENERAL */
body {
	background: var(--bodyBG);
	color: var(--bodyTXT);
	
	font-family: 'Nunito';
	font-size: var(--sizeTXT);
	font-weight: 400;
}

a {
	color: var(--linkTXT);
	text-decoration: none;
}

h1, h2 {
    font-size: var(--sizeLargeTXT);    
    font-weight: 800;
}

h1 span {
    color: var(--base);
    font-size: var(--sizeSmallTXT);
    font-weight: 300;
}

img {
    height: auto;
    max-width: 100%;
}

p {
	margin-top: 20px;
}

ul {
    padding: 0 0 0 20px;

}

ul li {
	
}

/* CLASSES */
.logo,
.wrapper .highlight,
.wrapper .light,
.wrapper .bottom {
    padding: var(--raster15) var(--raster90);
}

.wrapper .highlight {
    background: var(--highlightBG);
	color: var(--highlightTXT);
}

.wrapper .light {
    background: var(--lightBG);
    color: var(--lightTXT);
}

.adress,
.phone,
.mail {
    background: url('../images/icon-adresse_Carmen_Podologie.png') no-repeat;
    background-size: 20px;
    display: block;
    font-weight: 300;
    margin-bottom: var(--raster15);
    padding-left: var(--raster30);
}

.phone {
    background-image: url('../images/icon-telefon_Carmen_Podologie.png');
    background-position-y: 5px;
    font-weight: 800;
    font-size: var(--sizeLargeTXT);
}

.mail {
    background-image: url('../images/icon-mail_Carmen_Podologie.png');
}

.wrapper .bottom {
    color: var(--base);
    font-size: var(--sizeTXT);
    text-align: center;
}


/* WRAPPER & FOOTER */
div.wrapper {
	background: #fff;
	height: auto;	
	margin: 100px auto 0 auto;
	width: var(--pageWidth);
}

footer.footer {
    color: #fff;
    font-size: 12px;
    margin: 0 auto;
    padding-top: 10px;
	width: var(--pageWidth);
}

footer.footer a {
    color: var(--linkFooterTXT);
}

/* MOBILE */
@media(max-width: 950px) {
    .logo,
    .wrapper .highlight,
    .wrapper .light,
    .wrapper .bottom {
        padding: var(--raster15);
    }
    
    div.wrapper,
    footer.footer {
        margin: 0;
        width: 100%;
    }

    footer.footer {
        padding: var(--raster15) 0;
        text-align: center;        
    }
}




