/*
Theme Name: DRIA-Theme
Theme URI: https://www.sqips.de
Author: Markus Plettenberg
Author URI: https://www.sqips.de
Description: Minimalstart für ein WordPress-Theme.
Version: 1.0.0
Text Domain: dria-theme
Tags: custom
*/
:root {
    --container-max: 1400px;
    --gutter: 1.5rem;
    --bg-body: #f5f5f5;
    --bg-section: #ffffff;
    --bg-section-alt: #e9f5ff;
    --bg-full-a: #fbe5c7;
    --bg-full-b: #d9f0e6;
    --color-text: #0D2729;
    --color-accent: #0050aa;
    --focus: 3px solid #ff9900;
	--font1:"Inter", sans-serif;
	--font2:"Frank Ruhl Libre", serif;
	--beige:#C4A46D;
	--abstand:90px;
	--green:#7C8C7D;
	--grey:#2F2F2F;
	--mint:#ECEFEC;
}

:root {
    --container-max: 1400px;  /* Desktop groß */
}

@media (max-width: 1200px){
    :root {
        --container-max: 1100px;
    }
}

@media (max-width: 992px){
    :root {
        --container-max: 900px;
    }
}

@media (max-width: 768px){
    :root {
        --container-max: 600px;
    }
}

@media (max-width: 576px){
    :root {
        --container-max: 100%;
    }
}



/* Reset / Basics */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font1);
    line-height: 1.6;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	font-weight:300;
	font-size: 22px;
	/*letter-spacing:1.2px;*/
}

a {
    color: var(--color-accent);
    text-decoration: none;
}


h1,h2,h3,h4{font-family:var(--font2);  margin: 0px; letter-spacing: normal;}
h1{font-size: 64px;line-height: 70px; font-weight: 300; color: white}
h2{font-size: 64px;line-height: 70px;font-weight: 300;}
h3{font-size: 48px;line-height: 60px;font-weight: 300;}
h4{font-size: 32px;line-height: 40px;font-weight: 300;}



a:hover,
a:focus-visible {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input[type="text"]{padding:20px; background-color:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,.10); width: 100%; font-size: 16px; color:rgba(255,255,255,.70); font-family: var(--font1);}
input[type="email"]{padding:20px; background-color:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,.10); width: 100%;font-size: 16px; color:rgba(255,255,255,.70);font-family: var(--font1);}
textarea{padding:20px; background-color:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,.10); width: 100%;font-size: 16px; color:rgba(255,255,255,.70);font-family: var(--font1);}
input[type="radio"]{background-color:black;}


input[type="radio"]{
  appearance:none;
  -webkit-appearance:none;
  width:24px;
  height:24px;
  border:1px solid #fff;
  border-radius:50%;
  background:transparent;
  cursor:pointer;
  position:relative;
  vertical-align:middle;
}

input[type="radio"]::after{
  content:"";
  position:absolute;
  inset:4px;
  background:#fff;
  border-radius:50%;
  opacity:0;
  transition:0.15s ease;
}

input[type="radio"]:checked::after{
  opacity:1;
}

input[type="checkbox"]{
  appearance:none;
  -webkit-appearance:none;
  width:24px;
  height:24px;
  border:1px solid #fff;
  border-radius:50%;
  background:transparent;
  cursor:pointer;
  position:relative;
  vertical-align:middle;
	margin-left: -20px;
	margin-right: 10px;
}

input[type="checkbox"]::after{
  content:"";
  position:absolute;
  inset:4px;
  background:#fff;
  border-radius:50%;
  opacity:0;
  transition:0.15s ease;
}

input[type="checkbox"]:checked::after{
  opacity:1;
	
}

strong{font-weight: 600;}




:focus-visible {
    outline: var(--focus);
    outline-offset: 2px;
}

.mint{background-color: var(--mint)!important;}.green{background-color: var(--green)!important;}
.darkbody{background-color: var(--grey);}
.skip-link {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    padding: 0.5rem 1rem;
    background: #000;
    color: #fff;
    z-index: 1000;
    transform: translateY(-150%);
}

.skip-link:focus-visible {
    transform: translateY(0);
}

/* Container / Grid */

.container {
    width: var(--container-max)!important;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
   /* margin-left: calc(-1 * var(--gutter) / 2);
    margin-right: calc(-1 * var(--gutter) / 2);*/
}

.col {
    padding-left: calc(var(--gutter) / 2);
    padding-right: calc(var(--gutter) / 2);
    flex: 0 0 100%;
    max-width: 100%;
	 
    box-sizing: border-box;
}





