:root {
	--color-teambuilding: #FCD0B8;
	--color-offer: #EEEAF4;
    --color-work: #CECBC0;
    --color-ourteam: #F9F7EE;
    --color-contact: #FFFFFF;
	
    --color-orange: #EB5627;
    --color-purple: #B5AFD6;
    --color-beige: #F1E6D0;
    --color-green: #4C5128;
    --color-dark: #16120D;
		--color-grey: #CECDCD;
	
    --color-text-light: #ffffff;
    --color-text-dark: #16120D;

    --color-button: #4C5128;
    --color-button-hover: #36401f;

    --side-padding: 160px;
    --bottom-padding: 80px;
    --max-width: 1780px;
	--header-height: 112px;     /* Headerhöhe */	
    --nav-gap: 40px;            /* Abstand zwischen Menülinks */
    --overlay-top: 0.25;        /* 25 % Deckkraft für Header-Verlauf */	

}

@media (max-width: 1200px) {
    :root { --side-padding: 60px; }
}
@media (max-width: 992px) {
    :root { --side-padding: 20px; }
}
@media (max-width: 600px) {
    :root { --side-padding: 20px; }
}


/* ===========================================
   Fonts – lokal eingebunden
   =========================================== */
@font-face {
    font-family: 'Montserrat';
    src: url('../Fonts/Montserrat/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../Fonts/Montserrat/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../Fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../Fonts/Montserrat/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



/* Body */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #000000;   /* Schwarze Grundfarbe, nur beim laden sichtbar */
    color: var(--color-text-light);        /* Standardschriftfarbe Weiß */
    overflow-x: hidden;    /* verhindert horizontales Scrollen */
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
	
}

/* Headings */
h1 {
    font-weight: 600;
    font-size: 64px;
    line-height: 1.1;
}

h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
}

h4 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.05em;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
}

h6 {
    font-weight: 600;
    font-size: 14px;
}

/* Allgemeine Klassen */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



/* Header */




/* Logo */
.logo {
    margin-right: 40px; /* Abstand zum Menü */
}

.logo img {
    height: 40px;
    display: block;
}

/* Navigation direkt neben dem Logo */
.main-nav {
    display: flex;
    gap: 40px;
    flex-grow: 1; /* nimmt Platz zwischen Logo und Button ein */
    justify-content: center;
    margin-right: auto; /* schiebt das Menü nach links, Button rückt automatisch nach innen */
}	

/* Hauptnavigation als UL horizontal anzeigen */
.main-nav ul {
    display: flex;
    gap: 40px;      /* Abstand zwischen den Menüpunkten */
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--color-beige);
}

/* ===========================================
   HEADER FIXED + CTA POSITION KORRIGIERT
   =========================================== */

/* ====== Design-Grid aus dem PDF ====== */
:root {
    --side-padding: 160px;      /* 160 px links/rechts (12-Column Grid) */
    --header-height: 112px;     /* Headerhöhe laut PDF */
    --nav-gap: 40px;            /* Abstand zwischen Menülinks */
    --overlay-top: 0.25;        /* 25 % Deckkraft für Header-Verlauf */
}

/* ====== HEADER nach Measurements ====== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--header-height);
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 var(--side-padding);   /* 160 px innen links/rechts */
    z-index: 1000;

    /* leichter Verlauf wie im PDF (20–30 %) */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,var(--overlay-top)) 0%,
        rgba(0,0,0,0) 100%
    );
}

/* Logo (gemessen ~40px hoch passt gut zum 112px Header) */
header .logo { display:flex; align-items:center; margin-right: 2rem; }
header .logo img { height: 40px; width: auto; }

/* Navigation direkt nach dem Logo, nicht zentriert */
header .main-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;                /* füllt den Raum zwischen Logo und CTA */
    justify-content: flex-start; /* Menü hängt am Logo */
}
header .main-nav ul {
    display: flex;
    gap: var(--nav-gap);         /* 40 px zwischen Links */
    margin: 0;
    padding: 0;
    list-style: none;
}

/* =====================================================================
   Wenn kein Hero, Header und page-content etwas anders konfigurieren 
   ===================================================================== */
.has-no-hero .site-header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.has-no-hero .site-header .main-nav a {
    color: var(--color-dark);
}

.has-no-hero .site-header .main-nav a:hover {
    color: var(--color-green);
}

.has-no-hero .page-content {
    padding-top: var(--header-height);
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
		padding-bottom: var(--bottom-padding);
		background-color: var(--color-grey);
		color: var(--color-dark);
}
/*
.has-no-hero .page-content h1,
.has-no-hero .page-content h2,
.has-no-hero .page-content h3 {
    padding-top: var(--header-height);
}
*/
/*
.has-no-hero .page-content > .frame:first-child {
  padding-top: var(--header-height);
}
*/

/*
.has-no-hero .page-content header + p,
.has-no-hero .page-content h1 + p,
.has-no-hero .page-content h2 + p,
.has-no-hero .page-content h3 + p {
  padding-top: var(--header-height);
}
*/



/* END Wenn kein Hero, Header und page-content etwas anders konfigurieren 
   ====================================================================== */



/* CTA "Jetzt buchen" – grün, klarer Innenabstand */

