@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', serif;
    color: #f5f5f5;
    background-color: #1a1a1a;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', serif;
    color: #D22D4F;
}

p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

a {
    color: #D22D4F;
    /* Helle Farbe für den Standard-Link */
    text-decoration: none;
    /* Entfernt die Standard-Unterstreichung */
}

a:hover,
a:focus {
    color: #c95d73;
    /* Helle Akzentfarbe beim Hover (oder Fokus) */
    text-decoration: underline;
    /* Unterstreichung beim Hover */
}

a:active {
    color: #c95d73;
    /* Akzentfarbe für den aktiven Link */
    text-decoration: none;
    /* Entfernt die Unterstreichung beim aktiven Zustand */
}

a:visited {
    color: #dd8798;
    /* Farbe für besuchte Links */
}

.text-primary {
    color: #D22D4F !important;
}

.bgc-primary {
    background-color: #161616;
}

/* Hero Section */
#start {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    color: #c95d73;
    padding-top: 120px; /* Platz für die fixe Navbar */
}

#start .hero-content {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    text-align: center;
}

#start p {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: rgba(44, 44, 44, 0.8) !important;
    backdrop-filter: blur(5px);
    height: 120px; /* Fixe Höhe für die Navbar */
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    border-bottom: 3px solid #D22D4F;
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.navbar-brand img {
    height: 110px;
    width: auto;
    transition: all 0.3s ease-in-out;
}

.navbar-nav {
    flex-grow: 0;
    justify-content: center;
    display: flex;
}

.navbar-nav .nav-link {
    font-family: 'Roboto', serif;
    font-size: 20px;
    color: #D22D4F !important;
    text-shadow: 1px 1px 7px #000;
    font-weight: 600;
    padding: 10px 15px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 5px 15px;
    }
    #start {
        padding-top: 150px; /* Kleinere Navbar bedeutet weniger Padding oben */
    }
}


/* Allgemeine Sektionen */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    scroll-margin-top: 115px;
}

.btn-primary {
    background-color: #D22D4F !important;
    color: #fff !important;
    border: none !important;
    text-decoration: none !important;
}

.btn-primary:hover {
    background-color: #363636 !important;
    color: #fff !important;
    border: none !important;
    text-decoration: none !important;
}

.btn-primary:active,
.btn-primary:focus {
    background-color: #c95d73 !important;
    color: #fff !important;
    border: none !important;
    text-decoration: none !important;
}

/* Fußnoten Sternchen */
.fnote {
    max-width: 100% !important;
}

/* Footer */
footer {
    background-color: #111;
    padding: 10px 0;
    text-align: center;
}

/* Footer Text */
.footer-text {
    font-size: 18px;
    color: #bbb;
}

/* Modals Breite */
.modal-dialog {
    max-width: 80%;
    /* Erhöht die Breite der Modals */
    width: auto;
}

/* Header für die Modals */
.modal-header {
    background-color: #363636;
    color: #D22D4F;
}

/* Header Title für die Modals */
.modal-title {
    color: #D22D4F;
}

/* Allgemeine Modal-Stile */
.modal-content {
    background-color: #161616;
}

/* Footer für die Modals */
.modal-footer {
    background-color: #363636;
    color: #D22D4F;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 9999;
    border-top: 3px solid #D22D4F;
}

.cookie-banner button {
    margin: 5px;
}