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

:root {
  --white: white;
  --black: #683e19;
  --brand: #ffe57d;
  --brand-low2: #FFF3BE;
  --brand-low: #fffae5;
}

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: 0.6rem 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: 1.05rem;
  color: var(--black) !important;
  padding: 0.4rem 0.9rem !important;
  transition: opacity 0.15s;
}

.gh-nav-link:hover {
  opacity: 0.65;
}

.gh-dropdown {
  background-color: var(--brand-low);
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  min-width: 10rem;
}

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

.gh-dropdown-item:hover {
  background-color: var(--brand-low2);
}

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

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


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

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

.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: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
}

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

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

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

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

.gh-text-btn {
  font-family: "Century Gothic";
  font-size: 20px;
  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 {
  background-color: transparent;
  color: var(--white) !important;
}

.gh-btn-ghost:hover {
  background: var(--white);
  color: var(--black) !important;
}


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

.gh-stripe {
  background: var(--brand-low);
  padding-top: 5rem;
  padding-bottom: 9rem;
  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;
}


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

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

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

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


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

.gh-img-overflow {
  position: relative;
  width: 100%;
  top: -10%;
}

.gh-img-abs-right {
  position: absolute;
  height: 100%;
  left: 50%;
}

.gh-img-abs-left {
  position: absolute;
  height: 100%;
  right: 50%;
}

.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: 3rem;
  padding-bottom: 2rem;
}

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

.gh-card-tall {
  height: 39rem;
}

.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: center;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1.3125rem;
  background: var(--white);
}


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

.gh-badge {
  position: absolute;
  top: 60%;
  left: -10%;
  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: 3rem;
  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: 1.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: 0.95rem;
  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;
  margin-bottom: calc(10% + 5rem);
}

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

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

#gh-feature-img {
  position: relative;
  width: 100%;
  border-radius: 50px;
  min-height: 20rem;
  object-fit: cover;
}

#gh-feature-img-container {
  width: 90%;
  margin-top: 150px;
}


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

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