/* Hauptfarben Blau und Weiß */
body {
    font-family: Verdana, sans-serif;
}

/* h1, h2 {
    color: #ffffff;
} */
.main-title {
    font-size: 60px;
}

.bg-primary {
    background-color: #003366; /* Dunkelblau */
}

.text-primary {
    color: #003366;
}

.navbar-dark .navbar-brand, .navbar-light .nav-link {
    font-size: large;
    color: white;
}
.navbar-dark .nav-link:hover {
    color: #80CAFF;
}
.navbar-toggler {
    border-color:#3f678f;
}

.btn-primary {
    /* background-color: #2e88e2; */
    background-color: #3f678f;
    border-color: #3f678f;
}

.btn-primary:hover {
    background-color: #2e88e2;
    border-color: #2e88e2;
    /* background-color: #80CAFF;
    border-color: #80CAFF; */
}

/* Hero Section mit Hintergrundbild */
.hero-section {
    background: url('../images/titel.jpg') no-repeat center center;
    background-size: cover;
    height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: left;
}

.hero-section h1, .hero-section p {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dunkler Overlay */
    z-index: 1;
}

@media (max-width: 992px) {
    .hero-section {
        height: 60vh;
    }
    .logo-über {
        display: none;
    }
    .main-title {
        font-size: 50px;
    }
}

.card {
    background-color: #80D5FF4A;
    /* background-color: #2e88e2; */
    color: white;
}

#services {
    background-color: #3f678f;
}

.fieldinput {
    border-color: gray;
}
/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3f678f;
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none; /* Startet versteckt */
    z-index: 1000;
}

.cookie-content p {
    margin: 0;
    padding: 0;
}
.nav-link {
    color: white;
}
.cookie-content a {
    color: #ffa500; /* Orange */
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #ff8c00; /* Helleres Orange */
}

.cookie-content button {
    margin-top: 10px;
}

/* button:hover {
    background-color: grey;
} */
.navbar-toggler:focus {
    box-shadow: none;
}

.kanit-thin {
    font-family: "Kanit", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.cta-section {
    background-color: #3f678f; /* Hintergrundfarbe */
    color: white; /* Schriftfarbe */
}

.cta-section h2 {
    font-size: 2.5rem; /* Größe der Überschrift */
    margin-bottom: 20px; /* Abstand unter der Überschrift */
}

.cta-section p {
    font-size: 1.25rem; /* Größe des Textes */
    margin-bottom: 30px; /* Abstand unter dem Text */
}

.cta-section .btn {
    padding: 10px 30px; /* Padding für den Button */
    font-size: 1.2rem; /* Größe des Buttons */
    border-radius: 5px; /* Abrundung der Ecken */
}

@font-face {
    font-family: 'Kanit';
    src: url('../font/Kanit/Kanit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kanit';
    src: url('../font/Kanit/Kanit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Kanit';
    src: url('../font/Kanit/Kanit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
  
.kanit-extralight {
font-family: "Kanit", sans-serif;
font-weight: 200;
font-style: normal;
}

.kanit-light {
font-family: "Kanit", sans-serif;
font-weight: 300;
font-style: normal;
}

.kanit-regular {
font-family: "Kanit", sans-serif;
font-weight: 400;
font-style: normal;
}

.kanit-medium {
font-family: "Kanit", sans-serif;
font-weight: 500;
font-style: normal;
}

.kanit-semibold {
font-family: "Kanit", sans-serif;
font-weight: 600;
font-style: normal;
}

.kanit-bold {
font-family: "Kanit", sans-serif;
font-weight: 700;
font-style: normal;
}

.kanit-extrabold {
font-family: "Kanit", sans-serif;
font-weight: 800;
font-style: normal;
}

.kanit-black {
font-family: "Kanit", sans-serif;
font-weight: 900;
font-style: normal;
}

.kanit-thin-italic {
font-family: "Kanit", sans-serif;
font-weight: 100;
font-style: italic;
}

.kanit-extralight-italic {
font-family: "Kanit", sans-serif;
font-weight: 200;
font-style: italic;
}

.kanit-light-italic {
font-family: "Kanit", sans-serif;
font-weight: 300;
font-style: italic;
}

.kanit-regular-italic {
font-family: "Kanit", sans-serif;
font-weight: 400;
font-style: italic;
}

.kanit-medium-italic {
font-family: "Kanit", sans-serif;
font-weight: 500;
font-style: italic;
}

.kanit-semibold-italic {
font-family: "Kanit", sans-serif;
font-weight: 600;
font-style: italic;
}

.kanit-bold-italic {
font-family: "Kanit", sans-serif;
font-weight: 700;
font-style: italic;
}

.kanit-extrabold-italic {
font-family: "Kanit", sans-serif;
font-weight: 800;
font-style: italic;
}

.kanit-black-italic {
font-family: "Kanit", sans-serif;
font-weight: 900;
font-style: italic;
}
  

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none; /* Optional: Entferne die Randlinie */
}

.card-img-top {
    width: 100%;
    height: auto; /* Behalte das Seitenverhältnis bei */
}
