@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primaryColor1: #e80000;
    --primaryColor2: #ffffff;
    --secondaryColor1: #981100;
    --accentColor1: #978e85;
    --font-family: 'Exo 2', sans-serif;
    --font-size: 18px;
    --border-radius: 30px;
    --box-padding: 10px 10px 40px 10px;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

h2 {
    text-align: center;
    margin: 0;   
    font-family: var(--font-family);
    font-size: 24px;
}

body, html {
    margin: 0;
    background-color: var(--secondaryColor1);
}

p {
    font-family: var(--font-family);
}

.wrapper {
    min-height: 100vh;
    background-image: url(freyung.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.header {
    display: flex;
    flex-direction: row;
    height: 70px;
}

/* Seitenlogo */
.header > div:nth-child(1) {
    background-image: url(freyung-logo-terminplaner.png);
    background-repeat: no-repeat;
    background-position: top;
    width: 152px;
}

/* Menüleiste */
.header > div:nth-child(2) {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: calc(100% - 152px);
    height: 50px;
    padding-top: 10px;
}

/* Menüicon und Menütext */
.header > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 10px;;
}

/* Einzelnes Menü-Icon */
.header > div > div > span:nth-child(1) {
    color: black;
    font-size: 22px;
}

/* Einzelnes Menü-Icon / Link */
.header > div > div > span:nth-child(1) > a:link {
    color: inherit;
    text-decoration: none;
}

/* Einzelnes Menü-Icon / Link */
.header > div > div > span:nth-child(1) > a:visited {
    color: inherit;
    text-decoration: none;
}

/* Text unterhalb Menü-Icon */
.header > div > div > span:nth-child(2) {
    padding-top: 5px;
    color: #000000;
    font-size: 11px;
    font-family: var(--font-family);
}

/* Kompletter Header für nicht eingeloggte */
.notLoggedInHeader {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 64px;
    background-color: var(--accentColor1);
}

/* Logo */
.notLoggedInHeader > div:nth-child(1) {
    box-sizing: border-box;
    padding: 10px 0 0 10px;
    background-color: #ffffff;
    border-radius: 0 0 30px 0;
    min-width: 150px;
}

/* Nav-Bereich */
.notLoggedInHeader > div:nth-child(2) {
    width: calc(100% - 150px);
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    margin: 0 10px 0 30px;
    align-items: center;
}

/* Nav-Logo und Text Container */
.notLoggedInHeader > div:nth-child(2) > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px 0 0;
}

/* Nav-Logo */
.notLoggedInHeader > div:nth-child(2) > div > div:nth-child(1) > span {
    margin: 0 0 6px 0;
    color: #f2f2f2;
}


.notLoggedInHeader > div:nth-child(2) > div > div:nth-child(1) > span > a:link,
.notLoggedInHeader > div:nth-child(2) > div > div:nth-child(1) > span > a:visited {
    text-decoration: none;
    color: #f2f2f2;
}

/* Nav-Text */
.notLoggedInHeader > div:nth-child(2) > div > div:nth-child(2) > span {
    font-family: var(--font-family);
    font-size: 12px;
    color: #d3d3d3;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: var(--primaryColor2);
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 80px;
    border-radius: var(--border-radius);
    padding: var(--box-padding);
    max-width: 800px;
    box-shadow: 0px 25px 60px 20px rgba(0, 0, 0, 0.42);
}

/* Trenner nach Überschrift in der Box */
.trennlinieHeadline {
    background-color: #888888;
    height: 2px;
    margin: 10px 0px 35px 0px;
}

/* Tabellenartige Übersicht 3 Spaltig */
.tabellenlayout3Spaltig {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-column-gap: 10px;
}

/* Die ersten 3 Einträge = Überschrift */
.tabellenlayout3Spaltig > span:nth-child(-n +3) {
    color: #b50000;
    font-weight: 700;
    font-family: var(--font-family);
}

/* Einzelner Tabelleneintrag */
.tabellenlayout3Spaltig > span {
    padding-bottom: 7px;
    border-bottom: 1px solid #bbbbbb;
    margin-bottom: 7px;
    color: #333333;
    font-weight: 400;
    font-family: var(--font-family);
}