/* ===========================================
   HEADER BUTTON "JETZT BUCHEN" (SVG STATES)
   =========================================== */
.cta-button {
    display: inline-block;
    width: 180px;                        /* aus PDF abgeleitet oder an SVG anpassen */
    height: 46px;
    background: url('../Images/Button - Jetzt Buchen Header/ktr-jetzt-buchen-header-default.svg') no-repeat center;
    background-size: contain;
    text-indent: -9999px;                /* Text bleibt für Screenreader */
    overflow: hidden;
    border: none;
    cursor: pointer;
    flex-shrink: 0;                      /* nicht zusammendrücken */
    transition: background 0.2s ease;
}

.cta-button:hover {
    background-image: url('../Images/Button - Jetzt Buchen Header/ktr-jetzt-buchen-header-hover.svg');
}

.cta-button:active {
    background-image: url('../Images/Button - Jetzt Buchen Header/ktr-jetzt-buchen-header-clicked.svg');
}

.cta-button:disabled,
.cta-button[disabled] {
    background-image: url('../Images/Button - Jetzt Buchen Header/ktr-jetzt-buchen-header-disabled.svg');
    cursor: not-allowed;
    opacity: 0.85;
}

/********** Responsive BEHAVIOR **********/
@media (max-width: 900px) {
 
	header .cta-button {
        width: 150px;
        height: 40px;
    }
}


/* ====== Hero an Grid koppeln (passt zu deinem letzten Stand) ====== */
.hero { padding: 0 var(--side-padding) 248px var(--side-padding); } /* 160/248/160 */

/* ====== Responsive: Side-Padding staffeln ====== */
@media (max-width: 1200px) {
    :root { --side-padding: 60px; }   /* etwas schmaler, bleibt grid-treu */
}
@media (max-width: 992px) {
    :root { --side-padding: 40px; }
    header { min-height: 96px; }
    header .logo img { height: 36px; }
}
@media (max-width: 600px) {
    :root { --side-padding: 20px; }
    header { min-height: 84px; }
    header .logo img { height: 32px; }
    header .main-nav ul { gap: 20px; }
    header .cta-button { padding: 10px 20px; font-size: .95rem; }
}



/* ===========================================
   HERO SECTION – nach PDF-Measurements
   =========================================== */
.hero {
    width: 100%;
    height: 1080px;                 /* laut PDF */
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;          /* Textblock unten */
    justify-content: flex-start;    /* Textblock links */
    text-align: left;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;

    /* laut PDF: 160px links, 248px unten */
    padding: 0 var(--side-padding) 248px var(--side-padding);
}

/* Overlay mit 30 % Opazität */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* laut PDF */
    z-index: 0;
}

/* Container/Textblock */
.hero .container {
    position: relative;
    z-index: 1;
    max-width: 640px;               /* laut PDF */
}

/* Headline */
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-transform: none;
}

/* Hero sizes */
.hero--large  { height: 1080px; }
.hero--medium { height: 600px; }
.hero--small  { height: 300px; }

/* Hero Text alignment */
.hero--default {
    text-align: left;
}

.hero--default .container {
    margin-left: 0;
    margin-right: auto;
}

.hero--center {
    justify-content: center;      /* Textblock vertikal mittig */
    text-align: center;
}

.hero--center .container {
    margin-left: auto;
    margin-right: auto;
}



