@font-face {
  font-family: "Century Gothic";
  src: url(./centurygothic.ttf);
}

:root {
  --white: white;
  --brand: #ffe57d;
  /* Derived — auto-computed from --brand. Overridden by per-project inline styles when set manually. */
  --brand-low:  color-mix(in srgb, var(--brand) 20%, white);
  --brand-low2: color-mix(in srgb, var(--brand) 50%, white);
  --black:      color-mix(in srgb, var(--brand) 40%, black);
}

body {
  overflow-x: hidden;
  color: var(--black);
}

a {
  color: var(--black);
}

.dropdown-item:active, .dropdown-item:focus {
  background-color: var(--brand);
  color: var(--black);
  text-decoration: none;
  outline: none;
}

.dropdown-item:hover {
  background-color: var(--brand-low);
  color: var(--black);
  text-decoration: none;
  outline: none;
}


/* ── Navbar ──────────────────────────────────────────────── */

.gh-navbar {
  background-color: var(--brand);
  padding: 1rem 0;
}

.gh-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--black);
}

.gh-navbar-logo {
  height: 2.25rem;
  width: auto;
}

.gh-navbar-brand-text {
  font-family: Arial;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
}

.gh-nav-link {
  font-family: "Century Gothic";
  font-size: 1rem;
  color: var(--black) !important;
  padding: 0.65rem 0.9rem !important;
  border-radius: 0.3rem;
  transition: background-color 0.15s;
}

.gh-nav-link:hover {
  opacity: 0.7 !important;
}

.gh-nav-active {
  font-weight: 700 !important;
}

.gh-dropdown {
  background-color: var(--white);
  border: 1px solid var(--brand) !important;
  border-radius: 0.5rem;
  padding: 0.25rem 0;
  min-width: 10rem;
}

.gh-dropdown-item {
  font-family: "Century Gothic";
  font-size: 1rem;
  color: var(--black) !important;
  padding: 1rem 1.1rem;
}

.gh-dropdown-item:hover {
  background-color: var(--brand-low) !important;
  color: var(--black) !important;
}

.gh-navbar .navbar-toggler {
  border-color: var(--black);
}

.gh-navbar .navbar-toggler-icon {
  background-color: var(--black);
  background-image: none !important;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
          mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  -webkit-mask-size: 100%;
          mask-size: 100%;
}


/* ── Footer ──────────────────────────────────────────────── */

.gh-footer {
  background-color: var(--brand-low2);
  padding: 3rem 0 2rem;
  margin-top: 0rem;
}

.gh-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .gh-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.gh-footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gh-footer-address,
.gh-footer-copyright {
  font-family: "Century Gothic";
  font-size: 1rem;
  color: var(--black);
  margin: 0;
}

.gh-footer-link {
  font-family: "Century Gothic";
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}

.gh-footer-link:hover {
  text-decoration: underline;
}


/* ── Typography ─────────────────────────────────────────── */

.gh-h1 {
  color: var(--black);
  font-family: Arial;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
}

.gh-h3 {
  color: var(--black);
  font-family: Arial;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.gh-text {
  color: var(--black);
  font-family: "Century Gothic";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.gh-text-white {
  color: var(--white) !important;
}

.gh-text-list li {
  margin-bottom: 0.55rem;
  line-height: 1.35;
}

.gh-text-list li:last-child {
  margin-bottom: 0;
}

.gh-text-sm {
  font-size: 1rem !important;
}

.gh-text-btn {
  font-family: "Century Gothic";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  margin: 0;
}


/* ── Buttons ─────────────────────────────────────────────── */

.gh-btn {
  color: var(--black);
  width: fit-content;
  display: flex;
  height: 3.125rem;
  padding: 0.625rem 2.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  border-radius: 0.5rem;
  background-color: var(--white);
  border: 2px solid var(--brand);
  position: relative;
  z-index: 10;
  transition: 50ms;
}

.gh-btn-light {
  color: var(--black);
  display: flex;
  height: 3.125rem;
  padding: 0.625rem 2.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.5rem;
  background: var(--white);
  border: 2px solid var(--white);
  text-decoration: none;
}

.gh-btn-ghost {
  display: flex;
  height: 3.125rem;
  padding: 0.625rem 2.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.5rem;
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white) !important;
  text-decoration: none;
}

.gh-btn-brand {
  color: var(--black);
  width: fit-content;
  display: flex;
  height: 3.125rem;
  padding: 0.625rem 2.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--brand);
  border: 2px solid var(--brand);
  text-decoration: none;
}

.gh-btn-brand:hover,
.gh-btn-ghost:hover,
.gh-btn-light:hover,
.gh-btn:hover {
  cursor: pointer;
}

.gh-btn-brand:hover {
  background-color: var(--white);
}

.gh-btn:hover {
  background-color: var(--brand);
}

.gh-btn-light:hover {
  opacity: 0.75;
}

.gh-btn-ghost:hover {
  opacity: 0.75;
}

.gh-pt-5{
	padding-top: 5rem !important;
}

.gh-image-rounded{
	border-radius: 2rem;
}
@media (max-width: 575px) {
	.gh-image-rounded {
		width: 100% !important;
	}
}


/* ── Backgrounds / Stripes ───────────────────────────────── */

