* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-green: rgb(2, 54, 47);
    --color-sage: rgb(177, 210, 205);
    --color-mint: rgb(235, 244, 242);
    --color-mint-light: rgb(245, 249, 248);
    --color-border: rgb(218, 232, 229);
    --color-text: rgb(60, 60, 60);
    --color-text-muted: rgb(80, 80, 80);
    --color-danger: rgb(155, 44, 44);
    --color-gold: rgb(194, 148, 58);
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
}

main {
    flex: 1;
}

@font-face {
    font-family: "Ansam";
    src: url("../fonts/ansam/Ansam.ttf") format("truetype");
    font-display: swap;
}


/* HEADER UND NAVIGATION */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: var(--color-green);
}

.nav {
    position: relative;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 35px;
    width: 100%;
    min-height: 72px;
    padding: 9px 170px;
    list-style: none;
}

.nav ul,
.nav li {
    display: contents;
    list-style: none;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.nav a {
    display: inline-block;
    padding: 7px 5px 3px;
    color: var(--color-sage) !important;
    font-family: "Ansam", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none !important;
    white-space: nowrap;
}

.nav a:hover {
    color: white !important;
}

.language-switcher {
    position: absolute !important;
    top: 50% !important;
    right: 40px !important;
    display: flex !important;
    align-items: center;
    gap: 5px;
    width: auto !important;
    transform: translateY(-50%) !important;
}

.language-switcher a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 34px !important;
    height: 28px !important;
    padding: 0 !important;
    border: 1px solid var(--color-sage);
    border-radius: 5px;
    background-color: transparent;
    color: var(--color-sage) !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
}

.language-switcher a:hover,
.language-switcher a.active-language {
    background-color: var(--color-sage);
    color: var(--color-green) !important;
}

/* ALLGEMEINE TEXTE */

h1 {
    margin-top: 45px;
    margin-bottom: 35px;
    color: var(--color-green);
    font-family: "Ansam", "Times New Roman", serif;
    font-size: 80px;
    font-variant: small-caps;
    font-weight: lighter;
    letter-spacing: 6px;
    line-height: 1.2;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: var(--color-green);
    font-family: "Ansam", Georgia, serif;
    font-size: 45px;
    font-weight: lighter;
    line-height: 1.3;
}

h3 {
    margin-bottom: 20px;
    color: var(--color-green);
    font-family: "Ansam", Georgia, serif;
    font-size: 30px;
    font-weight: lighter;
    line-height: 1.3;
}


