/* Grundlegende Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #fff;
}

/* Flexbox-Layout für die Seite */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 0.8;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
}

/* Container für linksbündigen Text */
.content-left {
    text-align: left; /* Links ausrichten */
    padding: 20px;
    max-width: 70%; /* Maximale Breite auf 70% setzen */
    margin: 0 auto;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar .logo img {
    height: 100px; /* Logo Höhe auf 100px gesetzt */
    width: auto;
}

.navbar nav {
    flex: 1;
    display: flex;
    justify-content: center; /* Zentriert die Navigation */
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    font-size: 1.4em; /* Textgröße der Navigation auf 1.4em gesetzt */
    transition: background-color 0.3s, color 0.3s;
}

.navbar nav ul li a:hover {
    background-color: #007BFF;
    border-radius: 5px;
    color: #fff;
}

.navbar nav ul li a.active {
    background-color: #004080;
    border-radius: 5px;
    color: #fff;
}

.navbar .login-btn a {
    text-decoration: none;
    color: #fff;
    background-color: #007BFF;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1.3em;
}

.navbar .login-btn a:hover {
    background-color: #004080;
    color: #fff;
}

/* Slider-specific styles */
.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.slide-content h1 {
    font-size: 2.5rem;
    margin: 0;
}

.slide-content h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.slider-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: #004080;
}

/* Footer */
footer {
    background-color: #000;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    border-bottom: 2px solid #007BFF;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 10px 0;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #007BFF;
}

/* Zweispaltiges Layout */
.two-column-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
}

.two-column-section .column {
    flex: 1;
    font-size: 1.2rem;
}

.text-column {
    text-align: left;
}

.text-column ul {
    list-style: disc;
    padding-left: 40px;
}

.image-column {
    flex: 1;
    text-align: right; /* Rechtsbündig ausrichten */
}

.image-column img {
    max-width: 100%;
    height: auto;
    display: inline-block; /* Verhindert das Blockverhalten */
}

/* Formatted Text Section */
.formatted-text-section {
    padding: 20px 40px;
    margin-top: 20px;
}

.formatted-text {
    text-align: justify;
    line-height: 1.4;
}

.formatted-text h3 {
    margin-bottom: 10px;
    text-align: center;
}

.formatted-text p {
    margin-bottom: 15px;
    font-size: 1.2rem; /* Angepasste Schriftgröße für den Absatz */
}

/* Mobile und Dropdown Menü */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .navbar nav ul li {
        width: 100%;
        text-align: left;
    }

    .navbar nav ul li a {
        padding: 15px;
        font-size: 1.2em;
    }

    .navbar .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .navbar .menu-toggle div {
        width: 30px;
        height: 5px;
        background-color: #fff;
        margin: 6px 0;
        transition: 0.4s;
    }

    .navbar.active nav ul {
        display: flex;
    }

    .navbar.active .menu-toggle div:nth-child(1) {
        transform: rotate(-45deg);
        position: relative;
        top: 10px;
    }

    .navbar.active .menu-toggle div:nth-child(2) {
        opacity: 0;
    }

    .navbar.active .menu-toggle div:nth-child(3) {
        transform: rotate(45deg);
        position: relative;
        top: -10px;
    }
}


.four-column-section {
    display: flex;
    justify-content: flex-start;
    padding: 20px;
    width: 1500px;
}

.four-column-section .column {
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #2e2e2e; /* Wiederherstellen des Hintergrunds */
}

/* Spalten mit individueller Breite */
.four-column-section .column:nth-child(1) {
    flex-basis: 20%; /* 20% für die erste Spalte */
}

.four-column-section .column:nth-child(2) {
    flex-basis: 30%; /* 30% für die zweite Spalte */
	text-align: left;
}

.four-column-section .column:nth-child(3) {
    flex-basis: 25%; /* 25% für die dritte Spalte */
}

.four-column-section .column:nth-child(4) {
    flex-basis: 25%; /* 25% für die vierte Spalte */
}
.overlay {
    padding: 20px;
    color: #fff;
}

/* Jetzt bestellen! Button */
.order-btn {
    text-decoration: none;
    color: #fff;
    background-color: #007BFF;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1.3em;
    display: inline-block;
}

.order-btn:hover {
    background-color: #004080;
    color: #fff;
}


/* Timeline-Styling */
.timeline {
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.timeline .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline .container:before {
    content: '';
    position: absolute;
    width: 4px;
    background: #333; /* Dunkelgraue Farbe */
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.milestone .year {
    background: #007bff;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.milestone .description {
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    position: relative;
    width: 100%;
    text-align: center;
    background: transparent;  /* Hintergrund entfernt */
}

.milestone .description:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #007bff;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 0;
}

/* FAQ Styling */
.faq-container {
    width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.faq-toc {
    margin-bottom: 20px;
	width: 1200px;
}

.faq-toc ul {
    list-style-type: none;
    padding: 0;
}

.faq-toc li {
    margin: 5px 0;
}

.faq-toc a {
    text-decoration: none;
    color: #007BFF;
}

.faq-toc a:hover {
    text-decoration: underline;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background-color: transparent;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff; /* Weißer Text */
    transition: border-color 0.3s, color 0.3s;
}

.faq-question:hover {
    border-color: #007BFF;
    color: #007BFF;
}

.faq-answer {
    display: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: none;
    background-color: transparent; /* Transparenter Hintergrund */
    color: #ffffff; /* Weißer Text */
	text-align: left;
	line-height: 1.3;
    font-size: 1em;
}
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: white;
}

.tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
	font-size: 0.7em;

    /* Positionierung */
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 0.8;
}
