/* Website kscp.de
*/

:root {
	--bg-lightGray:#eeeeee;
	--txt_gray:#595959;
	--txt_black:#111;
	--kscp-blue: #000078;
}

/* normalize behaviour */
* {box-sizing: border-box; outline: none; text-decoration: none; margin: 0; padding: 0; }
*:focus {outline: none; text-decoration: none;}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
	border: none;
	user-select: none;
	font-family: Helvetica, sans-serif;
	font-size: clamp(12px, 2vw, 20px); /*basis for all `em`*/
	text-align: center;
}

/* Frankfurt Hintergrundbild */
body {
    background-color: var(--bg-lightGray);
    background-image: url('img/fra.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
}

h1,h2 {
   color: var(--kscp-blue); 
   border-bottom: 1px solid var(--txt_gray);
   width: 100%;
   margin-top: 3rem;
   margin-bottom: 1.5rem;
}
p {
    margin-top: 0.8rem;
}
a:link, a:visited {
    color: var(--kscp-blue);
}
a:hover {
    transition: 300ms;
    color:blue
}

/* --- Navigationsbar oben --- */

#topBar {
    position: fixed;
	width: 100%;
	height: 5rem;
	top: 0px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: stretch;
	background-color:white;
	z-index: 10;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#topBar #logo {
    justify-self: flex-start;
    height: 100%;
    padding: 0.5rem;
    margin-right: auto;
}
#topBar button{
    font-family: inherit;
    font-size: 1.3rem;
    color: white;
    background-color: var(--kscp-blue);
    border: none;
    padding: 1rem;
}


/* --- Abschnitte --- */

.section{
    margin: auto;
    text-align: left;
    padding: 2rem;
    max-width: 50rem;
    background-color: var(--bg-lightGray);
    z-index: 2;
}

/* --- Profil --- */
#sec_Profil .card{
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
#sec_Profil .card .letter{
    font-family: 'Times New Roman', Times, serif;
    font-size: 4rem;
    color: var(--kscp-blue);
}
#sec_Profil .card .cap{
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    color: var(--kscp-blue);
}

/* --- Visitenkarten --- */
#sec_Team .card{
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
}
#sec_Team .card img{
    align-self: flex-start;
    width: 20vw;
    object-fit: contain;
    height: auto;
    margin-right: 2rem;
}
#sec_Team .card .name{
    font-weight: bold;
    margin-bottom: 0.3rem;
}
#sec_Team .card .role{
    font-style: italic;
    margin-bottom: 2rem;
}

footer {    
    width: 100%;
    position: fixed;
	bottom: 0px;
    border-top: solid 1px var(--kscp-blue);
    background-color: var(--bg-lightGray);
}
footer button {
    border: none;
    background: none;
    padding: 0.5rem;
}