@media (max-width: 600px) {
    .hero {
        height: 30vh;
        padding: 0 40px 120px 40px;
    }

    .hero .container {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 900px) {
    .hero {
        height: 40vh;                 /* ↓ deutlich niedriger */
        min-height: 320px;            /* Sicherheit */
        max-height: 520px;
        padding: 0 24px 96px 24px;
        background-position: center center;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}




/* ===========================================
   BASIS-SECTIONS (gemeinsam für Teambulding Offer, Team, Work, Contact)
   =========================================== */

/* Grundstruktur jeder Section */
.section {
    width: 100%;
    padding: 248px var(--side-padding);
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Innerer Container (zentriert, max. Breite) */
.section-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1600px;
    width: 100%;
}

/* Textbereich */
.section-text {
 /*   max-width: 600px;*/
	width: 680px;
    color: var(--color-dark);
}

.section-text h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-text p {
    font-size: 18px;
    line-height: 1.5;
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Bildbereich */
.section-image img {
    width: auto;
	height: 680px;
    border-radius: 0px;
    object-fit: cover;
}

.section-image {
    position: relative; /* Container als Bezugspunkt */
}

/* ===========================================
   GLOBAL RESPONSIVE FIX (K6)
   =========================================== */
@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    .section,
    .section-flex,
    .hero,
    .section-contact {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding-left: var(--side-padding);
        padding-right: var(--side-padding);
		padding-top: 20px !important;
		padding-bottom: 20px !important;
		
    }
	


    .section-inner,
    .section-flex .section-inner,
    .section-contact .section-inner {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
}


/* ===========================================
   BUTTON "MEHR ERFAHREN" (SVG STATES)
   =========================================== */
.btn-primary {
    display: inline-block;
    width: 200px;                    /* laut PDF ca. 200 px Breite */
    height: 56px;                    /* optisch aus SVG abgeleitet */
    background: url('../Images/Button - Mehr Erfahren/ktr-mehr-erfahren-default.svg') no-repeat center;
    background-size: contain;
    border: none;
    text-indent: -9999px;            /* Text ausblenden, aber Screenreader-freundlich */
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s ease;
	margin-top: 86px;
}

.btn-primary:hover {
    background-image: url('../Images/Button - Mehr Erfahren/ktr-mehr-erfahren-hover.svg');
}

.btn-primary:active {
    background-image: url('../Images/Button - Mehr Erfahren/ktr-mehr-erfahren-clicked.svg');
}

.btn-primary:disabled,
.btn-primary[disabled] {
    background-image: url('../Images/Button - Mehr Erfahren/ktr-mehr-erfahren-disabled.svg');
    cursor: not-allowed;
    opacity: 0.8;
}


/* ==========================================================
   NEUES ELEMENT: Flex Section
   (gemeinsam für Offer, Work, Team, Contact)
   ========================================================== */

.section-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    background-color: var(--color-light);
	max-height: 1080px;
}

.section-flex .section-inner {
    display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1600px;
    width: 100%;
	// margin: 0 auto;
    // position: relative;
	padding-right: 0; /* optional */

}

/* Text links – mehr Platz rechts (Bildseite) */
.section-flex.layout-left {
   padding: 160px var(--side-padding) 240px var(--side-padding);
}

/* Text rechts – mehr Platz links (Bildseite) */
.section-flex.layout-right {
    padding: 160px var(--side-padding) 240px var(--side-padding);
	
}

.section-flex.layout-right .section-inner {
    flex-direction: row-reverse;
}

.section-flex.layout-left .section-inner {
    flex-direction: row;
}
 
.section-flex .section-text {
	flex: 0 0 640px;   /* keine Veränderung erlaubt */
    width: 680px;
    color: var(--color-dark);
}

.section-flex .section-text h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-flex .section-text p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.section-flex .section-image {
	flex: 1 1 auto;
    text-align: right;
    position: relative;
	height: 680px;
	overflow: visible; /* Symbol darf hinausragen */
}

.section-flex .section-image img {
	width: 100%;
    height: 100%;
	border-radius: 0;
    object-fit: cover;
	display: block;
}

/* ==========================================================
   BUTTON "MEHR ERFAHREN" – SVG-Hintergrund + variabler Text
   ========================================================== */

.section-flex .btn-primary{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 64px;
  margin-top: 60px;

  /* Text sichtbar sicherstellen (gegen evtl. Alt-Styles) */
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;            /* keine seltsamen Vertikal-Effekte */
  text-indent: 0;            /* alte Offscreen-Techniken neutralisieren */
  white-space: nowrap;
  border: 0;
  background: none;          /* Hintergrund kommt im ::before */
  cursor: pointer;
}

/* SVG-Hintergrund als eigenes Layer */
.section-flex .btn-primary::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url('../Images/Button green - Neutral/ktr-green-neutral-default.svg') no-repeat center / contain;
  z-index: 1;
  pointer-events: none;      /* Hover/Click gehen an den Button, nicht an das Pseudo */
  transition: background-image .15s ease;
}

/* Der Text-Layer sitzt darüber */
.section-flex .btn-primary > span{
  position: relative;
  z-index: 2;
  pointer-events: none;      /* verhindert, dass der Text das Hover "unterbricht" */
}

/* Hover/Active/Disabled Zustände */
.section-flex .btn-primary:hover::before{
  background-image: url('../Images/Button green - Neutral/ktr-green-neutral-hover.svg');
}
.section-flex .btn-primary:active::before{
  background-image: url('../Images/Button green - Neutral/ktr-green-neutral-clicked.svg');
}
.section-flex .btn-primary:disabled,
.section-flex .btn-primary[disabled]{
  color: #888 !important;
  cursor: not-allowed;
}
.section-flex .btn-primary:disabled::before,
.section-flex .btn-primary[disabled]::before{
  background-image: url('../Images/Button green - Neutral/ktr-green-neutral-disabled.svg');
}


/* ==========================================================
   Deko-Symbol – dynamisch über CSS-Variablen
   ========================================================== */ 

/* Basis: unsichtbar + nach unten verschoben */
.section-image .deco {
  position: absolute;
  bottom: -130px;
  width: 260px;
  height: 260px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1.2s ease, opacity 1.2s ease;
  z-index: 2;
}

/* Default (rechtsbündig) */
.section-flex.layout-left .section-image .deco {
  right: -65px;
}

/* Gespiegelt bei Layout-Right, aber ohne Transform-Konflikt */
.section-flex.layout-right .section-image .deco {
  left: -40px;
  right: auto;
  /* transform: translateY(100px);  kein scaleX(-1) hier */
}
.section-flex.layout-right .section-image .deco::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transform: scaleX(-1);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: inherit;
}

/* Sichtbar, wenn im Viewport */
.section-image .deco.visible {
  opacity: var(--final-opacity, 0.4);
  transform: translateY(0);
}

.deco.mirrored {
  left: -40px;
  right: auto;
  transform: scaleX(-1) translateY(100px);
}

.deco.mirrored.visible {
  transform: scaleX(-1) translateY(0);
}


/* ==========================================================
   Responsive Verhalten
   ========================================================== */
