/* Hauptfarben und Stile */

:root {
    --primary-color: #A6BDB2;
    --secondary-color: #F8F7F4;
    --accent-color: #F4C176;
    --accent-hover: #e9b56c;
    --text-color: #333333;
    --light-text: #A6BDB2;
    --green: #6B8277;
    --basic-green: #92a184;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#banner {
    background-image: url('../assets/img/banner.jpg');
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    min-height: 720px;
    /* Optional: sanfter Overlay-Farbverlauf */
    position: relative;
}

#banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(166, 189, 178, 0.40) 40%, rgba(248, 247, 244, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

#banner {
    background-image: url('../assets/img/banner.jpg');
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    min-height: 660px;
}
main {
    flex: 1;
}

.bg-fleet-first {
    background: linear-gradient(180deg, #f8f7f4 60%, #e6edea 100%)
}
.bg-fleet-second {
    background: linear-gradient(180deg, #e6edea 80%, #f8f7f4 100%)
}
.padding-last {
    padding-bottom: 160px;
}
.text-800 {
    max-width: 800px;
}
.text-1000 {
    max-width: 1000px;
}

/* Header Styles */
header {
    background-image: url("../assets/img/pattern-tile-procedural.svg");
    background-repeat: repeat;
    background-size: 8px 8px;
    /* Kachelgrösse */
    background-color: var(--basic-green);
    padding: 20px 0;
}


.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.8rem;
    color: white !important;
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
    color: white;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */

.hero {
    color: white;
    padding: 160px 0 80px;
    background: transparent;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--accent-color);
    text-shadow: 0 2px 8px rgba(122, 155, 142, 0.18);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 300;
    color: var(--green);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

/* Content sections */
section {
    padding: 60px 0;
}

/* Buttons */

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(244, 193, 118, 0.10);
    transition: background 0.2s, border 0.2s, color 0.2s;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--text-color);
}

/* List Styles */
.wunschliste-section {
    background: var(--secondary-color);
}

.list-normal {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
}

.list-normal li {
    border: none;
    padding: 7px 0 0 20px;
    margin-bottom: 0.5rem;
    background: transparent;
    position: relative;
    transition: background 0.2s;
    letter-spacing: 0.01em;
}

.wunschliste-clean li {
    font-size: 1.25rem;
    color: var(--green);
    border: none;
    padding: 14px 0 14px 0;
    margin-bottom: 0.5rem;
    background: transparent;
    position: relative;
    transition: background 0.2s;
    letter-spacing: 0.01em;
}

.list-normal li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-right: 18px;
    vertical-align: middle;
    position: absolute;
    top: 1em;
    left: 0;
}

.wunschliste-clean li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-right: 18px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.wunschliste-content {
    max-width: fit-content;
}

.cta-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f8f7f4 60%, #e6edea 100%);
}

.cta {
    background: linear-gradient(135deg, #fffbe9 0%, #e6edea 100%);
    color: var(--green);
    padding: 80px 0 72px 0;
    box-shadow: 0 8px 32px rgba(166, 189, 178, 0.10), 0 1.5px 0 var(--accent-color);
    border-radius: 28px;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.2s;
}

.cta-title {
    color: var(--green);
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.cta-section .btn-primary {
    font-size: 1.2rem;
    padding: 0.85rem 2.7rem;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 24px;
}

.cards-section {
    background: linear-gradient(180deg, #e6edea 80%, #f8f7f4 100%);
    padding: 80px 0 160px 0;
}

.cards-section .card {
    background: #fff;
    border: none;
    box-shadow: 0 4px 24px rgba(244, 193, 118, 0.13);
    border-radius: 18px;
    transition: transform 0.15s, box-shadow 0.15s;
    margin-bottom: 32px;
}

.cards-section .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(244, 193, 118, 0.22);
}

.cards-section .card-title {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.35rem;
}

.cards-section .btn-primary {
    margin-top: 18px;
}

.alert-light {
    background: linear-gradient(120deg, #fffbe9 0%, #e6edea 100%);
    border: 1.5px solid var(--accent-color);
    color: var(--green);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(244, 193, 118, 0.10);
    padding: 2rem 2.5rem;
    font-size: 1.08rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Footer */
footer {
    background-image: url("../assets/img/pattern-tile-procedural.svg");
    background-repeat: repeat;
    background-size: 8px 8px;
    /* Kachelgrösse */
    background-color: var(--basic-green);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.contact-info {
    padding: 20px;
    margin-bottom: 20px;
}

/* Intro-Box für Einleitungstext */
.intro-box {
    background: #fff;
    border-left: 4px solid var(--accent-color);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(166, 189, 178, 0.08);
}

.intro-box .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 1.5rem;
}

/* FAQ-Stil */
.faq-section {
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    padding: 1.8rem 2rem;
    box-shadow: 0 2px 12px rgba(166, 189, 178, 0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(244, 193, 118, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Accordion Custom Style */
.accordion-custom {
    margin-top: 2rem;
}

.accordion-custom .accordion-item {
    background: #fff;
    border: none;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(166, 189, 178, 0.08);
    overflow: hidden;
}

.accordion-custom .accordion-button {
    background: linear-gradient(135deg, #f8f7f4 0%, #e6edea 100%);
    color: var(--green);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1.5rem 1.8rem;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #fffbe9 0%, #e6edea 100%);
    color: var(--accent-color);
}

.accordion-custom .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236B8277'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.accordion-custom .accordion-body {
    padding: 1.5rem 2rem 2rem 4.5rem;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

.accordion-custom .accordion-collapse {
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}