/* Tabellenartige Übersicht 4 Spaltig */
.tabellenlayout4Spaltig {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-column-gap: 10px;
}

/* Die ersten 4 Einträge = Überschrift */
.tabellenlayout4Spaltig > span:nth-child(-n +4) {
    color: #b50000;
    font-weight: 700;
    font-family: var(--font-family);
}

/* Einzelner Tabelleneintrag */
.tabellenlayout4Spaltig > span {
    padding-bottom: 7px;
    border-bottom: 1px solid #bbbbbb;
    margin-bottom: 7px;
    color: #333333;
    font-weight: 400;
    font-family: var(--font-family);
}

.neueAnmeldung a:link {
    font-weight: 400;
    font-family: var(--font-family);
    color: #cc6b6b;
}

.neueAnmeldung a:visited {
    font-weight: 400;
    font-family: var(--font-family);
    color: #cc6b6b;
}

.neueAnmeldung > form {
    width: 100%;
}

.neueAnmeldung form input[type="text"],
.neueAnmeldung form input[type="password"] {
    width: 100%;
    margin-bottom: 30px;
    box-sizing: border-box;
    border: none;
    background-color: #e9e9e9;
    border-radius: 30px;
    padding: 3px 10px 5px 10px;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

.neueAnmeldung form input[type="submit"] {
    cursor: pointer;
    background-color: #f2b52c;
    margin: 0 0 45px 0;
    padding: 9px;
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 30px;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);   
}

.neueAnmeldung form span {
    font-weight: 400;
    font-family: var(--font-family);
    font-size: 12px;   
    color: #cbcbcb;
}

.nebeneinander {
    display: flex;
    width: 100%;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 400px 0px 100px 0px;
    font-family: var(--font-family);
    line-height: 16px;
    font-size: 12px;
    color: white;
}

.editUserSettings form input[type="text"], 
.editUserSettings form input[type="password"] {
    width: 100%;
    margin-top: 25px;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #dbdbdb;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

.editUserSettings form input[type="submit"] {
    cursor: pointer;
    background-color: #f2b52c;
    margin: 25px 0px;
    padding: 9px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 3px;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);   
}

.editUserSettings form label {
    color: #999999;
    font-family: var(--font-family);
    font-weight: 300;
}

.addNewVerein form input[type="text"]{
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #dbdbdb;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

.addNewVerein form label {
    color: #999999;
    font-family: var(--font-family);
    font-weight: 300;
}

.addNewVerein form input[type="submit"] {
    cursor: pointer;
    background-color: #f2b52c;
    margin: 25px 0px;
    padding: 9px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 3px;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);   
}

.addNewEvent form input[type="text"], 
.addNewEvent form input[type="password"],
.addNewEvent form select {
    width: 100%;
    margin-top: 25px;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #dbdbdb;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

.addNewEvent form label {
    margin: 11px 0px 0px 4px;
    padding: 2px 5px 3px 5px;
    color: #808080;
    font-family: var(--font-family);
    font-size: 10px;
}

.addNewEvent form input[type="submit"] {
    cursor: pointer;
    background-color: #f2b52c;
    margin: 25px 0px;
    padding: 9px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 3px;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);   
}

.kacheln {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    justify-content: center;
    margin-top: 90px;
}

.kacheln div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    padding: 5px 0px;
    background-color: #ffffff;
    width: 95px;
    height: 75px;
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.27);
    border-radius: var(--border-radius);
}

/* Kacheltitel */
.kacheln div span:nth-child(1) {
    font-weight: 400;
    font-family: var(--font-family);
    font-size: 13px;
    color: #333333;
}

/* Kacheltext */
.kacheln div span:nth-child(2) {
    font-weight: 700;
    font-family: var(--font-family);
    font-size: 29px;
    color: #800000;   
}

.formSettings form input[type="text"], 
.formSettings form input[type="password"],
.formSettings form select {
    margin: 3px 0 40px 0;
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #dbdbdb;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);
}