@media (max-width: 1200px) {
    .section-flex {
        padding: 160px 120px;
    }

    .section-flex .section-inner {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .section-flex .section-text {
        width: 100%;
        max-width: 640px;
    }

    .section-flex .section-image {
        width: 100%;
        max-width: 640px;
        overflow: visible;
        order: -1;
        padding-top: 160px;
        padding-bottom: 160px;
    }
}

/* ===========================================
   SECTION CONTACT
   =========================================== */
.section-contact {
    background-color: var(--color-contact);
    color: var(--color-dark);
    height: 432px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

/* --- Inner: nutzt feste Höhe + Padding oben --- */
.section-contact .section-inner {
    max-width: 1600px;
    width: 100%;
    height: 100%;   /* ✅ NEU: übernimmt exakt die Höhe von .section-contact */
    display: flex;
    justify-content: space-between;
    align-items: baseline;           /* Baseline Alignment laut PDF */
    box-sizing: border-box;
}

/* Linker Block */
.contact-left {
    display: flex;
    align-items: baseline;
	padding-top: 192px;
}

.contact-left h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.arrow-black-inline {
    width: 40px;
    height: 36px;
    margin-left: 8px;
    transform: translateY(1px);
}

/* Rechter Block */
.contact-right {
    display: flex;
    align-items: baseline;
	align-items: center; /* statt baseline → gleiche vertikale Mitte */
    gap: 80px;                       /* Abstand Text ↔ Kreis */
    padding-top: 12px;               /* 204 − 192 = Differenz laut PDF */
}

.contact-right h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.arrow-orange {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    transform: translateY(-4px);
    transition: transform 0.5s ease; /* 🔹 smooth timing */
}

/* Hover-Effekt */
.contact-right:hover .arrow-orange {
    transform: translate(-8px, -4px); /* 🔹 8 px nach links, gleiche Höhe */
}

/* ===========================================
   SECTION CONTACT – Mobile Optimierung FIXED
   =========================================== */
@media (max-width: 900px) {
  .section-inner { max-width: 100% !important; }
  .section      { justify-content: flex-start !important; }
}
   
   
@media (max-width: 600px) {
    .section-contact {
        height: auto; /* keine feste Höhe */
        // padding: 100px var(--side-padding); /* sichtbarer Rand! */
        text-align: left;
        justify-content: flex-start; /* nicht komplett mittig */
    }

    .section-contact .section-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        width: 100%;
        max-width: 100%; /* keine feste Breite erzwingen */
        padding: 0 var(--side-padding); /* interner Abstand ebenfalls */
        box-sizing: border-box;
    }

    .contact-left {
        padding-top: 0;
    }

    .contact-left h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .arrow-black-inline {
        width: 28px;
        height: 26px;
        margin-left: 6px;
    }

    .contact-right {
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding-top: 0;
    }

    .contact-right h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .arrow-orange {
        width: 80px;
        height: 80px;
    }
}

/* ===========================================
   SECTION Offer
   =========================================== */

.offer-steps {
    background: #ffffff;
    color: #000000;	
		padding: 0px;		
}

.offer-steps .section-inner {
    max-width: 1288px;   /* exakt Gridbreite */
    margin: 0 auto;      /* DAS zentriert alles */
}

/*
.offer-step {
    counter-increment: offer-step;
    display: grid;
    grid-template-columns: 60px 760px 400px;
    column-gap: 160px;
    align-items: start;
		margin-bottom: 84px; 
}
*/
.offer-step {
    counter-increment: offer-step;
    display: grid;
    grid-template-columns: 32px 760px 400px;
    column-gap: 48px;          /* statt 160px */
    align-items: start;
    margin-bottom: 84px;
}


.offer-step::before {
    content: counter(offer-step) ".";
    font-size: 64px;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;  
    align-self: start;
		font-size: 32px;   
}

.offer-step-content {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-step-title {
    margin: 0;
		color: #000000;
}

.offer-step-text {
    margin: 0;
		color: #000000;
}

.offer-step-image {
    width: 400px;
}

.offer-step-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 260;
    object-fit: cover;
    display: block;
}

.offer-step + .offer-step {
    margin-top: 84px;
}


/* ===========================================
   SECTION Offer Mobile
   =========================================== */

@media (max-width: 992px) {  // 600 px ??
	.offer-step {
			display: block;          /* Grid AUS */
			margin-bottom: 84px;
	}

	.offer-step::before {
			font-size: 48px;
	}

	.offer-step-image {
			width: 100%;
			max-width: 400px;
	}
		
	.offer-step-content {
		max-width: none;         /* 760px aufheben */
		width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}

	.offer-step-content::before {
			content: counter(offer-step) ".";
			font-size: 32px;
			font-weight: 700;
			color: #000000;
			margin-bottom: 12px;
			display: block;
	}
	
	/* DESKTOP-NUMMER AUS */
	.offer-step::before {
			content: none;
	}

	/* DESKTOP-INCREMENT AUS */
	.offer-step {
			counter-increment: none;
	}	
	
	.offer-step-image {
		width: 100%;
		max-width: none;
		margin-top: 24px;
		padding-left: 24px;
		padding-right: 24px;
	}

	.offer-step-image img {
		width: 100%;
		height: auto;
		aspect-ratio: 400 / 260;
		object-fit: cover;
		display: block;
	}

}

@media (max-width: 992px) {
  .offer-step {
    display: flex;
    flex-direction: column;
    margin-bottom: 84px;
  }

  .offer-step-content {
		counter-increment: offer-step;
    max-width: none;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
		box-sizing: border-box;
  }

  .offer-step-image {
    width: 100%;
    max-width: none;
    margin-top: 24px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .offer-step-image img {
    width: 100%;
    height: auto;
    display: block;
  }

}




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

/* Footer */
footer {
    background: #000; /* komplett schwarz */
    color: #fff; 
    padding: 60px 40px 30px;
    font-size: 14px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: #ccc;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a,
.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-beige);
}

.footer-social img {
    height: 20px;
    filter: invert(1); /* falls Icon schwarz ist → invertiert auf weiß */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #aaa;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-top: 8px;
    display: inline-block;
}

.footer-right .copyright {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.8;
}

/* ===========================================
   HEADER SCROLL STATE (K6)
   =========================================== */
.site-header {
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,var(--overlay-top)) 0%,
        rgba(0,0,0,0) 100%
    );
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .main-nav a {
    color: var(--color-dark);
}

