@charset "utf-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}
body {
	min-height: 75rem;
	padding-top: 4.5rem;
 text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
	box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}
/*obere Leiste mit Logo und Navigation*/
.container-fluid  { width: 98%; padding-bottom:1em;}

.logo {
	background-image: url(../images/logo_blue.png);
	width: 100%;
	height: auto;
	object-fit: cover; 	/* Alternativen: contain, fill, none, scale-down */
}
.dropdown-menu { background-color:#ccc;}
.navbar-nav  {/*toggle*/
	margin-left: 3em;/*8em*/
	text-align: left; white-space: nowrap;
}
a{text-decoration:none}
.grau {/*The net is the message*/
	background-color: #888 !important;
}
main, footer {
	text-align: left !important;
	color: #888888;
}
	.bg-body-tertiary {background-color:#888 !important; color: #F0F2F9;}


/*Hauptnavigation gesamt*/
.offcanvas-body {
}
.link {text-decoration: none;}





.bd-placeholder-img {
	font-size: 1.125rem;
	text-anchor: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
 @media (min-width: 768px) {/*768*/
.bd-placeholder-img-lg {
	font-size: 3.5rem; border: solid red;
}
}
.b-example-divider {
	width: 100%;
	height: 3rem;
	background-color: #0000001a;
	border: solid rgba(0, 0, 0, 0.15);
	border-width: 1px 0;
	box-shadow: inset 0 0.5em 1.5em #0000001a,  inset 0 0.125em 0.5em #00000026;
}
.b-example-vr {
	flex-shrink: 0;
	width: 1.5rem;
 heigh+masoneryt: 100vh;
}
.bi {
	vertical-align: -0.125em;
	fill: currentColor;
}
.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}
.nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}
.btn-bd-primary {
 --bd-violet-bg: #712cf9;
 --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
 --bs-btn-font-weight: 600;
 --bs-btn-color: var(--bs-white);
 --bs-btn-bg: var(--bd-violet-bg);
 --bs-btn-border-color: var(--bd-violet-bg);
 --bs-btn-hover-color: var(--bs-white);
 --bs-btn-hover-bg: #6528e0;
 --bs-btn-hover-border-color: #6528e0;
 --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
 --bs-btn-active-color: var(--bs-btn-hover-color);
 --bs-btn-active-bg: #5a23c8;
 --bs-btn-active-border-color: #5a23c8;
}
.bd-mode-toggle {
	z-index: 1500;
}
.bd-mode-toggle .bi {
	width: 1em;
	height: 1em;
}
.bd-mode-toggle .dropdown-menu .active .bi {
	display: block !important;
}



/* Hintergrund und Textfarbe optimieren */
.dropdown-menu {
  background-color: #ffffff; /* Reinweiß */
  border: 1px solid #000000; /* Deutlicher Rahmen */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Schatten für Tiefe */
}

.dropdown-item {
  color: #212529; /* Sehr dunkles Grau für beste Lesbarkeit */
  font-weight: 500; /* Etwas dickere Schrift */
  padding: 10px 20px; /* Mehr Platz zum Klicken */
}

/* Hover-Effekt (Kontrast bei Interaktion) */
.dropdown-item:hover, 
.dropdown-item:focus {
  background-color: #000000; /* Schwarzer Hintergrund beim Hover */
  color: #ffffff; /* Weiße Schrift beim Hover */
}

/* Die Trennlinie sichtbarer machen */
.dropdown-divider {
  border-top: 2px solid #000000;
  opacity: 1;
  margin: 0.5rem 0;
}



/* Bilder *//* Das Bild passt sich immer der Spaltenbreite an */
.agentur-container {
    width: 100%;
    max-width: 1200px; /* Oder die Breite deines Contents */
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* WICHTIG: Macht beide Spalten gleich hoch */
}

.col-text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px 40px 20px 0; /* Abstand nach rechts zum Bild */
    box-sizing: border-box;
}

.col-image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden; /* Schneidet Überhänge des Bildes sauber ab */
}

.col-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Bild füllt exakt die Höhe aus, die der Text vorgibt */
    object-fit: cover; /* Verhindert das Quetschen/Verzerren */
    object-position: center; /* Zentriert das Motiv */
}





/*FORMULAR */
/* Erhöhte Spezifität durch #Formular Präfix */

/* 1. Jede Zeile im Formular zwingen, ein 2-Spalten-Grid zu sein */
#Formular .form-wrap {
    display: grid !important;
    grid-template-columns: 180px 1fr !important; /* LINKS 180px, RECHTS Rest */
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    clear: both;
}