p {
    margin-bottom: 10px;
    color: var(--color-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.content {
    padding: 30px 12%;
}


/* BILDER UND GALERIEN */

img.hero-image {
    display: block;
    width: 100%;
    height: 720px !important;
    margin: 0;
    object-fit: cover;
    object-position: center bottom;
    clip-path: none;
}

.image-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.apartment-img {
    display: block;
    flex-shrink: 0;
    width: 55vw;
    max-width: 750px;
    height: 480px;
    border-radius: 15px;
    object-fit: cover;
    scroll-snap-align: center;
}


/* BUCHUNGSFORMULAR */

.booking-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 12%;
}

.booking-section h1 {
    margin-top: 10px;
    margin-bottom: 35px;
    text-align: center;
}

.booking-introduction {
    width: 100%;
    max-width: 800px;
    margin-bottom: 25px;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.booking-form label {
    color: var(--color-green);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 18px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.booking-form textarea {
    min-height: 150px;
    resize: vertical;
}

.booking-form button {
    padding: 18px;
    border: none;
    border-radius: 10px;
    background-color: var(--color-green);
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.booking-form button:hover {
    background-color: rgb(39, 81, 75);
}

.apartment-fieldset {
    padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 10px;
}

.apartment-fieldset legend {
    padding: 0 8px;
    color: var(--color-green);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.apartment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.apartment-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

.apartment-options input {
    padding: 0;
}

.form-warning {
    min-height: 24px;
    margin-top: 12px;
    color: var(--color-danger);
    font-weight: bold;
}

.form-information {
    margin-top: -10px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.booking-notice {
    padding: 15px;
    border-left: 4px solid var(--color-green);
    background-color: var(--color-mint);
}


/* KONTAKT */

.contact {
    margin-bottom: 20px;
    text-align: center;
}

h1.contact {
    margin-top: 45px;
    margin-bottom: 35px;
}

.contact a {
    color: var(--color-text);
    text-decoration: underline;
}

.contact a:hover {
    color: var(--color-green);
}


/* FOOTER */

footer {
    width: 100%;
    margin-top: auto;
    padding: 8px 0;
    background-color: var(--color-green);
}

.footer {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.footer li {
    display: flex;
    align-items: center;
    margin: 0;
    list-style: none;
}

.footer a {
    display: inline-block;
    padding: 7px 6px 4px;
    color: var(--color-sage);
    font-family: "Ansam", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}

.footer a:hover {
    color: white;
}


/* HANDYANSICHT */

@media (max-width: 600px) {
    h1 {
        margin-top: 28px;
        margin-bottom: 24px;
        font-size: 42px;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 30px;
    }

    p {
        font-size: 13px;
    }

    .content {
        padding: 24px 6%;
    }

    .image-gallery {
        gap: 12px;
    }

    .apartment-img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .booking-section {
        width: 100%;
        padding: 20px 16px;
    }

    .booking-section h1 {
        margin: 5px 0 15px;
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: 1px;
    }

    .booking-introduction {
        margin-bottom: 16px;
    }

    .booking-introduction p {
        font-size: 13px;
        line-height: 1.5;
    }

    .booking-form {
        width: 100%;
        gap: 10px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        width: 100%;
        padding: 9px 10px;
        border-radius: 6px;
        font-size: 13px;
    }

    .booking-form input,
    .booking-form select {
        min-height: 38px;
    }

    .booking-form textarea {
        min-height: 80px;
    }

    .booking-section label,
    .apartment-fieldset legend {
        font-size: 14px;
    }

    .apartment-fieldset {
        padding: 10px 12px;
    }

    .apartment-options {
        gap: 5px;
    }

    .apartment-options label {
        gap: 7px;
        font-size: 13px;
    }

    .apartment-options input {
        width: auto;
        min-height: auto;
        padding: 0;
    }

    .form-information,
    .form-warning {
        font-size: 12px;
        line-height: 1.4;
    }

    .booking-notice {
        padding: 9px;
        font-size: 12px;
    }

    .booking-form button {
        padding: 10px;
        border-radius: 6px;
        font-size: 14px;
    }

    h1.contact {
        margin-top: 28px;
        margin-bottom: 24px;
    }

    footer {
        padding: 6px 0;
    }

    .footer {
        gap: 4px;
    }

    .footer a {
        padding: 4px 7px 7px;
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 900px) {
    .nav {
        gap: 0;
        padding: 8px 120px 8px 8px;
    }

    .nav a {
        padding: 5px 7px;
        font-size: 14px;
    }

    .language-switcher {
        right: 10px !important;
    }
}

/* BUCHUNGSBUTTON */

.booking-button {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 28px;
    border: 2px solid var(--color-green);
    border-radius: 8px;
    background-color: var(--color-green);
    color: white;
    font-family: "Ansam", Arial, sans-serif;
    font-size: 18px;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.booking-button:hover {
    background-color: white;
    color: var(--color-green);
    transform: translateY(-2px);
}


/* VORTEILE */

.highlights,
.reviews {
    width: min(1100px, calc(100% - 40px));
    margin: 45px auto;
    text-align: center;
}

.highlight-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 25px;
}

.highlight-card,
.review-card {
    padding: 28px 22px;
    border-radius: 15px;
    background-color: var(--color-mint);
}

.highlight-icon {
    display: block;
    margin-bottom: 8px;
    color: var(--color-green);
    font-size: 28px;
}

.highlight-card h3 {
    margin-bottom: 7px;
    color: var(--color-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
}

.highlight-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}


/* BEWERTUNGEN */

.review-grid {
    grid-template-columns: repeat(2, 1fr);
}

.review-stars {
    margin-bottom: 16px;
    color: var(--color-gold);
    font-size: 22px;
    letter-spacing: 3px;
}

.review-card blockquote {
    margin: 0 0 18px;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
}

.review-author {
    margin: 0;
    color: var(--color-green);
    font-weight: bold;
}


/* MOBILE ANSICHT */

@media (max-width: 800px) {

    .highlight-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .highlights,
    .reviews {
        width: min(100% - 28px, 600px);
        margin: 35px auto;
    }
}

/* STARTSEITE – EINLEITUNG */

.hero-content {
    padding-top: 35px;
    padding-bottom: 25px;
    text-align: center;
}

.hero-content p {
    max-width: 750px;
    margin: 0 auto 18px;
}

.hero-content .booking-button {
    margin-top: 12px;
}


/* VORTEILE – KOMPAKTER UND RUHIGER */

.highlights {
    width: 100%;
    margin: 0;
    padding: 45px 12%;
    background-color: var(--color-mint-light);
}

.highlights h2 {
    margin-bottom: 25px;
}

.highlight-grid {
    max-width: 1000px;
    margin: 0 auto;
    gap: 16px;
}

.highlight-card {
    min-height: 150px;
    padding: 22px 18px;
    border: 1px solid var(--color-border);
    background-color: white;
    box-shadow: 0 5px 18px rgba(2, 54, 47, 0.06);
}

/* HANDY */

@media (max-width: 800px) {
    .hero-content {
        padding: 28px 20px 22px;
    }

    .highlights {
        padding: 35px 14px;
    }

    .highlight-card {
        min-height: auto;
        padding: 20px 16px;
    }
}

/* APARTMENTKARTEN */

.apartment-preview {
    width: min(1100px, calc(100% - 40px));
    margin: 45px auto;
}

.apartment-preview>h2 {
    margin-bottom: 25px;
    text-align: center;
}

.apartment-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.apartment-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 6px 20px rgba(2, 54, 47, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.apartment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(2, 54, 47, 0.14);
}

.apartment-card img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.apartment-card-content {
    padding: 22px;
    text-align: center;
}

.apartment-card-content h3 {
    margin: 0 0 10px;
    color: var(--color-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
}

.apartment-card-content p {
    min-height: 52px;
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.6;
}

.apartment-card-content a {
    display: inline-block;
    padding: 11px 20px;
    border: 2px solid var(--color-green);
    border-radius: 7px;
    background-color: var(--color-green);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.apartment-card-content a:hover {
    background-color: white;
    color: var(--color-green);
}


/* TABLET */

@media (max-width: 950px) {
    .apartment-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .apartment-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        justify-self: center;
    }
}


/* HANDY */

@media (max-width: 650px) {
    .apartment-preview {
        width: min(100% - 28px, 500px);
        margin: 35px auto;
    }

    .apartment-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .apartment-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .apartment-card img {
        height: 210px;
    }

    .apartment-card-content {
        padding: 19px 16px;
    }

    .apartment-card-content p {
        min-height: auto;
    }
}

/* NEARBY-PLACES-KARTEN */

.nearby-places {
    width: 100%;
    margin: 0;
    padding: 50px 12%;
    background-color: var(--color-mint-light);
}

.nearby-places>h2 {
    margin-bottom: 12px;
    text-align: center;
}

.nearby-introduction {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.nearby-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 265px;
    padding: 25px 22px;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 6px 20px rgba(2, 54, 47, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(2, 54, 47, 0.14);
}

.nearby-distance {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 20px;
    background-color: var(--color-mint);
    color: var(--color-green);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.nearby-card h3 {
    margin: 0 0 10px;
    color: var(--color-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.nearby-card p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.6;
}

.nearby-card a {
    display: inline-block;
    margin-top: auto;
    padding: 10px 16px;
    border: 2px solid var(--color-green);
    border-radius: 7px;
    background-color: var(--color-green);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.nearby-card a:hover {
    background-color: white;
    color: var(--color-green);
}


/* EMPFOHLENE ORTSKARTE */

.featured-place {
    border-color: var(--color-sage);
}

.recommendation-label {
    position: static;
    display: block;
    margin: -6px 0 16px;
    color: var(--color-green);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TABLET */

@media (max-width: 950px) {
    .nearby-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* HANDY */

@media (max-width: 650px) {
    .nearby-places {
        padding: 38px 14px;
    }

    .nearby-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nearby-card {
        min-height: auto;
        padding: 22px 18px;
    }

    .nearby-card h3 {
        font-size: 23px;
    }

    .recommendation-label {
        position: static;
        margin: -8px 0 14px;
    }
}

/* AUSSTATTUNGSCHIPS */

.amenity-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.amenity-chips li {
    padding: 8px 14px;
    border: 1px solid var(--color-sage);
    border-radius: 20px;
    background-color: var(--color-mint-light);
    color: var(--color-green);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}


/* HANDY */

@media (max-width: 650px) {
    .amenity-chips {
        gap: 7px;
        margin-bottom: 18px;
    }

    .amenity-chips li {
        padding: 7px 11px;
        font-size: 12px;
    }
}

/* ANKLICKBARE BILDERGALERIE */

.image-gallery .apartment-img {
    cursor: zoom-in;
}


/* LIGHTBOX-HINTERGRUND */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px 80px;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox.lightbox-open {
    display: flex;
}


/* GROSSES BILD */

.lightbox-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
}

.lightbox-image {
    display: block;
    max-width: min(1100px, 100%);
    max-height: 82vh;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 12px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-align: center;
}


/* LIGHTBOX-BUTTONS */

.lightbox-close,
.lightbox-previous,
.lightbox-next {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background-color: rgba(2, 54, 47, 0.85);
    color: white;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-previous:hover,
.lightbox-next:hover {
    background-color: var(--color-green);
}

.lightbox-close {
    top: 22px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
}

.lightbox-previous,
.lightbox-next {
    top: 50%;
    width: 50px;
    height: 60px;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    transform: translateY(-50%);
}

.lightbox-previous {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-previous:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.05);
}


/* HANDY */

@media (max-width: 650px) {
    .lightbox {
        padding: 70px 15px 90px;
    }

    .lightbox-image {
        max-height: 70vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .lightbox-previous,
    .lightbox-next {
        top: auto;
        bottom: 18px;
        width: 54px;
        height: 48px;
        transform: none;
    }

    .lightbox-previous {
        left: calc(50% - 65px);
    }

    .lightbox-next {
        right: calc(50% - 65px);
    }

    .lightbox-previous:hover,
    .lightbox-next:hover {
        transform: scale(1.05);
    }
}

/* FAQ */

.faq-section {
    width: min(900px, calc(100% - 40px));
    margin: 55px auto;
}

.faq-section>h2 {
    margin-bottom: 10px;
    text-align: center;
}

.faq-introduction {
    max-width: 650px;
    margin: 0 auto 30px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background-color: var(--color-mint-light);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: var(--color-sage);
    box-shadow: 0 5px 18px rgba(2, 54, 47, 0.07);
}

.faq-item summary {
    position: relative;
    padding: 20px 55px 20px 22px;
    color: var(--color-green);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    content: "+";
    color: var(--color-green);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 400;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 22px 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
}


/* ABSCHLUSS UNTER DEM FAQ */

.faq-contact {
    margin-top: 35px;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: var(--color-green);
    text-align: center;
}

.faq-contact h3 {
    margin: 0 0 8px;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
}

.faq-contact p {
    margin: 0 0 18px;
    color: var(--color-mint);
}

.faq-contact a {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 7px;
    background-color: white;
    color: var(--color-green);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.faq-contact a:hover {
    background-color: transparent;
    color: white;
}


/* HANDY */

@media (max-width: 650px) {
    .faq-section {
        width: min(100% - 28px, 600px);
        margin: 40px auto;
    }

    .faq-item summary {
        padding: 17px 48px 17px 16px;
        font-size: 15px;
    }

    .faq-item summary::after {
        right: 16px;
    }

    .faq-answer {
        padding: 0 16px 17px;
    }

    .faq-contact {
        margin-top: 25px;
        padding: 25px 16px;
    }
}

/* FAQ-HINWEIS AUF DER STARTSEITE */

.faq-teaser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: min(1100px, calc(100% - 40px));
    margin: 45px auto;
    padding: 32px 35px;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    background-color: var(--color-mint-light);
}

.faq-teaser h2 {
    margin-bottom: 8px;
    font-size: 34px;
}

.faq-teaser p {
    max-width: 650px;
    margin: 0;
}

.faq-teaser a {
    flex-shrink: 0;
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid var(--color-green);
    border-radius: 7px;
    background-color: var(--color-green);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-decoration: none;
}

.faq-teaser a:hover {
    background-color: white;
    color: var(--color-green);
}

@media (max-width: 750px) {
    .faq-teaser {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
    }

    .faq-teaser h2 {
        font-size: 28px;
    }
}

/* HAMBURGER-MENÜ */

.mobile-nav-bar {
    display: none;
}

.mobile-menu {
    display: contents;
}

.menu-toggle {
    display: none;
}


/* HANDY */

@media (max-width: 800px) {
    header {
        position: sticky;
        top: 0;
        z-index: 5000;
    }

    .nav {
        display: block !important;
        min-height: auto;
        padding: 0 !important;
    }


    /* OBERE MOBILE LEISTE */

    .mobile-nav-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 62px;
        padding: 10px 16px;
    }

    .mobile-brand {
        padding: 0 !important;
        color: white !important;
        font-family: "Ansam", Georgia, serif !important;
        font-size: 24px !important;
        font-variant: small-caps !important;
        font-weight: lighter !important;
        letter-spacing: 2px !important;
        line-height: 1 !important;
        text-decoration: none;
    }


    /* HAMBURGER-BUTTON */

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 42px;
        padding: 9px;
        border: 1px solid var(--color-sage);
        border-radius: 7px;
        background-color: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background-color: var(--color-sage);
        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }


    /* HAMBURGER WIRD ZUM X */

    .menu-toggle.menu-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.menu-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.menu-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* AUSKLAPPBARES MENÜ */

    .mobile-menu {
        display: none;
        width: 100%;
        padding: 8px 16px 18px;
        border-top: 1px solid rgba(177, 210, 205, 0.25);
        background-color: var(--color-green);
    }

    .mobile-menu.menu-open {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-links a,
    .nav a {
        width: 100%;
        padding: 11px 4px !important;
        border-bottom: 1px solid rgba(177, 210, 205, 0.16);
        font-size: 17px !important;
        line-height: 1.3;
        text-align: left;
    }

    .nav-links a[aria-current="page"] {
        color: white !important;
    }


    /* SPRACHWAHL */

    .language-switcher {
        position: static !important;
        display: flex !important;
        justify-content: flex-start;
        gap: 8px;
        width: 100% !important;
        margin-top: 16px;
        transform: none !important;
    }

    .language-switcher a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px !important;
        height: 32px !important;
        padding: 0 !important;
        border: 1px solid var(--color-sage);
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 12px !important;
    }
}

/* KONTAKTKARTEN */

.contact-options {
    width: 100%;
    padding: 45px 4%;
    background-color: var(--color-mint-light);
    text-align: center;
}

.contact-options>h2 {
    margin-bottom: 8px;
}

.contact-options-introduction {
    max-width: 650px;
    margin: 0 auto 30px;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 240px;
    padding: 25px 16px 20px;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    background-color: white;
    color: var(--color-text);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(2, 54, 47, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contact-card:hover {
    border-color: var(--color-sage);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(2, 54, 47, 0.13);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 17px;
    border-radius: 50%;
    background-color: var(--color-mint);
    color: var(--color-green);
}

.contact-card-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card h3 {
    margin: 0 0 10px;
    color: var(--color-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.contact-card p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.contact-card-action {
    display: inline-block;
    margin-top: auto;
    padding: 8px 13px;
    border-radius: 7px;
    background-color: var(--color-green);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
}


/* TABLET */

@media (max-width: 1100px) {
    .contact-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 700px;
    }
}


/* HANDY */

@media (max-width: 650px) {
    .contact-options {
        padding: 35px 14px;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 450px;
    }

    .contact-card {
        min-height: auto;
        padding: 22px 18px;
    }

    .contact-card-action {
        margin-top: 5px;
    }
}

/* ACTIVITIES – LOCATION PAGE */

.activities-section {
    padding: 75px 7%;
    background-color: #fff8d8;
}

.activities-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.activities-heading .section-label {
    margin-bottom: 8px;
    color: rgb(2, 54, 47);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.activities-heading h2 {
    margin: 0 0 15px;
    color: rgb(2, 54, 47);
}

.activities-heading>p:last-child {
    margin: 0;
    line-height: 1.7;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1250px;
    margin: 0 auto;
}

.activity-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(2, 54, 47, 0.12);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(2, 54, 47, 0.2);
}

.activity-card img {
    display: block;
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.activity-card-content {
    flex-grow: 1;
    padding: 25px;
}

.activity-card-content h3 {
    margin: 0 0 12px;
    color: rgb(2, 54, 47);
    font-size: 1.4rem;
}

.activity-card-content p {
    margin: 0;
    color: #444444;
    line-height: 1.65;
}

.activities-note {
    max-width: 850px;
    margin: 35px auto 0;
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}


/* TABLET */

@media (max-width: 950px) {
    .activities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* MOBILE */

@media (max-width: 620px) {
    .activities-section {
        padding: 55px 20px;
    }

    .activities-heading {
        margin-bottom: 32px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .activity-card img {
        height: 220px;
    }

    .activity-card-content {
        padding: 22px;
    }
}

.imprint-address {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    line-height: 1.8;
}