﻿/* Basisstile */
html {
    background-color: black;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: white;
}

/* Navigation */
.navbar-nav .nav-item .nav-link {
    color: #a3a177;
}

.navbar-nav .nav-item.active .nav-link {
    color: #333;
}

.custom-navbar {
    padding: 0;
    background-color: #ffc017;
    border-bottom: 1px solid black;
}

.navbar-toggler {
    border: none;
}

.navbar-brand {
    color: black;
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
}

.custom-navbar .navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    text-align: right;
    padding-right: 15px;
}

.nav-item {
    display: block;
}

/* Header */
.header-section {
    background-color: #ffc017;
    padding: 0;
    margin-top: 0;
    height: 250px;
    border-bottom: 1px solid #969595;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#überschrift_1,
#überschrift_2 {
    font-family: 'Open Sans', sans-serif;
    color: black;
}

#überschrift_1 {
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.2;
}

#überschrift_2 {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Hauptinhalte */
#main {
    background-color: white;
}

.col,
.col-12 {
    padding-left: 0;
    box-shadow: 3px 3px 10px 0px #969595, -2px -2px 5px 0px #fcfafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Kennzahlen und Überschriften */
.kennzahlenÜberschrift,
.kennzahlen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.kennzahlenÜberschrift {
    font-size: 22px;
    color: #969595;
}

.kennzahlen {
    font-size: 34px;
    color: #ffc017;
    margin-bottom: 10px;
}

#kennzahlen_col_1,
#kennzahlen_col_2,
#kennzahlen_col_3 {
    padding: 20px 0;
    margin: 20px 0;
	
}

#kennzahlen_col_1 {
    margin-right: 15px;
}

#kennzahlen_col_2 {
    margin: 20px 15px;
	display: flex;
	justify-content: center; 
	align-items: center;     
	height: 100%;            
}


#kennzahlen_col_3 {
    margin-left: 15px;
	display: flex;
	justify-content: center; 
	align-items: center;     
	height: 100%;  
}

.img-fluid {
	width: 19px;
	height: 48px;
	margin: 20px 0;
  
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: center;
}

.button {
    background-color: black;
    border: none;
    color: white;
    padding: 12px 48px;
    font-size: 20px;
    font-weight: bold;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Karte */
#map {
    height: 695px;
    margin-left: 0;
    margin-bottom: 20px;
    border: 2px solid white;
    box-shadow: 3px 3px 10px 0px #969595, -2px -2px 5px 0px #fcfafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.popup-content {
    width: 260px;
    height: 385px;
}

.popup-title {
    font-size: 18px;
}

.popup-image {
    max-height: 350px;
    margin-top: 10px;
}

/* Footer */

#copyright {
    color: white;
    font-size: 14px;
    color: white;
    text-decoration: none;

}

.footer {
    background-color: black;
    font-size: 14px;
    padding: 10px 0;
    margin-top: 10px;
    line-height: 14px !important;
}

.footer-link {
    color: white;
    margin: 0 5px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: #c0c0c0;
    text-decoration: underline;
}

.text-right {
    text-align: right;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation */
    .navbar-brand {
        font-size: 32px;
        margin-left: 20px;
    }

    /* Header */
    .header-section {
        height: 200px;
    }

    #überschrift_1 {
        font-size: 20px;
        margin: 10px 0;
    }

    #überschrift_2 {
        font-size: 12px;
        margin-bottom: 5px;
    }

    /* Hauptinhalte */
    .col,
    .col-12 {
        box-shadow: 3px 3px 10px 0px #969595, -2px -2px 5px 0px #fcfafa;
    }

    /* Kennzahlen und Überschriften */
    .kennzahlenÜberschrift {
        font-size: 14px;
        text-align: center;
    }

    .kennzahlen {
        font-size: 18px;
    }

    /* Kennzahlen Spalten */
    #kennzahlen_col_1,
    #kennzahlen_col_2,
    #kennzahlen_col_3 {
        padding: 10px 0;
        margin: 10px 0;
    }

    /* Karte */
    #map {
        height: 200px;
        margin: 10px 20px 20px 20px;
    }

    /* Buttons */
    .button {
        padding: 6px 24px;
        font-size: 12px;
        margin-top: 10px;
        border-radius: 40px;
    }

    #statistik {
        margin-top: 5px;
        margin-right: 5px;
        margin-left: 5px;
    }

    /* Popup-Inhalt */
    .popup-content {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        padding: 10px;
    }

    .popup-title {
        font-size: 10px;
    }

    .popup-image {
        max-height: 100px;
    }

    #copyright {
        font-size: 10px;
    }

    .footer-link {
        font-size: 10px;
    }
}