.gh-stripe {
  background: var(--brand-low);
  padding-top: 0rem;
  padding-bottom: 3rem;
  padding-left: 10%;
  padding-right: 10%;
  margin: 0;
}

.gh-stripe-alt {
  background: var(--brand-low2);
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  padding-left: 10%;
  padding-right: 10%;
  margin: 0;
  overflow: hidden;
}


.px-5p{
	padding-left: 5%;
	padding-right: 5%;
}

/* ── Layout Utilities ────────────────────────────────────── */

.gh-section {
  padding-left: 5% !important;
  padding-right: 5% !important;
}

.gh-w-full {
  width: 100%;
}

.gh-w-30 {
  width: 30% !important;
}

.gh-w-33 {
  width: 33% !important;
}

.gh-w-35 {
  width: 35% !important;
}

.gh-w-50 {
  width: 50%;
}


/* ── Images ──────────────────────────────────────────────── */

.gh-img-overflow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52%;
  object-fit: cover;
  object-position: center top;
  clip-path: url(#wave-tall);
  z-index: 0;
}

.gh-img-abs-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: url(#wave-wide);
  z-index: 0;
}

.gh-img-abs-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: url(#wave-bottom);
  z-index: 0;
}

.gh-img-mobile {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  clip-path: url(#wave-tall);
}

.gh-img-pair {
  width: 47.5%;
}

.gh-fill-brand {
  fill: var(--brand-low);
}


/* ── Cards / Bento ───────────────────────────────────────── */

.gh-card {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  border-radius: 3.125rem;
  background: var(--brand-low);
}

.gh-card-body {
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.gh-card-body-wide {
  width: 58%;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

/* .gh-card-tall {
  height: 32rem;
} */

.gh-card-half {
  height: calc(50% - 0.5rem);
}

.gh-card-lg {
  height: fit-content;
  max-height: 600px;
}

.gh-card-sm {
  height: fit-content;
}


/* ── Card Grid ───────────────────────────────────────────── */

.gh-card-white {
  display: flex;
  width: 100%;
  height: fit-content;
  padding: 2rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
  border-radius: 1.3125rem;
  background: var(--white);
}


/* ── Online Seminare Badges ──────────────────────────────── */

.gh-badge {
  position: absolute;
  top: 80%;
  left: -25%;
  z-index: 100;
  width: fit-content;
  height: fit-content;
  display: inline-flex;
  padding: 2rem 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  border-radius: 3.125rem;
  background-color: var(--brand-low);
}

.gh-badge-mobile {
  position: absolute;
  top: -150px;
  right: 0px;
  z-index: 100;
  width: fit-content;
  height: fit-content;
  display: inline-flex;
  padding: 2rem 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  border-radius: 3.125rem;
  background-color: var(--brand-low);
}


/* ── Gallery ─────────────────────────────────────────────── */

.gallery {
  columns: 300px;
}

.gallery img {
  width: 100%;
  margin-bottom: 1em;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.01);
}

.gh-gallery-modal-content {
  background: #111;
  border: none;
  border-radius: 0.5rem;
  position: relative;
}

.gh-gallery-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.gh-gallery-close:hover {
  background: rgba(0,0,0,0.8);
}

.gh-gallery-modal-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 0.5rem 0.5rem 0 0;
}

.gh-gallery-caption {
  font-family: "Century Gothic";
  font-size: 1rem;
  color: #ccc;
  text-align: center;
  padding: 0.85rem 1.5rem;
  margin: 0;
  display: none;
}


/* ── Hero IDs ────────────────────────────────────────────── */

#hero_video_container {
  height: calc(90vh - 5rem);
  background-color: lightgray;
}

#gehner_hero_content_container {
  height: 100%;
}

#gehner_hero_content {
  z-index: 1;
  position: relative;
  margin-bottom: 5rem;
  gap: 1.5rem;
}

#gehner_hero_h1_h3 {
  gap: 0.5rem;
}

#gehner_hero_btn_al {
  gap: 0.75rem;
}


/* ── Quote ID ────────────────────────────────────────────── */

#gehner_zitat {
  padding-top: 9rem;
  padding-bottom: 9rem;
}


/* ── Online Seminare IDs ─────────────────────────────────── */

#gh-feature-container {
  opacity: 100%;
  margin-top: 8rem;
}

#gh-feature-content {
  gap: 2.25rem;
  max-width: 50%;
}

#gh-feature-content-mobile {
  gap: 2.25rem;
  width: 100%;
}

#gh-feature-img {
  position: relative;
  width: 100%;
  border-radius: 50px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

#gh-feature-img-container {
  width: 100%;
  margin-top: 150px;
	padding-right: 20px;
}


/* ── Contact ID ──────────────────────────────────────────── */

#gehner_kontakt_gap {
  margin-top: 5rem;
  gap: 2.5rem;
}

/* ── Contact Form ────────────────────────────────────────── */

.gh-label {
  display: block;
  color: var(--black);
  font-family: 'Century Gothic', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.gh-input {
  display: block;
  width: 100%;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid var(--black);
  border-radius: 0.5rem;
  color: var(--black);
  font-family: 'Century Gothic', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.gh-input:focus {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--black);
}

.gh-input::placeholder {
  color: rgba(104, 62, 25, 0.45);
}
