/**
 * GameZoneOne – Markenfarben (Cyber / Dunkel / Electric Blue)
 * Ergänzt das Colorlib-Template ohne core style.css zu überschreiben.
 */
:root {
  --gz-blue: #00b4ff;
  --gz-blue-dim: #0077b6;
  --gz-bg: #0a1628;
}

/* Navbar: horizontales Logo (SVG enthält Icon + Wortmarke) */
.navbar-brand.navbar-brand-logo {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.gz-navbar-logo {
  height: 40px;
  width: auto;
  max-width: min(280px, 70vw);
  vertical-align: middle;
  display: block;
}

/* Hero Slide 1: stärkerer Verlauf für Lesbarkeit (Tech-Look) */
.home-slider .slider-item.gz-hero-slide .overlay {
  opacity: 0.75;
  background: linear-gradient(
    105deg,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.75) 45%,
    rgba(10, 22, 40, 0.35) 100%
  );
}

.gz-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: none;
}
.gz-tagline span {
  color: var(--gz-blue);
  font-weight: 500;
}

.btn-gz-primary {
  background: linear-gradient(180deg, var(--gz-blue) 0%, var(--gz-blue-dim) 100%) !important;
  border: none !important;
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.35);
}
.btn-gz-primary:hover {
  box-shadow: 0 0 28px rgba(0, 180, 255, 0.5);
}

/* Hero-Slider: große Screenshots begrenzen (kein horizontales Scrollen, kein Überlauf) */
.home-slider {
  overflow-x: hidden;
}
.home-slider .slider-item .col-md-7 img.img-fluid {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: min(52vh, 560px);
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 767.98px) {
  .home-slider .slider-item .col-md-7 img.img-fluid {
    max-height: min(42vh, 420px);
  }
}

/* Ablauf-Tabs: Bilder in der Spalte nicht zu hoch */
.ftco-section .tab-content .one-forth img.img-fluid {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: min(40vh, 380px);
  object-fit: contain;
}

/* „Warum GameZoneOne?“: linke Spalte ohne Video-Playbutton – nur Hintergrundbild */
.gz-services-visual.services-img {
  min-height: 320px;
}
@media (min-width: 992px) {
  .gz-services-visual.services-img {
    min-height: 100%;
  }
}

/* Leistungen-Seite: Karten */
.gz-leistung-card {
  height: 100%;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  background: #fff;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
  border: 1px solid rgba(0, 180, 255, 0.12);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.gz-leistung-card:hover {
  box-shadow: 0 12px 36px rgba(0, 180, 255, 0.15);
  border-color: rgba(0, 180, 255, 0.35);
}
.gz-leistung-card .gz-leistung-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(45deg, var(--gz-blue) 0%, #627bed 100%);
}
.gz-leistung-card .gz-leistung-icon span {
  color: #fff;
  font-size: 32px;
}
.ftco-section.bg-gz-muted {
  background: linear-gradient(180deg, #f4f8fc 0%, #eef3f9 100%) !important;
}

/* Domain-Check Ergebnis (Startseite) – explizite helle Schrift (BS4 hat kein text-white-50) */
.ftco-domain .gz-domain-result {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  border-left: 4px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.95);
}
.ftco-domain .gz-domain-result .gz-domain-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}
.ftco-domain .gz-domain-result p,
.ftco-domain .gz-domain-result strong {
  color: inherit;
}
.ftco-domain .gz-domain-result a:not(.btn) {
  color: var(--gz-blue);
  text-decoration: underline;
}
.ftco-domain .gz-domain-result .btn-primary {
  color: #fff !important;
}
.ftco-domain .gz-domain-result--ok {
  border-left-color: #28a745;
}
.ftco-domain .gz-domain-result--warn {
  border-left-color: #ffc107;
}
.ftco-domain .gz-domain-result--unk {
  border-left-color: #6c757d;
}
.ftco-domain .gz-domain-result--err {
  border-left-color: #dc3545;
}

/* Domain-Preishinweis (Hetzner + kleine Marge) */
.ftco-domain .domain-price-hint {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.ftco-domain .domain-price-hint a {
  color: var(--gz-blue);
  text-decoration: underline;
}
.ftco-domain .domain-price-hint a:hover {
  color: #fff;
}

/* Footer: E-Mail statt Dummy-Social-Icons */
.ftco-footer .gz-footer-contact a {
  opacity: 0.95;
}
.ftco-footer .gz-footer-contact a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* FAQ-Akkordeon (Startseite) */
.gz-faq-accordion .card {
  border-radius: 0.35rem;
}
.gz-faq-accordion .btn-link {
  font-weight: 600;
  text-decoration: none;
  white-space: normal;
}
.gz-faq-accordion .btn-link:hover,
.gz-faq-accordion .btn-link:focus {
  text-decoration: none;
  color: var(--gz-blue-dim) !important;
}
.gz-faq-accordion .btn-link:not(.collapsed) {
  color: var(--gz-blue-dim) !important;
}

/* Discord-Bereich (Startseite) */
.gz-discord-section {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
/* Rahmen nur so breit wie das Widget (350px), zentriert – kein „leerer“ Streifen */
.gz-discord-widget-host {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  overflow: hidden;
}
.gz-discord-widget-host iframe {
  display: block;
  width: 100% !important;
  max-width: 350px;
  height: 500px;
  margin: 0 auto;
  border: 0;
  border-radius: 0.25rem;
  vertical-align: top;
}