.bgBlack{background-color: #000; color: white;}
.beigeText{color:var(--beige);}
/* Desktop-Standard: Spaltenbreiten */

.col-25 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-33 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* ===== Fullwidth ohne Gestaltungsraster ===== */

.full-edge {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    color: #ffffff;
    min-height: 400px;
}

.full-edge-a {
    
}

.full-edge-half {
    flex: 0 0 50%;
    max-width: 50%;
}

.full-edge-text {
    padding: 5rem 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
	flex-wrap: nowrap;
}

.full-edge-image{
	background-position: center center!important;
	background-size: cover!important;
	display: flex;
    justify-content: center;
    align-items: flex-end; /* unten ausrichten */
}


.full-edge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fullwidth Testimonial (Desktop-Standard) */

.full-bg-testimonial {
    width: 100%;
    min-height: 380px;
    padding: 4rem 0;
    background: url("https://picsum.photos/2000/1200?blur=3") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    width: auto;
    max-width: 350px;
    margin-right: 5vw;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    text-align: left;
}

.testimonial-text {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
}

.testimonial-author {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Header / Navigation */

.site-header {
    background: #ffffff;
    border-bottom: 2px solid #e9eeee;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 1.5rem;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
}

.brand-title {
    font-weight: 700;
}

/* Desktop-Nav (Standard) */

.main-nav {
    display: flex;
    align-items: center;
    position: static;
    transform: none;
    background: transparent;
    border-bottom: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
	text-transform: uppercase;
	color: #6e767f;
	font-size: 14px;
	letter-spacing:.2px
}

.nav-list a:hover {
   
	text-decoration: none;
	
}


/* Burger */

.nav-toggle {
    display: none;
    border: none;
    border-radius: 999px;
    background: none;
    padding: 0px;
    align-items: center;
    gap: 0.5rem;
}

.nav-toggle-icon {
    width: 18px;
    height: 2px;
    background: #000;
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #000;
}

.nav-toggle-icon::before {
    top: -5px;
}

.nav-toggle-icon::after {
    top: 5px;
}

/* Sections */

.section {
    padding: 3rem 0;
    background: var(--bg-section);
}

.section-alt {
    background: var(--bg-section-alt);
}

.section h1,
.section h2 {
    margin-top: 0;
}

/* Boxen */

.box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
}

.box-a { background: #eef4ff; }
.box-b { background: #f2f2f2; }
.box-c { background: #333; color: #fff; }

/* Fullwidth 50/50 Sektionen (Desktop-Standard) */

.full-section {
    width: 100%;
    padding: 3rem 0;
}

.full-section-a { background: var(--bg-full-a); }
.full-section-b { background: var(--bg-full-b); }

.full-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    flex-direction: row;
}

.full-inner-reverse {
    flex-direction: row-reverse;
}

.full-half {
    flex: 0 0 50%;
    max-width: 50%;
	display: flex;
    flex-direction: column;
    justify-content: center;
	
}

.full-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
   
}

.full-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
	background-color:var(--green);
	
}

.cardHeight{min-height: 600px}

.padding{ padding: 1.5rem;}

.full-image img {
    border-radius: 8px;
}

/* Footer */

.site-footer {
    background: #222;
    color: #fff;
    margin-top: auto;
    padding: 1.5rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-footer a {
    color: #fff;
}


.metrics-fullwidth {
    width: 100%;
    background: #000; /* wird durch Blöcke überschrieben */
    margin: 0;
    padding: 0;
}

.metrics-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Basisblock */
.metric {
    flex: 0 0 25%;
    max-width: 25%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Bildblock */
.metric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Textblock Style */
.metric-inner {
    padding: 3rem;
    color: #fff;
    text-align: left;
}

.metric-inner h4 {
    margin: 0 0 1rem 0;
    font-weight: 300;
    opacity: .8;
    letter-spacing: .5px;
}

.metric-inner h2 {
    margin: 0 0 .5rem 0;
    font-size: 2.4rem;
}

.metric-inner p {
    margin: 0;
    opacity: .9;
}

/* Farbvarianten */
.block-dark {
    background: #000;
    color: #fff;
}

.block-grey {
    background: #2F2F2F;
    color: #fff;
}
.block-grey h1{color: white;}
.block-green {
    background: #708676;
    color: #fff;
}


/* Accordion */
.fo-accordion-section {
    padding: 3rem 0;
    background: #ffffff;
}

.fo-accordion {
    border-top: 1px solid #e5e7eb;
}

.fo-acc-item {
    border-bottom: 1px solid #e5e7eb;
}

.fo-acc-header {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.fo-acc-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #122221;
}

.fo-acc-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.fo-acc-icon::before,
.fo-acc-icon::after {
    content: "";
    position: absolute;
    background: #111827;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fo-acc-icon::before {
    width: 14px;
    height: 1px;
}

.fo-acc-icon::after {
    width: 1px;
    height: 14px;
    transition: transform 0.2s ease;
}

.fo-acc-header[aria-expanded="true"] .fo-acc-icon::after {
    transform: translate(-50%, -50%) rotate(90deg); /* wird zu Minus */
}

.fo-acc-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: 
        max-height 0.65s ease,
        opacity 0.65s ease;
    will-change: max-height, opacity;
    padding: 0;
}

/* sichtbarer Inhalt */
.fo-acc-panel-inner {
    padding: 1.5rem 0 1.75rem 0;
    
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
	transition: 
        max-height 0.65s ease,
        opacity 0.65s ease;
	will-change: max-height, opacity;
}

/* Expanded (via JS hinzugefügt) */
.fo-acc-panel.is-open {
    opacity: 1;
    max-height: 500px;
	transition: 
        max-height 0.65s ease,
        opacity 0.65s ease;
	will-change: max-height, opacity;
}

.mint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Box */

.mint-box {
    background: #eef1ec;
    padding: 2.5rem;
    border-radius: 4px;
}

.mint-box-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.75;
}

.mint-box-title {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.mint-box-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
}

.paddingTop{padding-top: var(--abstand);}
.paddingBottom {
   	 padding-bottom:  var(--abstand);
	}
.paddingTopHalf{padding-top: calc(var(--abstand) / 2);}
.marginTop{margin-top: var(--abstand);}
.nomargin{margin-top: 0px!important;}
.nopadding{padding-top: 0px!important;}
.noMarginAll{margin:0px!important;}
.noMarginAll p{margin:0px!important;}



#logo{width:100px}
.hero{padding: 40px 0px}
.eyebrowHero{font-size: 22px; margin-bottom: 30px}
.eyebrow{color: #C4A46D; text-transform: uppercase; font-weight: 500; font-size: 20px; margin-bottom: 10px; letter-spacing: 2px;}
.mint-box > .eyebrow{color:#7C8C7D; margin-bottom: 20px; display: inline-block;}
.mint-box p{color:#667077; font-size: 20px; line-height: 160%}
.mint-grid{margin-top:var(--abstand);}

#leistungen{padding:60px 0px 0px 0px}
#leistungen2{padding:0px 0px var(--abstand) 0px}
#ankaufsprofile{padding:140px 0px}
.angebotIndex{
	background-color: #2F2F2F;
	color: white;
	font-family: "Frank Ruhl Libre", serif;
	font-size: 26px;
	font-weight: 300;
	padding:40px;
	display: flex;
    justify-content: space-between; /* Text links, Button rechts */
    align-items: center;   
	letter-spacing: normal;
}

.angebotIndex.hell{
	background-color: var(--mint);
	color: #0D2729;
	margin-bottom: 50px;
}



.zitatBox{
	width:400px; 
	padding:80px 30px 30px 30px; 
	background: rgba(255,255,255,0.05);
	background-image: url("img/testimonial.png");
	background-size: 40px;
	background-position: 30px 20px;
	background-repeat: no-repeat;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
	border:1px solid rgba(141,141,141,0.50);
	margin-bottom: 5rem;
	color:white;
}

.kontaktBoxLinks{
	width:400px; 
	padding:80px 30px 30px 30px; 
	background: rgba(255,255,255,0.05);
	background-image: url("img/haus.png");
	background-size: 40px;
	background-position: 30px 20px;
	background-repeat: no-repeat;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
	border:1px solid #8D8D8D;
	margin-bottom: 5rem;
}


.zitatBox div{margin-top:20px; font-size: 16px; opacity: .7; }
.kontaktBoxLinks div{margin-top:20px; font-size: 16px; opacity: .7; }
.blackCTA{background-color: #2F2F2F; padding:50px; color: white;margin-top:50px;}

.but-green{ 
	padding: 15px 20px;
    background-color: #7C8C7D;
    color: white;
    text-transform: uppercase;
    font-family: var(--font1);
    font-size: 16px;
    border-radius: 30px;
    white-space: nowrap;
	transition: .3s;
	letter-spacing: .2px;
}

.but-green:hover{ 
    color: #7C8C7D;
    background-color: white;
	text-decoration: none;
}


.greenbox{background-color: #ECEFEC; color:var(--color-text) }
.blackbox{background-color: #000; color:white;padding: 10rem 8vw; }
.cardbox{background-color: var(--green); min-height: 800px;justify-content: flex-end;}
.cardbox h2{color: var(--color-text);}
.cardbox > .eyebrow{color:#2F2F2F}

#full-testimonial{min-height: 800px; background-position: center center!important; background-size: cover!important; margin:120px 0px}

.mitarbeiter{
	min-height:600px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 20px;
	display:flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    align-content: flex-start;
}
.mitarbeiterPos{
	color: var(--beige);
	border: 1px solid var(--beige);
	padding:8px 20px;
	text-transform: uppercase;
	font-size: 16px;
	display: inline-block;
	margin:0 0px 30px 30px;
	backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
	background-color: rgba(0,0,0,0.35);
}

.mitarbeiterPos p {margin:0px;}
.newsKat{
	color: var(--beige);
	border: 1px solid var(--beige);
	padding:8px 20px;
	text-transform: uppercase;
	font-size: 16px;
	display: inline-block;
	margin:0 0px 30px 30px;
	backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
	background-color: rgba(0,0,0,0.35);
}

.kontaktMitarbeiter {margin-top:20px; display: flex; flex-wrap: nowrap;  align-items: center;}
.kontaktMitarbeiter > a > img{width:20px; float: left; margin-right: 20px}

.mitarbeiterBox{color:#667077; font-size: 22px; margin-bottom: 80px}
.mitarbeiterBox h4{color:black}

.mint-link-arrow,
.mint-link-text,
.mint-link-icon,
.mint-arrow {
    transition: all 0.25s ease;
}
.mint-link-arrow {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    padding: 0.5rem 0;
	border-radius: 50px;
}
.mint-link-text {
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 500;
    color: #0f1919;
	font-size: 16px;
	text-transform: uppercase;
}
.mint-link-icon {
    width: 40px;
    height: 40px;
    background: #7e8b7f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mint-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
	margin-right: 5px;
}
.mint-link-arrow:hover .mint-link-icon {
    background: #fff;
}
.mint-link-arrow:hover .mint-arrow {
	border-right: 2px solid #7e8b7f;
    border-bottom: 2px solid #7e8b7f;
}
.mint-link-arrow:hover .mint-link-text {
	text-decoration: none;
}
.mint-link-arrow:hover {
	text-decoration: none;
}


/* --- neue linke Version --- */
.mint-link-arrow-left,
.mint-link-text-left,
.mint-link-icon-left,
.mint-arrow-left {
    transition: all 0.25s ease;
}

.mint-link-arrow-left {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    padding: 0.5rem 0;
    border-radius: 50px;
}

/* Text rechts */
.mint-link-text-left {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #0f1919;
    text-transform: uppercase;
}

/* Icon links */
.mint-link-icon-left {
    width: 40px;
    height: 40px;
    background: #7e8b7f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pfeil nach links */
.mint-arrow-left {
    width: 12px;
    height: 12px;
    border-left: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    transform: rotate(-45deg);
    margin-left: 5px;
}

/* Hover */
.mint-link-arrow-left:hover .mint-link-icon-left {
    background: #fff;
}

.mint-link-arrow-left:hover .mint-arrow-left {
    border-left: 2px solid #7e8b7f;
    border-top: 2px solid #7e8b7f;
}

.mint-link-arrow-left:hover .mint-link-text-left {
    text-decoration: none;
}

.mint-link-arrow-left:hover {
    text-decoration: none;
}



.mint-link-icon.invert{background: #fff;}
.mint-arrow.invert{
	border-right: 2px solid #7e8b7f;
    border-bottom: 2px solid #7e8b7f;
}
.mint-link-arrow:hover .mint-arrow.invert {
	border-right: 2px solid white;
    border-bottom: 2px solid white;
}
.mint-link-arrow:hover .mint-link-icon.invert{
	text-decoration: none;
	background-color: #7e8b7f
}

.white-link-arrow,
.white-link-text,
.white-link-icon,
.white-arrow {
    transition: all 0.25s ease;
}
.white-link-arrow {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    padding: 0.5rem 0;
	border-radius: 50px;
}
.white-link-text {
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 500;
    color: white;
	text-transform: uppercase;
	font-size: 16px;
}
.white-link-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.white-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #7e8b7f;
    border-bottom: 2px solid #7e8b7f;
    transform: rotate(-45deg);
	margin-right: 5px;
}
.white-link-arrow:hover .mint-link-icon {
    background: #fff;
}
.white-link-arrow:hover .mint-arrow {
	border-right: 2px solid #7e8b7f;
    border-bottom: 2px solid #7e8b7f;
}
.white-link-arrow:hover .mint-link-text {
	text-decoration: none;
}
.white-link-arrow:hover {
	text-decoration: none;
}

.objektBox{background-color: black; margin-bottom:25px}
.objektBox > .img{min-height: 300px; background-size: cover; background-repeat: no-repeat;background-position: center;}
.objektBox > .text{padding: 50px}
.objektBox >.text > h4{margin-bottom:30px!important}
.objektBox >.text ul{margin: 0 0 0 0; padding:30px 0 0 20px;}
.objektBox >.text ul li{opacity: .7; font-size: 16px; }

.objektBox >.text > a{
	display: block;
    margin-left: auto;
    margin-right: auto;
	margin-top:30px; width: 100%; text-align: center
}
.newsBox{margin-bottom:60px; cursor: pointer;}
.newsBox > .img{
	min-height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
    align-content: flex-end;
    flex-wrap: wrap;}
.newsBox > .text{padding: 20px; color: #6e767f; font-size: 16px;}
.newsBox >.text > h4{margin-bottom:20px!important; color: var(--color-text); margin-top:20px}
.newsBox > .text > a{display: inline-block; margin-top:30px; text-transform: uppercase; border-bottom:1px solid black; padding-bottom:5px; color: black; letter-spacing: .2px;}
.newsBox > .text > a:hover{text-decoration: none; border-bottom: none}

.trackRecordBox{margin-bottom:60px;  background-color: black; flex:1 1 auto;}
.trackRecordBox > .img{
	min-height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
    align-content: flex-end;
    flex-wrap: wrap;}
.trackRecordBox > .text{padding: 20px; color: #6e767f; font-size: 16px; color: white}
.trackRecordBox > .text p{font-size: 22px;margin-top: 40px;}
.trackRecordBox >.text > h4{margin-bottom:20px!important; color: var(--color-text); margin-top:20px; color: white; font-size: 32px;}
.trackRecordBox > .text > a{display: inline-block; transition:.5s ease; margin-top:30px; text-transform: uppercase; margin-bottom: 40px;  color: white; background-color:var(--green); padding:10px 20px; width:100%; border-radius:30px; text-align:center;}
.trackRecordBox > .text > a:hover{color:var(--green); background-color:white; text-decoration: none;}
.trackCol{display:flex;}
.kontaktBar{padding:40px; display: flex; justify-content: space-between;font-family: var(--font2);font-size: 32px;align-items: center;}
.kontaktInner{float:left;margin-left:50px; font-size: 20px; }
.kontaktInner img{float: left;margin-right: 20px; width: 20px;}
.kontaktInner a{color:white;display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;}

footer{padding:80px 40px 40px 40px; color: white; text-transform: uppercase; font-size: 20px; font-weight: 500;}
footer ul{margin: 20px 0px 0px 0px; padding:0px}
footer ul li{list-style-type: none; margin-top:10px}
footer ul li a{color:#b2b2b2}
#footerBottom{border-top:1px solid var(--grey);margin-top:50px}
#footerBottomInner {
    display: flex;
    padding: 20px 0px;
    align-content: center;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#footerBottomInner > div > ul{list-style-type: none; margin-top:0px;}
#footerBottomInner > div > ul li{float:left; margin-left:50px;}

.footerSocialLogo{display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
	align-items: flex-start
}
.footerSocialLogo > div > a{float:left; margin-right: 20px}

.buttonRight{float:right;margin-top:-60px}

.header-white{text-align: center; padding: 80px 0px; }
.header-white h1{color: black;}

.header-grey{text-align: center; padding: 80px 0px; }
.header-grey h1{color: white;}

.clusterBlock{font-size: 20px; margin-bottom: 120px}
.clusterBlock .col-25{min-height: 500px; background-size: cover; background-repeat: no-repeat;padding: 40px; display: flex;
    flex-direction: column;
    justify-content: space-between;margin-bottom: 0px;}
.clusterBlock .black{background-color: black; color: white}
.clusterBlock .mint{background-color: #7C8C7D; color:#0D2729}
.clusterBlock h3{font-family: var(--font2); font-size: 64px; font-weight: 300; line-height: 65px;}

.header-unter{justify-content: flex-end; min-height: 600px; padding:80px}


#dria-map {
            width: 100%;
            height:800px;
        }
 .references__wrapper {
            max-width: 320px;
            font-family: Arial, sans-serif;
        }

.references__image {
	width: 100%;
	height: 180px;
	background-size: cover;
	background-position: center;
}

.references__content {
	padding: 8px 10px;
}

.references__content .h4 {
	font-size: 16px;
	margin: 0 0 4px;
}

.references__content .text-smaller {
	font-size: 13px;
	margin: 0;
}

.references__fields {
	padding: 8px 10px;
}

.references__fields ul {
	margin: 0;
	padding-left: 18px;
	font-size: 12px;
}

/* Cluster Icon */
.cluster-wrapper {
	background: none;
	border: none;
}

.cluster-icon {
	position: relative;
	width: 60px;
	height: 80px;
}

.cluster-count {
	position: absolute;
	top: 31px;
	left: 51%;
	transform: translateX(-50%);
	min-width: 26px;
	height: 26px;
	padding: 0 6px;
	border-radius: 13px;
   z-index: 99;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;

}

.cluster-image {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background-image: url('/wp-content/themes/dria-theme/img/cluster.png'); /* deine Cluster-Grafik */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}


.mapgreenbox{background-color: var(--green); display: flex; padding:60px; color: #0D2729; min-height: 300px;flex-wrap: wrap; align-content: flex-end; font-size: 18px;}

.current-menu-item{font-weight: 600;}

.news-loader{
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-spinner{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #000;
    animation: news-spin 0.7s linear infinite;
}

.news-spinner-white{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #fff;
    animation: news-spin 0.7s linear infinite;
}

.ansprechpartnerbox{background-color: var(--mint)!important; padding:40px; font-size: 1rem;}
.ansprechpartnerbox div img{border-radius: 300px; width: 65px; float: left; margin-right: 20px; margin-top:8px}

/*MAP Styles*/
#dria-map {
	width: 100%;
	height:800px;
}

.references__wrapper {
	max-width: 320px;
	font-family: Arial, sans-serif;
}

.references__image {
	width: 100%;
	height: 180px;
	background-size: cover;
	background-position: center;
}

.references__content {
	padding: 8px 10px;
}

.references__content .h4 {
	font-size: 16px;
	margin: 0 0 4px;
}

.references__content .text-smaller {
	font-size: 13px;
	margin: 0;
}

.references__fields {
	padding: 8px 10px;
}

.references__fields ul {
	margin: 0;
	padding-left: 18px;
	font-size: 12px;
}

/* Cluster Icon */
.cluster-wrapper {
	background: none;
	border: none;
}

.cluster-icon {
	position: relative;
	width: 60px;
	height: 80px;
}

.cluster-count {
	position: absolute;
	top: 31px;
	left: 51%;
	transform: translateX(-50%);
	min-width: 26px;
	height: 26px;
	padding: 0 6px;
	border-radius: 13px;
   z-index: 99;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;

}

.cluster-image {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background-image: url('/wp-content/themes/dria-theme/img/cluster.png'); /* deine Cluster-Grafik */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.greenBoxMap{background-color: var(--green); padding:150px 80px 60px 80px; color: black; font-size: 18px}
.greenBoxMap h2{font-size: 64px;}

.kontaktFields{      display: flex;
    font-family: var(--font2);
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 30px;}
.kontaktFields div{    }
.kontaktFields img{width:20px; }
.kontaktFields a{color: white;display: flex;
    align-items: center;
    gap: 10px;}
.kontaktFields .tel{}
.kontaktFields .email{}

#kontaktart{color: var(--beige); display: flex; justify-content: space-between;}


.wpcf7-submit{border:none; background-color: var(--green); margin-top:50px; color:white; padding:15px 20px; border-radius:30px; width: 100%; transition:.5s; font-size: 16px; text-transform: uppercase;}
.wpcf7-submit:hover{background-color:white; color:var(--green);}

.zitatSection{min-height:800px; display:flex;align-content: flex-end;
    flex-wrap: wrap; background-position: center!important;background-size: cover !important; }

.zitatSection.rechts > .container{display: flex;justify-content: flex-end; }
.blackSection{background-color: black; color:white; padding-top:150px; padding-bottom:150px;}

.cf7-file-wrap{
   width: 100%;
    align-items:center;
    gap:10px;
}

.cf7-file-button{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border:1px solid rgba(255,255,255,0.10);
	color:#fff;
	background-color: rgba(255,255,255,0.05);
	width: 100%;
	text-align: center;
    border-radius:999px;
    font-family:var(--font1, sans-serif);
    font-size:18px;
    cursor:pointer;
    overflow:hidden;
}

.cf7-file-button:hover{
    background-color: rgba(255,255,255,0.10);
}

.cf7-file-input{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}

.cf7-file-name{
    font-size:14px;
    font-family:var(--font1, sans-serif);
    color:#555;
}





@keyframes news-spin{
    to { transform: rotate(360deg); }
}

/* ================================
   RESPONSIVE (max-width)
   ================================ */

/* Container-Responsive */

@media (max-width: 1400px) {
	
	.angebotIndex {display: inline-block; }
	.angebotIndex a{display: inline-block;margin-top:20px}
}
@media (max-width: 1024px) {
	
	.nav-list a {
		padding: 0px;
		font-size: 12px;
		
	}
    .container,
    .full-inner {
        padding: 0 1.25rem;
    }
}

/* Tablet / Mobile */

@media (max-width: 768px) {

    /* Spalten auf 100% */
    .col-33,
    .col-50 {
        flex: 0 0 100%;
        max-width: 100%;
    }

	.col-33 .box,
    .col-50 .box,
    .col .box {
        margin-bottom: 1.5rem;   /* Abstand nach unten */
        padding-top: 2rem;       /* mehr Luft oben */
        padding-bottom: 2rem;    /* mehr Luft unten */
    }

    /* Optional: letzten Abstand etwas reduzieren */
    .row:last-child .col:last-child .box {
        margin-bottom: 1rem;
    }
	
    /* Fullwidth 50/50 Sektionen: untereinander */
    .full-half {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Fullwidth ohne Raster: untereinander */
    .full-edge-half {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Mobile-Navigation */
    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        background: #ffffff;
        border-bottom: 1px solid #ddd;
        transform: translateY(-130%);
        transition: transform 0.2s ease-in-out;
		z-index:9999;
    }

    .main-nav.is-open {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        padding: 0.75rem 1.5rem 1rem;
        gap: 0.5rem;
    }

    /* Testimonial mobil: zentriert */
    .full-bg-testimonial {
        justify-content: center;
        text-align: center;
    }

    .testimonial-box {
        width: 90%;
        max-width: none;
        margin-right: 0;
        text-align: center;
    }
	.full-inner{flex-wrap: wrap}
	
	.fo-acc-header {
        padding: 1.25rem 0;
    }

    .fo-acc-title {
        font-size: 32px;
		font-weight: 500;
		
    }

    .fo-acc-panel {
        padding-bottom: 1.25rem;
    }
	
	 .fo-acc-panel-inner {
        padding: 1.25rem 0;
    }
	
	 .mint-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mint-box {
        padding: 2rem;
    }

    .mint-box-title {
        font-size: 1.6rem;
    }
	

	.buttonRight{float: none; margin-top: 20px; margin-bottom: 20px}
	
	.zitatWrapper{min-height: 800px}
	
	.swipeRow {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.swipeRow .row {
		display: flex;
		flex-wrap: nowrap;
		margin: 0 -10px; /* optional */
	}

	.swipeRow .row::-webkit-scrollbar {
		display: none;
	}

	/* Nur die Cols in diesem Wrapper werden "Slides" */
	.swipeRow .col-33 {
		flex: 0 0 80%;
		max-width: 80%;
		scroll-snap-align: start;
	}

	.swipeRow .col-33 + .col-33 {
		margin-left: 0px;
	}
	
	.swipeRow .row {
		scroll-snap-type: x mandatory;
	}
	footer ul li a {
		font-size: 14px;
	}
	
		#footerBottomInner > div > ul li {	
    	margin-left: 0px;
		float: none;
		font-size: 14px;
	}
	
	#footerBottomInner{
		display: inline-block;
	}
	
	.col-25{flex: 0 0 100%;
    max-width: 100%;
	margin-bottom: 30px
	}
	.footerSocialLogo div{margin-top:30px}
	
	.zitatSection{min-height:600px; }
	
	.zitatBox{width:100%}
	
	.clusterBlock .col-25 {
    min-height: 350px;
	}
	
	.mitarbeiter {
    min-height: 350px;
	}
	
	.mitarbeiterPos {font-size:12px;}
	#dria-map {
    width: 100%;
    height: 500px;
	}
	
	.greenBoxMap h2 {
    font-size: 40px;
	}
	.header-unter {
	min-height:200px;	
	}
	
	.full-edge-image{min-height: 300px}
	
	
	.marginTop{margin-top: 0px;}
	
	.mitarbeiterBox{font-size: 14px;}
	
	.rightNoPadding{padding-right:0px!important;}
	
	.cardbox{min-height: auto!important;}
	
	#trackRecord{display:none!important;}
	
	.trackRecordBox > .text p {font-size: 18px;}
	.trackRecordBox > .text{padding:0px 20px}
	
	footer{font-size: 14px;}
	.nav-list a {
     
        font-size: 18px;
    }
	
	.nav-list li {padding:20px 0px}
	.nav-list{padding: 2.75rem 1.5rem 1rem;}
	
	.clusterBlock {
	    margin-bottom: 0px;
	}
	.greenBoxMap{display: none;}
	
	.trackRecordBox{margin-bottom:25px;}
	
	.backnews{display: none;}
	
	.col-25 {
       
        margin-bottom: 0px;
    }
	
	#full-testimonial{min-height: 400px;}
	
	
}


#wpcf7-f1211-o1{margin-top:50px;}

.dsgvo-wrap{color:rgba(255,255,255,0.7); font-size: 16px;}
.dsgvo-wrap a{color:rgba(255,255,255,0.7); font-size: 16px; text-decoration: underline}
.dsgvo-wrap a:hover{text-decoration: none}
.wpcf7-form{font-size: 16px;}


/* Kleine Screens */

@media (max-width: 600px) {
    .container,
    .full-inner {
        padding: 0 1.4rem; 
    }

    .testimonial-box {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
	.hero{padding:0px;}
	h1{font-size: 28px; line-height:42px }
	.eyebrowHero{font-size: 14px; line-height: 21px;}
	h2{font-size: 32px; line-height: 38px;}
	.eyebrow{font-size: 14px;}
	h4{font-size: 20px; line-height: 30px}
	h3{font-size: 28px; line-height: 35px}
	.zitatWrapper{min-height: 650px;}
	.mint-grid{margin-top: 30px}
	body{font-size: 16px; line-height:24px;}
	
	#leistungen > .full-edge-image{display:flex; min-height: 650px;}
	.zitatBox{margin:30px}
	.zitatWrapper.MiraSpezial{background-position: right!important}
	.kontaktBoxLinks{margin-bottom:20px}
	
	.angebotIndex {flex-wrap: wrap;line-height: 27px; font-size: 17px}
	.angebotIndex a{        
		margin-top: 20px;
        width: 100%;
        text-align: center;letter-spacing: .5px;padding: 10px;}
	
	.fo-acc-title{font-size: 20px;}
	
	.full-edge-image{min-height: 700px}
	.full-edge-image.news{min-height: 200px}
	
	#leistungen {
    	padding: 0px;
	}
	
	
	.full-edge-text {
    padding: 3rem 8vw;
	}
	
	.section {
    padding: 0rem 0;
	}
	
	
	#ankaufsprofile {padding:3rem 0px}
	
	#full-testimonial {
		margin: 50px 0px;
	}
	
	#full-testimonial.news {
		min-height:200px;
	}
	
	.paddingTopHalf {
		padding-top: 0px;
	}
	.paddingTop {
   	 padding-top: 30px;
	}
	
	
	
	.cardbox{min-height: 400px}
	
    .mint-box {
        padding: 1.75rem;
    }
	
    .mint-box-title {
        font-size: 1.4rem;
    }
	
	.kontaktBar{font-size: 20px;display:inline-block}
	.kontaktInner{margin-left:0px; float:none; margin-top:10px}
	
	.mitarbeiterBox h4{font-size: 30px; margin-bottom: 12px;}
	
	.col {
		padding-left: 0px;
		padding-right: 0px;
	}
	.swipeRow > .row > .col {
		padding-left: calc(var(--gutter) / 2);
		padding-right: calc(var(--gutter) / 2);
	}
	
	.ansprechpartnerbox{text-align: center;}
	.ansprechpartnerbox div img{float:none;display: inline-block;margin: 0px 0px 20px 0px; width: 100px}

	
}
