/*------------------------------------------------------- General: */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

main {
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif !important;
}

.text-orange {
    color: #ff8c00;
}

.small-heading {
    background: #DCE8F5;
    color: #001f3f;
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: 500;
    padding: 10px 16px;
}

.small-heading-success {
    background: #d0e8dd;
    color: #198755;
    padding: 10px 16px;
    border-radius: 5px;
    font-weight: 500;
}

.small-heading-dark {
    background: #001f3f;
    color: #DCE8F5;
    padding: 10px 16px;
    border-radius: 5px;
    font-weight: 500;
}

/* Buttons: */

.btn-orange {
    background-color: #ff8c00 !important;
    color: #fff !important;
    border: 1.5px solid #ff8c00 !important;
    transition: .3s !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
}

.btn-orange:hover {
    background-color: transparent !important;
    color: #ff8c00 !important;
}

.btn-darkblue {
    background-color: #001f3f !important;
    color: #fff !important;
    border: 1.5px solid #001f3f !important;
    transition: .3s !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
}

.btn-darkblue:hover {
    background-color: transparent !important;
    color: #001f3f !important;
}

.btn-darkblue-outline {
    background-color: transparent !important;
    color: #001f3f !important;
    border: 1.5px solid #001f3f !important;
    transition: .3s !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
}

.btn-darkblue-outline:hover {
    background-color: #001f3f !important;
    color: #fff !important;
}

/*------------------------------------------------------- Navbar: */

.navbar,
.offcanvas-body,
.offcanvas-header {
    background-color: #fff;
}

.navbar {
    border-bottom: 2px solid #ff8c00;
    z-index: 1000 !important;
}

/* Make in-page anchors account for the sticky navbar height.
   JS sets --nav-height on :root; fallback to 80px if not available. */
[id] {
    scroll-margin-top: var(--nav-height, 80px);
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #001f3f !important;
    padding: 8px 0;
}

.nav-link:hover {
    color: #ff8c00 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -1px;
    left: 0;
    background: #ff8c00;
    transition: width .3s;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    background-color: #ff8c00;
    color: #fff;
    border-radius: 5px;
    box-shadow: none !important;
    padding: 7px;
}

.menu-icon {
    font-size: x-large;
}

.offcanvas .btn-close {
    box-shadow: none !important;
    background-color: #ff8c00 !important;
    border-radius: 5px;
    opacity: 1;
    padding: 12px;
}

/*------------------------------------------------------- Footer: */

.footer-wrapper {
    background: #DCE8F5;
    padding: 60px 0;
}

.footer-card {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.footer-card h5 {
    font-weight: 600;
    margin-bottom: 18px;
    color: #001f3f;
}

.footer-card ul {
    list-style: none;
    padding: 0;
}

.footer-card ul li {
    margin-bottom: 10px;
}

.footer-card ul li a {
    text-decoration: none;
    color: #001f3f;
    transition: .2s;
}

.footer-card ul li a:hover {
    color: #ff8c00;
    padding-left: 4px;
}

.footer-bottom {
    font-size: 14px;
    color: #777;
}

/*------------------------------------------------------- Mediaquery: */

@media (max-width: 991px) {

    .offcanvas-body .btn-orange {
        width: 100%;
    }

}

@media (max-width: 400px) {

    .footer-card {
        padding: 30px;
    }

}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 50px !important;
    }

    h2, .h2 {
        font-size: 45px !important;
    }

    h3, .h3 {
        font-size: 40px !important;
    }

    h4, .h4 {
        font-size: 35px !important;
    }

    h5, .h5 {
        font-size: 30px !important;
    }

    h6, .h6 {
        font-size: 20px !important;
    }

    p {
        font-size: 18px !important;
    }

    a {
        font-size: 18px !important;
    }

    li {
        font-size: 18px !important;
    }

    small {
        font-size: 17px !important;
    }
}

/* Custom Styling für das Sprach-Dropdown */
.lang-dropdown-btn {
    border-color: #ccc !important;
    color: #001f3f !important;
    background-color: transparent !important;
    font-weight: 500 !important;
    padding: 6px 12px !important;
}

.lang-dropdown-btn:hover,
.lang-dropdown-btn:focus {
    border-color: #ff8c00 !important;
    color: #ff8c00 !important;
}

/* Versteckt störende Google-Elemente & Popups */
body {
    top: 0 !important;
}

.goog-te-banner-frame, 
.goog-te-balloon-frame,
.skiptranslate,
#goog-gt-tt {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}