/* =============================================================
   GRUNDLAYOUT
   colors tuerkis: #37837E 
          gold:    #865817    
   ============================================================= */

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    background: #ffffff;
    color: #222222;
    font-family: Calibri, Arial, Helvetica, sans-serif;
}

/*
 * .site definiert die maximale Breite der Website.
 * 760px sorgt auf Desktop-Breitbildmonitoren für ein Hochformat.
 * Auf kleinen Geräten nimmt die Website die gesamte Breite ein.
 */
.site {
    /*
     * Die Website bleibt auf Desktop-Breitbildmonitoren im
     * Hochformat auf maximal 760px begrenzt.
     */
    width: 100%;
    max-width: 780px;
    min-height: 100vh;
    margin: 0 auto;
    background: transparent;
    overflow-x: hidden;
}

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

.gabrielle {
    font-family: "Gabrielle", cursive;
}


/* =============================================================
   HEADER
   ============================================================= */

.site-header {
    /* Der Header bleibt beim Scrollen fest am oberen Bildschirmrand.
     * Er behält dabei exakt die zentrale Websitebreite bei. */
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(780px, 100vw);
    height: 230px;
    z-index: 1000;
    overflow: visible;
}

/*
 * Hintergrundbild des Headers.
 * Ersetze images/header.jpg durch dein eigenes Bild.
 */
.header-background {
    position: absolute;
    inset: 0;
    background-image: url("../images/header.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dunkle, leichte Überlagerung für bessere Lesbarkeit. */
.header-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.0);
}

/* Logo */
.logo-link {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    display: block;
}