.formSettings form label {
    padding: 0px 5px 0px 7px;
    color: #808080;
    font-family: var(--font-family);
    font-size: 12px;
}

.formSettings form input[type="submit"] {
    cursor: pointer;
    background-color: #f2b52c;
    margin: 25px 0px 45px 0px;
    padding: 9px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 3px;
    font-weight: 400;
    font-family: var(--font-family);
    font-size: var(--font-size);   
}

.kalender {
    margin: 0 auto;
    margin-top: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 340px;
}

.monatstitel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: 600;
    font-family: var(--font-family);
    font-size: 14px;
    margin-bottom: 8px;
}

.kalendermonat {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 5px;
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.27);
    border-radius: 4px;
}

.kalendertagE,
.wochentage {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-row-gap: 3px;
    grid-column-gap: 3px;
}

.wochentage span {
    font-family: var(--font-family);
    font-size: 12px;
    color: #333333;   
    border: 1px solid #808080;
    border-radius: 2px;
    margin-bottom: 3px;
    padding: 2px;
}

.wochentage span:nth-child(6) {
    background-color: #e8e8e8
}

.wochentage span:nth-child(7) {
    background-color: #ffa5a5
}

.kalendertag {
    background-color: #dddddd;
    border-radius: 2px;
}

.kalendertag span {
    font-family: var(--font-family);
    font-size: 12px;
    color: #808080;
    padding: 2px 2px 2px 3px;
}

/* Mobile Menü */
.mobileMenu {
    display: none;
}

@media (max-width: 700px) {
    
    /* Mobile Menü toggeln */
    .header {
        height: auto;
    }
    
    /* Einzelnes Menü-Icon */
    .header > div > div > span:nth-child(1) {
        margin-right: 10px;
    }
    
    /* Menüicon und Menütext */
    .header > div > div {
        margin-bottom: 10px;
    }

    .header > div:nth-child(2) {
        flex-direction: column;
        height: auto;
    }
    
    .header > div > div {
        flex-direction: row;
        justify-content: flex-start;
        margin-left: 50px;
    }
}

.searchInfo {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: #aa0000;
}

.searchResultTitle {
    font-family: var(--font-family);
    font-size: 20px;
    color: darkblue;
}

.searchResultText {
    font-family: var(--font-family);
    font-size: 14px;
    color: #333333;
} 

.logViewContainer {
    margin: 40px 20px;
    border-radius: 6px;
    border: 1px solid white;
    padding: 2px 3px;
}

.logHeadline {
    text-align: center;
    margin: 30px 0 0 0;
    color: #ffffff;
    font-size: 18px;
}

.logEntrys {
    display: grid;
    grid-template-columns: repeat(12, auto);
    grid-column-gap: 3px;
}

.logEntrys div {
    color: #dddddd;
    font-family: 'Arial Narrow', sans-serif;
    font-size: 14px;
}

.listbg1 {
    background-color: #202020;
}

.listbg2 {
    background-color: #404040;
}

.statsForNerdsContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.statHeadline {
    font-family: 'Arial Narrow', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #999999;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0 5px 0 0;
}

.statText {
    font-family: 'Arial Narrow', sans-serif;
    font-size: 12px;
    color: #eeeeee;
    background-color: rgba(0, 0, 0, 0.2);  
    padding: 0 5px 0 0;
}

.videolektionen {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0 0 0;
}

/* Videobox mit Titel, Video und Beschreibung */
.videolektionen > div {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 340px;
    margin: 0 0 80px 0;
    padding: 30px 10px;
    background-color: #ffffff;
    border-radius: 30px;
}

/* Titel */
.videolektionen > div > div:nth-child(1) {
    font-family: var(--font-family);
    font-weight: bold;
    font-size: 22px;
    color: #000000;
}

/* Videocontainer */
.videolektionen > div > div:nth-child(2) {
    
}

/* Beschreibung */
.videolektionen > div > div:nth-child(3) {
    font-family: var(--font-family);
    font-size: 16px;
    color: #404040;   
}

















/* ENDE */