.site-header.scrolled .main-nav a:hover {
    color: var(--color-green);
}

/* Logo-Wechsel-Animation */
.site-header .logo-img {
    transition: opacity 0.3s ease;
}

/* ===========================================
   MOBILE WIDTH FIX – kompakt und sicher
   =========================================== */
@media (max-width: 900px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section,
  .section-flex,
  .hero,
  .section-contact {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section-inner,
  .section-flex .section-inner,
  .section-contact .section-inner {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}



/* ===========================================
   SECTION-FLEX – Mobile Fix (Text + Layout)
   =========================================== */
@media (max-width: 900px) {
  /* Spaltenlayout + volle Breite nutzen */
  .section-flex .section-inner {
    flex-direction: column !important;
    align-items: stretch !important;   /* statt center */
    gap: 40px !important;
  }

  /* WICHTIG: starre Breiten der Textspalte aufheben */
  .section-flex .section-text {
    flex: 1 1 auto !important;  /* statt 0 0 640px */
    width: auto !important;      /* statt 680px */
    max-width: 100% !important;
    min-width: 0 !important;     /* verhindert Abschneiden in Flexbox */
  }

  /* Falls sehr lange Worte/Links vorkommen */
  .section-flex .section-text * {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Bildspalte mobil */
  .section-flex .section-image {
    width: 100% !important;
    height: auto !important;     /* statt 680px */
    overflow: hidden !important; /* Überhang vermeiden */
    order: -1;                   /* Bild über Text */
    min-width: 0 !important;
  }

  .section-flex .section-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  /* Deko mobil ausblenden (verhindert Hinausragen) */
  .section-flex .section-image .deco {
    display: none !important;
  }
}

/* ===========================================
   SECTION-FLEX – Mobile: Bild bündig am Rand
   =========================================== */
@media (max-width: 900px) {
  /* Bild auf volle Breite, bündig */
  .section-flex .section-image {
    width: 100vw !important;         /* echte Viewport-Breite */
    margin-left: calc(-1 * var(--side-padding)) !important;
    margin-right: calc(-1 * var(--side-padding)) !important;
    overflow: hidden !important;
  }

  .section-flex .section-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Text bleibt im Grid-Padding */
  .section-flex .section-text {
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
  }
}

/* ===========================================
   SECTION-FLEX – Mobile Reihenfolge Bild nach Text
   =========================================== */
@media (max-width: 900px) {
  .section-flex .section-inner {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* Text zuerst */
  .section-flex .section-text {
    order: 1 !important;
  }

  /* Bild danach */
  .section-flex .section-image {
    order: 2 !important;
    width: 100vw !important;
    margin-left: calc(-1 * var(--side-padding)) !important;
    margin-right: calc(-1 * var(--side-padding)) !important;
    overflow: hidden !important;
  }

  .section-flex .section-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Text bleibt eingerückt */
  .section-flex .section-text {
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
  }

  /* Deko-Elemente ausblenden (verhindert Überhang) */
  .section-flex .section-image .deco {
    display: none !important;
  }
}

/* ===========================================
   SECTION-FLEX – Mobile Höhe + Padding-Fix
   =========================================== */
@media (max-width: 900px) {
  /* Section darf beliebig hoch sein */
  .section-flex {
    max-height: none !important;
    height: auto !important;
    padding-top: 00px !important;   /* statt 160px oder 240px */
    padding-bottom: 20px !important;
    box-sizing: border-box;
  }

  /* Textblock enger */
  .section-flex .section-text {
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    padding-top: 0;
    padding-bottom: 40px;
  }

  /* Bild wieder sichtbar, automatisch skalierend */
  .section-flex .section-image {
    width: 100vw !important;
    height: auto !important;
    overflow: hidden !important;
    margin-left: calc(-1 * var(--side-padding)) !important;
    margin-right: calc(-1 * var(--side-padding)) !important;
  }

  .section-flex .section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  /* Deko-Elemente deaktivieren */
  .section-flex .section-image .deco {
    display: none !important;
  }
}

/* ===========================================
   SECTION-FLEX – Mobile: doppelte Einrückung entfernen
   =========================================== */
@media (max-width: 900px) {
  /* Äußeres Padding (Section) verringern */
  .section-flex.layout-left,
  .section-flex.layout-right {
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* Inneres Padding im Text entfernen */
  .section-flex .section-text {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    box-sizing: border-box;
  }

  /* Typografie etwas großzügiger (optional) */
  .section-flex .section-text h2,
  .section-flex .section-text h3 {
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .section-flex .section-text p {
    margin-bottom: 16px;
    line-height: 1.5;
  }
}


/* ===========================================
   SECTION-FLEX – Mobile: finale Abstandsreduktion
   =========================================== */
@media (max-width: 900px) {
  /* Textblock enger fassen */
  .section-flex .section-text {
    padding-bottom: 20px !important;
  }

  /* Button kompakter */
  .section-flex .section-text .btn,
  .section-flex .section-text .cta-button {
    margin-top: 16px !important;
    margin-bottom: 12px !important;  /* 🔹 weniger Luft danach */
  }

  /* Letzter Absatz direkt vor dem Button etwas dichter */
  .section-flex .section-text p:last-of-type {
    margin-bottom: 8px !important;
  }

  /* Section selbst unten kompakter */
  .section-flex {
    padding-bottom: 40px !important;
  }

  /* Bild bündig mit nachfolgendem Abschnitt */
  .section-flex .section-image {
    margin-bottom: 0 !important;
    padding-top: 0 !important;
	padding-bottom: 0 !important;
  }
}


/* ===========================================
   HERO SECTION – Mobile: Textblock unten
   =========================================== */
@media (max-width: 900px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end !important;   /* Text nach unten */
    align-items: flex-start !important;     /* linksbündig */
    height: 30vh;                           /* Höhe dynamisch */
    padding-bottom: 40px !important;        /* Abstand zum unteren Rand */
    padding-top: 0 !important;
    background-position: center top;
  }

  .hero .container {
    max-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0;
  }
}


/* ===========================================
   BURGER MENU – Farbe abhängig vom Header-Scrollstate
   =========================================== */

/* Desktop: kein Burger */
.burger {
    display: none;
}

/* Mobile */
@media (max-width: 900px) {

    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        width: 28px;
        height: 20px;

        background: none;
        border: 0;
        padding: 0;
        cursor: pointer;

        z-index: 1002; /* über Header & Menü */
    }

    /* Standard: Header transparent → Burger weiß */
    .burger span {
        display: block;
        height: 4px;
        width: 100%;
        background: #ffffff;
        transition: background 0.25s ease;
    }

    /* Header gescrollt (weiß) → Burger schwarz */
    .site-header.scrolled .burger span {
        background: var(--color-dark);
    }

    /* Menü offen (schwarzer Block darunter) → Burger wieder weiß */
    .main-nav.open ~ .burger span,
    .site-header.scrolled .main-nav.open ~ .burger span {
        background: #ffffff;
    }
}


/* ===========================================
   HEADER – Mobile: CTA ausblenden
   =========================================== */
@media (max-width: 900px) {
    header .cta-button {		
        display: none !important;	/* nur im Header ausblenden */
    }
}


/* ===========================================
   MOBILE MENU – unter Header, initial geschlossen
   =========================================== */
@media (max-width: 900px) {

    /* Header bleibt wie er ist */
    header {
        background: #ffffff;
        z-index: 1000;
    }

    /* MAIN NAV wird zum Mobile-Panel */
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-height));

        background: #000000;
        color: #ffffff;

        overflow-y: auto;
        visibility: hidden;
        pointer-events: none;

        z-index: 999;
    }
		

    .main-nav {
        display: flex;
        flex-direction: column;   /* 🔴 DAS ist der Schlüssel */
        align-items: stretch;
				margin-top:-28px;	/* Symtomkosmetik */
    }

		

    /* geöffnet */
    .main-nav.open {
        visibility: visible;
        pointer-events: auto;
    }

    /* Hauptmenü UL */
    .main-nav > ul {
        margin: 0;
        padding: 0;
        display: flex;
				gap: 0px !important;
				width: 100%;
        flex-direction: column;
    line-height: 1;   /* 🔴 entscheidend */
        font-size: 0;    /* 🔴 killt den oberen Line-Box-Raum */
    				
    }

    /* Menüeinträge */
    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .main-nav a {
        display: block;
        padding: 18px 24px;
        color: #ffffff !important;
        font-size: 18px;
        text-decoration: none;
        font-weight: 500;
    }

    .main-nav a:hover,
    .main-nav a:active {
        background: rgba(255,255,255,0.08);
    }
}


/* ==========================================================
   KTR Section Offer Heading
   ========================================================== */

.section-heading {
    background: #ffffff;
    color: #000000;
    padding-top: 128px;
    padding-bottom: 88px;
    counter-reset: offer-step;

}

.section-heading-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* Unterüberschrift */
.section-heading-sub {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark);
    opacity: 0.6;
}