.logo {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* Hamburger-Menü */
.menu-toggle {
    position: absolute;
    top: 50%;
    right: 18px;
    z-index: 20;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #37837E;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Navigation */
.main-navigation {
    position: absolute;
    top: 78px;
    right: 18px;
    z-index: 15;
    width: 240px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);

    /* Standardmäßig geschlossen */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.main-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.main-navigation a {
    display: block;
    padding: 14px 16px;
    color: #37837E;
    text-decoration: none;
    border-radius: 5px;
}

.main-navigation a:hover,
.main-navigation a:focus {
    background: #eeeeee;
}

/* =============================================================
   INHALT
   ============================================================= */

.content {
    /*
     * Der Inhaltsbereich ist transparent. Das statische
     * Hintergrundbild wird über ::before dahinter gelegt.
     */
    position: relative;
    isolation: isolate;
    /* Platz für den fixierten Header, damit der erste Inhalt nicht
     * unter ihm startet. Beim Scrollen läuft der Inhalt darunter weg. */
    --image-size: calc((100% - 28px) / 3);
    margin-top: 230px;
    padding: 28px 28px 60px;
    background: transparent;
}

/*
 * =============================================================
 * STATISCHES HINTERGRUNDBILD NUR HINTER DEM INHALT
 * =============================================================
 *
 * Der Header bleibt davon vollständig unberührt.
 * Das Bild beginnt exakt unterhalb des Headers.
 *
 * left/width begrenzen die Darstellung auf die Websitebreite.
 * Der BODY bleibt weiß, sodass die Desktop-Seitenflächen
 * garantiert weiß bleiben.
 */
.content::before {
    content: "";
    position: fixed;
    z-index: -1;

    /*
     * Headerhöhe: 230px auf Desktop.
     * Auf Mobilgeräten wird die Position über die Media Query
     * weiter unten auf 190px angepasst.
     */
    top: 230px;
    bottom: 0;
    left: 50%;
    width: min(780px, 100vw);
    transform: translateX(-50%);

    background-image: url("../images/background.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    pointer-events: none;
}


.page-section h1 {
    color: #865817;
    margin: 0 0 22px;
    font-size: 2rem;
    line-height: 1.2;
}

.page-section h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.text-block {
    color: #865817;
    width: 100%;
    margin: 0 0 30px;
    line-height: 1.6;
}

.text-block p {
    margin: 0;
}

/* Einheitliche Abstände für Überschriften innerhalb von Textblöcken. */
.text-block h2 {
    margin-top: 30px;
    margin-bottom: 12px;
}


/* Der eigentliche Inhalt liegt über dem statischen Hintergrundbild. */
.content > * {
    position: relative;
    z-index: 1;
}

/* =============================================================
   BILDER
   ============================================================= */
/* Gemeinsame Eigenschaften aller drei Bildeinbettungen.
   Die jeweiligen Layouts bleiben darunter getrennt. */

.image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    margin: 34px 0 0;
}

.image-row + .image-row {
    margin-top: 14px;
    margin-bottom: 38px;
}

.image-row img,
.start-single-image img,
.single-natural-image img {
    display: block;
    border-radius: 4px;
    cursor: zoom-in;
}

.image-row img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.start-single-image {
    display: flex;
    justify-content: center;
}

.start-single-image img {
    width: calc((100% - 28px) / 3);
}

.single-natural-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    margin: 34px 0 38px;
}

.single-natural-image-frame {
    grid-column: 2;
    position: relative;
    aspect-ratio: 1 / 1;
}

.single-natural-image-frame img {
    cursor: zoom-in;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: none;
    border-radius: 4px;
}

/* =============================================================
   BILDER-LIGHTBOX / BILDVERGRÖSSERUNG
   ============================================================= */

body.lightbox-open {
    overflow: hidden;
    touch-action: none;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
    overscroll-behavior: contain;
}

.image-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-lightbox__viewport {
    position: relative;
    width: min(92vw, 92vh, 760px);
    height: min(92vw, 92vh, 760px);
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    background: #ffffff;
    touch-action: none;
    user-select: none;
}

.image-lightbox__image {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transform-origin: center center;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.image-lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #222222;
    font-size: 30px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus {
    background: #ffffff;
}


/* =============================================================
   LIGHTBOX – GALERIE-NAVIGATION
   ============================================================= */
.image-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 64px;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.88);
    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 34px;
    line-height: 64px;
    text-align: center;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.image-lightbox__prev {
    left: 10px;
}

.image-lightbox__next {
    right: 10px;
}

.image-lightbox__nav:hover,
.image-lightbox__nav:focus {
    background: #ffffff;
}

.image-lightbox__nav:disabled {
    opacity: 0.28;
    cursor: default;
}

.image-lightbox__nav[hidden] {
    display: none;
}

.image-lightbox__hint {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    padding: 5px 9px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 0.78rem;
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .image-lightbox {
        padding: 8px;
    }

    .image-lightbox__viewport {
        width: min(96vw, 96vh);
        height: min(96vw, 96vh);
    }

    .image-lightbox__close {
        top: 7px;
        right: 7px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

/* =============================================================
   GOOGLE MAPS / STANDORT
   ============================================================= */

.map-section {
    width: 100%;
    margin-top: 38px;
    color: #865817;
}

.map-description {
    margin-bottom: 14px;
}

.map-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eeeeee;
    border-radius: 4px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-consent-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 28px;
    background: #f3f3f3;
}

.map-consent {
    width: min(100%, 520px);
    text-align: center;
    color: #865817;
}

.map-consent h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.map-consent p {
    margin: 0 0 20px;
    line-height: 1.5;
}

.map-consent-button,
.map-revoke-button {
    border: 0;
    border-radius: 4px;
    background: #37837E;
    color: #ffffff;
    padding: 10px 16px;
    font: inherit;
    cursor: pointer;
}

.map-consent-button:hover,
.map-consent-button:focus,
.map-revoke-button:hover,
.map-revoke-button:focus {
    background: #2f706c;
}

.map-revoke-button {
    display: block;
    margin: 10px auto 0;
    padding: 6px 10px;
    background: transparent;
    color: #37837E;
    text-decoration: underline;
}

.map-revoke-button:hover,
.map-revoke-button:focus {
    background: transparent;
    color: #2f706c;
}

.map-zoom-control {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.map-zoom-control label {
    white-space: nowrap;
    font-weight: bold;
}

.map-zoom-control input {
    width: 100%;
    cursor: pointer;
}

/* =============================================================
   TABELLEN
   ============================================================= */

.table-section {
    color: #865817;

    margin-bottom: 20px;
}

.table-section table {
    border-collapse: collapse;
}

.table-section td {
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    border: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.table-section2 {
    color: #865817;
    table-layout: auto;
    font-size: 16px;
    margin-bottom: 20px;
}

.table-section2 table {
    table-layout: auto;
    border-collapse: collapse;
}

.table-section2 td {
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    border: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.additional-text {
    margin-top: 10px;
}

/* =============================================================
   FORMULAR
   ============================================================= */

.contact-form {
    width: 100%;
    margin-top: 28px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: #865817;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-form textarea {
    display: block;
    width: 100%;
    min-height: 220px;
    padding: 12px;
    resize: vertical;
    font: inherit;
    line-height: 1.5;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
}

.character-count {
    margin-top: 7px;
    text-align: right;
    font-size: 0.9rem;
    color: #666666;
}

.submit-button {
    margin-top: 16px;
    margin-bottom: 18px;
    padding: 13px 18px;
    border: 0;
    border-radius: 5px;
    background: #37837E;
    color: #ffffff;
    font: inherit;
    cursor: pointer;
}

.submit-button:hover,
.submit-button:focus {
    opacity: 0.85;
}

.submit-button:disabled {
    background: #aaaaaa;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.7;
}

/* =========================================================
   FIXIERTER FOOTER
   ========================================================= */

.site-footer {
    position: fixed;
    z-index: 900;

    /* immer innerhalb der 780px-Hauptbreite */
    left: 50%;
    bottom: 0;
    width: min(780px, 100vw);

    transform: translateX(-50%);

    /* weißer, undurchsichtiger Hintergrund */
    background: #ffffff;

    /* dezente Trennlinie nach oben */
    border-top: 0px solid rgba(0,0,0,0.08);

    box-sizing: border-box;

    padding: 2px 28px 2px;
    line-height: 1.2;

    text-align: center;
    font-size: 0.85rem;
    color: #37837E;
}

.site-footer p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    row-gap: 1px;
    margin: 0;
}

.site-footer .footer-copyright,
.site-footer .footer-separator {
    white-space: nowrap;
}


/* =============================================================
   LINK 2 – INFO-/LINKTABELLE
   =============================================================
 * Diese Tabelle ist bewusst randlos und nur etwa ein Drittel
 * der Inhaltsbreite breit. Die Werte können hier leicht angepasst
 * werden, ohne das HTML verändern zu müssen.
 */
.info-table-section {
    color: #865817;
    width: 40%;
    min-width: 260px;
    margin: 34px 0 38px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.info-table td {
    height: 58px;
    padding: 7px 6px;
    border: 0;
    vertical-align: middle;
    text-align: left;
    overflow-wrap: anywhere;
}

/* Fest genug für zwei 28px-Icons nebeneinander. */
.info-table td:first-child {
    width: 74px;
    min-width: 74px;
}

.info-table td:nth-child(2) {
    width: auto;
}

.info-table-icon {
    text-align: center !important;
    white-space: nowrap;
    font-size: 0;
}

.info-table-icon img {
    display: inline-block;
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
}

.info-table a {
    color: inherit;
    text-decoration: underline;
}

.info-table tr:first-child td:nth-child(2) a {
    text-decoration: none;
}

/* =============================================================
   TELEFON / WHATSAPP
   =============================================================
 * Die beiden Icons werden als feste 28px-Elemente in einer
 * horizontalen Flex-Gruppe geführt. Kein Abstand, kein Rahmen,
 * keine Hintergrundfläche.
 */
.info-icon-button,
.info-table-text-button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: 0;
    cursor: pointer;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}

.phone-icons {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    vertical-align: middle;
}

.phone-icons .phone-action {
    display: block;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
}

.phone-icons .phone-action + .phone-action {
    margin-left: 0;
}

.phone-icons .phone-action img {
    display: block;
    width: 28px;
    height: 28px;
    margin: 0;
    padding: 0;
    object-fit: contain;
}

.info-table-text-button {
    display: inline;
    line-height: inherit;
}

.info-icon-button:focus-visible,
.info-table-text-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
    border-radius: 3px;
}

/* =============================================================
   TELEFON-POPUP
   ============================================================= */
.phone-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.45);
}

.phone-popup-overlay[hidden] {
    display: none;
}

.phone-popup {
    position: relative;
    width: min(420px, 100%);
    box-sizing: border-box;
    padding: 28px 24px 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.phone-popup h2 {
    margin: 0 0 8px;
    color: #865817;
}

.phone-popup-number {
    color: #865817;
    margin: 0 0 22px;
    font-size: 1.1rem;
}

.phone-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #555555;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.phone-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-popup-actions a,
.phone-popup-actions button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 0;
    border-radius: 5px;
    background: #37837E;
    color: #ffffff;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
}

.phone-popup-actions a[hidden] {
    display: none;
}

body.phone-popup-open {
    overflow: hidden;
}

@media (min-width: 601px) {
    .phone-call-action {
        display: none !important;
    }
}

/* =============================================================
   MOBILE OPTIMIERUNG
   ============================================================= */

@media (max-width: 600px) {

    .single-natural-image {
        gap: 8px;
    }

    /* Auch mobil bleibt der Header fixiert und der Inhalt startet
       zunächst darunter. Beim Scrollen läuft er unter dem Header durch. */
    .site-header {
        width: 100vw;
        height: 130px;
    }

    .site-footer {
        width: 100vw;
 	padding: 2px 16px;
	line-height: 1.2;
        font-size: 0.8rem;
    }

    .content {
        margin-top: 130px;
	padding-bottom: 50px;
    }

    /* Das statische Hintergrundbild beginnt auch mobil direkt
       unterhalb des 190px hohen Headers. */
    .content::before {
        top: 130px;
        width: 100vw;
        background-size: 100% auto;
        background-position: center top;
    }


    .site-header {
        height: 130px;
    }

    .logo-link {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .logo {
        width: 105px;
        height: 105px;
    }

    .menu-toggle {
        top: 50%;
        right: 12px;
        width: 48px;
        height: 48px;
        transform: translateY(-50%);
    }

    .main-navigation {
        top: 68px;
        right: 12px;
        width: min(220px, calc(100vw - 24px));
    }

    .content {
        padding: 24px 18px 34px;
    }

    .page-section h1 {
        font-size: 1.75rem;
    }

    .image-row {
        gap: 8px;
    }

    .image-row + .image-row {
    	margin-top: 8px;
    }

    .image-row img {
        border-radius: 3px;
    }

    .start-single-image img {
    width: calc((100% - 16px) / 3);
    }
    .table-section td {
        font-size: 1rem;
    }

    .table-section table {
	width: 70%;
        padding: 5px;
    }

    .table-section2 table {
        padding: 5px;
    }

    .info-table-section {
    	width: 100%;

    }

    .site-footer {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* Mobilegeräte im Querformat: kompakter Header, damit der Inhalt
   nicht fast die gesamte Bildschirmhöhe einnimmt. */
@media (max-width: 900px) and (orientation: landscape) {
    .site-header {
        height: 72px;
    }

    .content {
        margin-top: 72px;
    }

    .content::before {
        top: 72px;
        background-size: 100% auto;
        background-position: center top;
    }

    .logo-link {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .logo {
        width: 58px;
        height: 58px;
    }

    .menu-toggle {
        top: 50%;
        right: 12px;
        width: 52px;
        height: 52px;
        transform: translateY(-50%);
    }

    .main-navigation {
        top: 62px;
        right: 12px;
    }
}

/* Sehr kleine Mobilgeräte */
@media (max-width: 380px) {
    .single-natural-image {
        gap: 5px;
    }

    .start-single-image img {
        width: calc((100% - 10px) / 3);
    }

    .content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .image-row {
        gap: 5px;
    }

    .image-row + .image-row {
    	margin-top: 5px;
    }

    .table-section td {
        font-size: 1rem;
    }
}

/* =============================================================
   KONTAKTFORMULAR – ZUSÄTZLICHE FELDER
   ============================================================= */

.contact-form .form-field {
    margin-bottom: 20px;
}

.contact-form .form-field > label {
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    font: inherit;
    line-height: 1.4;
    color: #222222;
    background: #ffffff;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select {
    min-height: 44px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(55, 131, 126, 0.28);
    outline-offset: 1px;
    border-color: #37837E;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.required-mark {
    color: #865817;
}

.optional-label {
    font-size: 0.85em;
    font-weight: normal;
}

.whatsapp-option {
    display: flex !important;
    align-items: flex-start;
    gap: 9px;
    margin: 0 0 22px !important;
    color: #865817;
    font-weight: normal !important;
    font-size: 1rem !important;
    line-height: 1.4;
    cursor: pointer;
}

.whatsapp-option input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #37837E;
    cursor: pointer;
}

.message-field {
    margin-bottom: 0 !important;
}

.contact-form select {
    appearance: auto;
    box-sizing: border-box;
    width: 100%;
    padding: 11px 12px;
    font: inherit;
    line-height: 1.4;
    color: #222222;
    background: #ffffff;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
}

.contact-form input[type="date"] {
    box-sizing: border-box;
    width: 100%;
    padding: 11px 12px;
    font: inherit;
    line-height: 1.4;
    color: #222222;
    background: #ffffff;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
}

.contact-form select:focus,
.contact-form input[type="date"]:focus {
    outline: 2px solid rgba(55, 131, 126, 0.28);
    outline-offset: 1px;
    border-color: #37837E;
}

.field-hint {
    margin: 7px 0 0;
    color: #666666;
    font-size: 0.8rem;
    line-height: 1.45;
}

.contact-form input:disabled,
.contact-form select:disabled {
    background: #eeeeee;
    color: #888888;
    border-color: #cccccc;
    cursor: not-allowed;
    opacity: 1;
}

.contact-form .form-field.is-disabled > label {
    color: #999999;
}

.contact-form .form-field.is-disabled .field-hint {
    color: #888888;
}

@media (max-width: 600px) {
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form input[type="date"],
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }
}


/* =============================================================
   CLOUDFLARE TURNSTILE – KONTAKTFORMULAR
   ============================================================= */

.turnstile-wrapper {
    margin-top: 24px;
    margin-bottom: 18px;
}

.turnstile-wrapper .cf-turnstile {
    width: 100%;
    max-width: 500px;
}

.turnstile-note {
    margin: 8px 0 0;
    color: #666666;
    font-size: 0.8rem;
    line-height: 1.45;
}