/* 2. Alle Labels (Name, E-Mail, Bereich) nach links zwingen */
#Formular .form-label, 
#Formular label[for="meinPulldown"] {
    grid-column: 1 !important;
    grid-row: 1 !important;
    text-align: right !important;
    display: block !important;
    margin: 0 !important;
    color: #999 !important;
}

/* 3. Alle Eingabefelder (Input, Select, Textarea) nach rechts zwingen */
#Formular .form-input, 
#Formular #meinPulldown {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    padding: 12px !important;
    box-sizing: border-box !important;
}

/* 4. Den Button bündig mit den Feldern ausrichten */
#Formular #feedbackSubmit {
    margin-left: 180px !important; /* Exakt die Breite der Label-Spalte */
    display: block !important;
}

/* 5. Bootstrap-Spalten komplett ausschalten für dieses Formular */
#Formular .col-md-4, 
#Formular .col-12 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100% !important;
}

/* Spezialfall: Pulldown-Bereich Abstand nach unten vergrößern */
#Formular .pulldown-section {
    margin-bottom: 40px !important;
}

/* Den Button-Container oder das Feld bündig ausrichten */
.csc-mailform-field, 
#feedbackSubmit {
    display: block !important;
    /* Der Abstand muss exakt der Breite der Label-Spalte entsprechen (180px) 
       plus dem Gap (20px) = 200px. Teste 180px oder 200px je nach Optik. */
    margin-left: 200px !important; 
    width: auto !important;
    padding: 12px 40px !important;
    text-align: center;
}

/* Falls der Button in einer Bootstrap-Row steckt, diese linksbündig machen */
.csc-mailform-field {
    text-align: left !important;
    width: 100% !important;
}

/* Mobil-Korrektur: Auf dem Handy soll der Button wieder mittig oder vollflächig sein */
@media (max-width: 768px) {
    #feedbackSubmit, 
    .csc-mailform-field {
        margin-left: 0 !important;
        width: 100% !important;
    }
}
/*Jumbotron*/
/* Der Banner-Hintergrund: Ein Hauch heller als dein #202428 für Tiefe */
.custom-action-banner {
    background-color: #262a30; 
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-left: 3px solid #7fb3d5; /* Schmaler Akzentbalken in Arctic Blue */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Headline: Strahlendes Weiß für maximalen Fokus */
.custom-action-banner h2 {
    color: #ffffff !important;
}

/* Das Wort "begeistert" in einem kühlen, hellen Blau */
.accent-text {
    color: #7fb3d5 !important;
}

/* Dein Standard-Textton #888888 für die Subline, um Harmonie zu wahren */
.text-secondary-muted {
    color: #888888 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Der Button: Dezent, aber auffallend durch die kühle Farbe */
.btn-accent {
    background-color: #7fb3d5 !important;
    color: #202428 !important; /* Dunkle Schrift auf hellem Button für edlen Look */
    border: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-accent:hover {
    background-color: #a9cce3 !important; /* Wird beim Hover noch etwas eisiger/heller */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Schlichter Glow-Effekt, der nicht vom Text ablenkt */
.custom-action-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, rgba(127, 179, 213, 0.03), transparent);
    pointer-events: none;
}


@charset "UTF-8";

/* hashtags
------------------------- */

.page-nav {
  padding: 1.0em 0;
  font-size: 0.8rem;
  z-index: 2; /* above packeries */
  background-color: rgba(136, 136, 136, 0.4); 

}

.page-nav__item {
  display: inline-block;
}

.page-nav__item:after {
  content: ' •';
  margin: 0 10px;
  opacity: 0.5;
}

.page-nav__item:last-child:after {
  content: none;
}

/* desktop */
@media screen and ( min-width: 768px ) {

  .page-nav {
    position: absolute;
    right: 0;
    top: 100px;
    width: 200px;
    list-style: none;
    padding: 0;
    padding: 10px;  border-radius: 10px 0 0 10px;
  }

  .page-nav__item {
    display: block;
    margin-bottom: 4px;
    margin-left: 0;
  }

  .page-nav__item:after {
    content: none;
  }

  .page-nav__item a {
    display: block;
  }

  .page-nav__item--h3 a {
    padding-left: 10px;
  }

}

/* fix .page-nav only if we have enough height */
@media screen and ( min-width: 768px ) and ( min-height: 540px ) {
  .page-nav {
    position: fixed;
  }
}