/* Hauptüberschrift */
.section-heading-title {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
}

/* ===========================================
   MOBILE HEADING(nur im Mobile-Menü)
   =========================================== */


@media (max-width: 900px) {
	/* Hauptüberschrift */
	.section-heading-title {
			margin: 0;
			font-size: 38px;
			font-weight: 600;
			line-height: 1.2;
			color: var(--color-dark);
	}
	/*
	 .offer-step-text {
		text-align: justify;
		hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
	}
	*/
	@media (max-width: 992px) {

  .offer-step-text {
    text-align: left;
    hyphens: auto;
  }

}

	
}

/* ===========================================
   MOBILE FOOTER MENU (nur im Mobile-Menü)
   =========================================== */

/* Standard: aus */
.mobile-footer-links {
    display: none;
}

@media (max-width: 900px) {

    /* Footer-Menü Container */
    .mobile-footer-links {
        width: 100%;
        display: block;
        margin-top: 0px;
				border-top: 2px solid rgba(255,255,255,0.35);
    }

    /* Footer-Menü Liste */
    .mobile-footer-links ul {
        margin: 0;
        padding: 0;
        display: flex;
				gap: 0px !important;
        flex-direction: column;
        list-style: none;
				margin-top:0px;
    }

    /* Footer-Menü Einträge – exakt wie Hauptmenü */
    .mobile-footer-links li {
        border-bottom: 1px solid rgba(255,255,255,0.2);
/*        padding: 18px 24px !important;    */       /* 🔴 IDENTISCH */
				padding: 0 !important;
    }

    .mobile-footer-links a {
        display: block;
        color: #ffffff !important;
        font-size: 18px;              /* 🔴 IDENTISCH */
        font-weight: 500;
        text-decoration: none;
    }

    .mobile-footer-links a:hover,
    .mobile-footer-links a:active {
        background: rgba(255,255,255,0.08);
    }
}


