:root {
  --brand-green: #3ca832;
}

h1, h2 {
  color: var(--brand-green);
}

section[id] {
  scroll-margin-top: 96px;
}

.brand-notice {
  display: flex;
  gap: 1rem;
  align-items: stretch;

  background: #fff;
  border: 2px solid var(--brand-green);
  border-radius: 1rem;           
  color: var(--brand-green);

  padding: 1rem;
}

.brand-notice a {
  color: var(--brand-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.brand-notice a:hover,
.brand-notice a:focus {
  text-decoration-thickness: 2px;
}

.brand-notice__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  min-width: 3.25rem;
  border-radius: 0.75rem;
  background: var(--brand-green);
  color: #fff; /* steuert das SVG via currentColor */
}

.brand-notice__svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;  /* sicherstellen */
}

.brand-notice__content h2 {
  color: var(--brand-green);
}

/* Orbiter images */
.orbiter-img-wrap {
  aspect-ratio: 16 / 10;   /* gleiche Höhe für beide */
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.08);
}

.orbiter-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbiter-cta {
  background: #3ca832;
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.orbiter-cta p {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.orbiter-cta a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.orbiter-cta a:hover {
  text-decoration-thickness: 2px;
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: #3ca832;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.youtube-link:hover {
  text-decoration-thickness: 2px;
}

.youtube-icon {
  width: 1.3em;
  height: 1.3em;
  fill: #ff0033; /* YT red */
}

@media (max-width: 576px) {
  .brand-notice {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-notice__icon {
    width: 3rem;
    min-width: 3rem;
  }
}

.product-card {
  border-radius: 1rem;
}

.product-img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Contact section */
.contact-card {
  background: #fff;
  border: 2px solid #3ca832;
  border-radius: 1rem;
  padding: 1.5rem;
  color: #2b2b2b;
}

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

.contact-item {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.contact-item i {
  font-size: 1.5rem;
  color: #3ca832;
  line-height: 1;
  margin-top: 0.15rem;
}

.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,.55);
  margin-bottom: 0.15rem;
}

.contact-value,
.contact-value a {
  font-size: 1.05rem;
  color: #1f1f1f;
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Right CTA box (inverse brand style) */
.contact-cta {
  background: #3ca832;
  color: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.08);
}

.contact-cta .btn {
  border-radius: 0.85rem;
}


/* =========================
   Bootstrap Overrides
   ========================= */

.custom-navbar {
    /*--bs-navbar-bg: #3ca832;*/
	--bs-navbar-bg: #202020;
    --bs-navbar-color: rgba(255, 255, 255, 0.9);
    --bs-navbar-hover-color: #ffffff;
    --bs-navbar-active-color: #ffffff;
    --bs-navbar-brand-color: #ffffff;
    --bs-navbar-brand-hover-color: #ffffff;

    background-color: var(--bs-navbar-bg);
}