@media (max-width: 900px) {
    .footer-links {
        display: none;
    }
}

/* ==========================================================
   KTR Section Call to Action Layout
   ========================================================== */
.section-cta {
    color: rgba(0, 0, 0);
    padding-top: 86px;
    padding-bottom: 86px;
}

.section-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px; /* Abstand Text → Button laut PDF */
}

/* ===========================================
   KTR CALL TO ACTION SECTION
   =========================================== */

.section-cta {
    padding-top: 86px;
    padding-bottom: 86px;
}

.section-cta-inner {
    max-width: 720px;          /* laut PDF */
    margin: 0 auto;
    text-align: center;
		gap: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-cta-title {
    margin: 0;
    margin-bottom: 26px;       /* Titel → Text */
}

.section-cta-text {
    margin: 0;
    margin-bottom: 34px;       /* Text → Button */
}

/* ===========================================
   KTR FORM SECTION - ********** OBSOLET ***********
	 kann gelöscht werden
   =========================================== */

/* ==========================================================
   KTR FORM 
   ========================================================== */
.section.ktr-form .section-inner {
  display: grid;
}

.ktr-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 640px);
  gap: 96px;
}


.ktr-form{
  padding: 0 0 128px 0; /* unten ok, oben kommt spaltenweise */
}

.ktr-form-title {
    margin-bottom: 32px;
}

.ktr-form > .section-inner > p {
    max-width: 720px;
    margin-bottom: 84px;
}

.ktr-form-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 128px;
}


/* letzter Block kein unnötiger Abstand */
.ktr-form-item:last-child {
    margin-bottom: 0;
}

.ktr-form-item-title {
    margin: 0 0 32px 0;

}

.ktr-form-item-text {
    margin: 0;
    line-height: 1.6;
}

/* ==================================
* FORM FOR
====================================*/
/* ==================================
   FORM
==================================== */

/* ---------- FORM-GRID ---------- */
/* NUR die sichtbaren Form-Gruppen sind Grid-Items */
.ktr-form-form form {
  display: block;
}

/* ---------- FORM-GROUP ---------- */
.ktr-form-form .form-group {
  width: auto;
  margin-bottom: 8px;
}

/* ---------- LABEL ---------- */
.ktr-form-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5f5f5f;
}

/* ---------- INPUTS ---------- */
.ktr-form-form input[type="text"],
.ktr-form-form input[type="email"],
.ktr-form-form input[type="tel"],
.ktr-form-form textarea {
  width: 100%;
  background-color: #F6F6F4;
  border: none;
  border-radius: 0;
  padding: 14px 14px;
  font-size: 16px;
  color: #000;
  box-sizing: border-box;
}

.ktr-form-form input:focus,
.ktr-form-form textarea:focus {
  outline: none;
  background-color: #f0eee8;
}

.ktr-form-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------- TYPO3-ÜBERSCHRIFT AUSBLENDEN ---------- */
.ktr-form-form h2 {
  display: none;
}

/* ===========================================
   Mobile
   =========================================== */
@media (max-width: 900px) {
  .ktr-form {
    padding: 84px 0;
  }

  .ktr-form .section-inner {
    padding: 0 24px;
  }

  .ktr-form-form {
    max-width: 100%;
  }
}


/* Formular bekommt eigenes Styling */
.ktr-form-form button[type="submit"] {
  background: url('../Images/Button green - Neutral/ktr-green-neutral-default.svg')
              no-repeat center / contain;
}

.ktr-form-form button[type="submit"] {
  text-indent: 0;
  overflow: visible;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}


/* linker Inhalt */
.ktr-form-content {
  display: flex;
  flex-direction: column;
  gap: 84px;
}

/* rechter Block */
.ktr-form-form {
  max-width: 640px;
}


@media (max-width: 900px) {
  .ktr-form-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}




/* ===========================================
   FOOTER – Mobile Anpassung
   =========================================== */
@media (max-width: 900px) {

    /* 1. Logo-Spalte ausblenden */
    .footer-logo {
     //   display: none;
    }

    /* 2. Footer-Container auf Spalten-Layout umstellen */
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
    }

    /* 3. Kontakt & Social untereinander */
    .footer-contact,
    .footer-right {
        width: 100%;
    }

    /* 4. Überschriften optisch sauber */
    .footer-contact h4,
    .footer-right h4 {
        margin-bottom: 12px;
    }

    /* 5. Social Media Icon etwas Luft */
    .footer-right .social-icon {
        margin-bottom: 12px;
    }

    /* 6. Copyright zentriert oder links (dein Stil) */
    .footer-right .copyright {
        margin-top: 12px;
        font-size: 14px;
        opacity: 0.85;
    }
}

/* DEBUG: alles klickbar machen */
* {
    pointer-events: auto !important;
}


/*============================================
 Kontaktseite oldschool simple basis elemente
 ============================================*/

.page-grid-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 640px);
  gap: 96px;
  align-items: start;
}

@media (max-width: 900px) {
  .page-grid-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.kontakt-layout {
  width: 100%;
  padding-left: 160px;
  padding-right: 160px;
  box-sizing: border-box;
	background-color: #cecdcd;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 800px;
  column-gap: 160px;
  align-items: start;

  max-width: 100%;
  box-sizing: border-box;

  background-color: #cecdcd; /* nur Debug, später raus */
  color: var(--color-dark);
}

.kontakt-left,
.kontakt-right {
  min-width: 0;
  box-sizing: border-box;
}

.kontakt-left > *:first-child {
  padding-top: 128px;
}

.kontakt-right {
  padding-top: 326px;
}

/* ---------- H1 ---------- */
.kontakt-left h1 {
    margin: 0 0 48px 0;
		font-size:48px;
}

/* ---------- Einleitungstext ---------- */
.kontakt-left > p:first-of-type {
    margin: 0 0 0 0;
}

/* ---------- Abschnittsüberschriften ---------- */
.kontakt-left h2 {
    margin: 84px 0 32px 0;
		font-size:28px;
}

/* letzter Absatz ohne Extra-Abstand */
.kontakt-left h2:last-of-type + p {
    margin-bottom: 196px;
}

/* ---------- Links ---------- */
.kontakt-left a {
    color: inherit;
    text-decoration: underline;
}

.kontakt-right {
    padding-top: 326px;
		padding-right: 160px;
}
.kontakt-right h2{
    display:none;
}

@media (max-width: 900px) {
  .kontakt-layout {
    padding-left: 0px;
    padding-right: 0px;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .kontakt-right {
    padding-top: 64px;
  }
}


/* ===============================
   CONTACT FORM – minimal
   =============================== */

/* Formular selbst */
.kontakt-right form {
    max-width: 800px;
}

/* Feldgruppen */
.kontakt-right .form-group {
    margin-bottom: 32px;
}

/* Labels */
.kontakt-right label {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Inputs & Textarea */
.kontakt-right input,
.kontakt-right textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;

    background: #f6f6f4;
    border: none;
    border-radius: 0;

    box-sizing: border-box;
}

/* Textarea Höhe */
.kontakt-right textarea {
    min-height: 140px;
    resize: vertical;
}

/* Fokus: nur leicht heller */
.kontakt-right input:focus,
.kontakt-right textarea:focus {
    outline: none;
    background: #f0eee8;
}

/* ===============================
   CONTACT – Primary Submit Button
   =============================== */

.kontakt-right button[type="submit"] {
    width: 196px;        /* laut Maßblatt */
    height: 46px;

    background: url('../Images/Button green - Neutral/ktr-green-neutral-default.svg')
                no-repeat center / contain;

    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: transparent;
    cursor: pointer;
		margin-bottom: 128px;
}

.kontakt-right button[type="submit"]:hover {
    background-image: url('../Images/Button green - Neutral/ktr-green-neutral-hover.svg');
}

.kontakt-right button[type="submit"]:active {
    background-image: url('../Images/Button green - Neutral/ktr-green-neutral-clicked.svg');
}

.kontakt-right button[type="submit"]:disabled {
    background-image: url('../Images/Button - Jetzt Buchen Header/ktr-jetzt-buchen-header-disabled.svg');
}


.kontakt-right button[type="submit"] {
  text-indent: 0;
  overflow: visible;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


@media (max-width: 900px) {
  .kontakt-right {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 900px) {
  .kontakt-left,
  .kontakt-right {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .kontakt-right form,
  .kontakt-right input,
  .kontakt-right textarea {
    width: 100%;
  }
	
	/* letzter Absatz ohne Extra-Abstand */
	.kontakt-left h2:last-of-type + p {
			margin-bottom: 48px;
	}
	
}

/*===============================================*
 * oranger Kontakt-Button im KTR-Section Contact *
 *===============================================*/
.contact-button {
    display: inline-block;
    text-decoration: none;
}

.contact-button:hover .arrow {
    transform: translateX(4px);
}

