/* ----------------------------------------------------------
   Dogphone Header Theme (dp-nav-shell)
   - Farbe: #c9cf86
   - Glänzend (Top-Highlight)
   - Ab der Mitte auslaufend
   - Unten neutral (kein Farbstich am unteren Rand)
   ---------------------------------------------------------- */
.dp-nav-shell{
  /* Mehrschichtiger Background:
     1) Gloss/shine oben
     2) Farb-Glow aus der Mitte (verläuft weich nach außen & nach unten)
     3) Base wie vorher (rgba(230,230,230,0.85)) */
  background:
    radial-gradient(700px 160px at 50% 0%,
      rgba(255,255,255,0.55) 0%,
      rgba(255,255,255,0.00) 65%
    ),
    radial-gradient(1100px 260px at 50% 42%,
      rgba(201,207,134,0.75) 0%,
      rgba(201,207,134,0.00) 72%
    ),
    rgba(230,230,230,0.85) !important;
}

/* ==========================================================================
   dogphone.io - Global Styles
   Ziel:
   - Einheitliches Grund-Design (wie Speedtest)
   - Einheitliche Schrift (Outfit)
   - Reuse der Speedtest "bpst" Komponenten für alle Seiten
   - Bestehende Marquee + Mobile Menu Animation weiter nutzbar
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&display=swap');

html, body{
  overflow-x: hidden;
  background: #fff;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ----------------------------------------------------------
   Speedtest "bpst" Erweiterungen (für Nicht-Speedtest Seiten)
   ---------------------------------------------------------- */

/* Damit .bpstBtn auch für <a> sauber funktioniert */
.bpstBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Einige Seiten nutzen die Speedtest Card ohne "S"-Trigger.
   speedtest.css setzt padding-top für das Icon -> hier Override */
.bpst-wrap.bpst-wrap--noicon{
  padding-top: 12px; /* entspricht --gap aus speedtest.css */
}

/* Secondary Button Variant: nutzt speedtest.css Variablen (auf .bpst-wrap) */
.bpstBtn.bpstBtn--secondary{
  background: rgba(245,245,245,0.70);
  color: var(--txt, #56585e);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 18px 38px rgba(0,0,0,0.14), inset 0 2px 0 rgba(255,255,255,0.22);
}

.bpstBtn.bpstBtn--secondary:hover{
  transform: translateY(-1px);
  filter: saturate(1.02);
  box-shadow: 0 24px 52px rgba(0,0,0,0.18), inset 0 2px 0 rgba(255,255,255,0.22);
}

/* Standard Content Padding innerhalb der Speedtest-Card (für normale Seiten) */
.scDrawerBody{
  position: relative;
  padding: 14px 16px 16px;
}

/* Section Titles im Speedtest-Look */
.scSectionTitle{
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--txt, #56585e);
  text-shadow: 0 1px 10px rgba(0,0,0,0.10);
}

.scSectionSub{
  margin: 6px 0 0;
  color: rgba(86,88,94,0.92);
  line-height: 1.45;
  font-weight: 500;
  overflow-wrap: anywhere;
}

/* Check List (App-Seite Features etc.) */
.scCheckList{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.scCheckItem{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: rgba(86,88,94,0.92);
  overflow-wrap: anywhere;
}

.scCheckItem i{
  margin-top: 3px;
}

/* Panel ohne eigenen Hintergrund (z.B. für Marquee-Container, der schon eigenen Background hat) */
.scPanelClean{
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.scPanelClean::after{
  display: none !important;
}

/* OS Download Buttons (App / QR Section) */
.scOsBtn{
  width: 100%;
  min-width: 0;

  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;

  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(245,245,245,0.70);
  color: var(--txt, #56585e);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  cursor: pointer;
  text-decoration: none;
  user-select: none;

  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12), inset 0 2px 0 rgba(255,255,255,0.22);
}

.scOsBtn:hover{
  transform: translateY(-1px);
  filter: saturate(1.02);
  box-shadow: 0 18px 38px rgba(0,0,0,0.16), inset 0 2px 0 rgba(255,255,255,0.22);
}

/* ----------------------------------------------------------
   Marquee (Legacy / Home)
   ---------------------------------------------------------- */

.marquee-container {
  width: 100%;
  height: 60px;
  overflow: hidden;
  background: linear-gradient(to right, white, #d1d5db, white);
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 15s linear infinite;
}

.marquee-item {
  margin-right: 80px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .marquee-item {
    font-size: 1.25rem;
    margin-right: 50px;
  }
}

/* Alternative marquee animations */
@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-left { animation: marquee-left 70s linear infinite; }
.marquee-right { animation: marquee-right 70s linear infinite; }

.marquee-left-fast { animation: marquee-left 30s linear infinite; }
.marquee-right-fast { animation: marquee-right 30s linear infinite; }

/* Pause on hover */
.group:hover .marquee-left,
.group:hover .marquee-right {
  animation-play-state: paused;
}

/* App marquee text animation */
@keyframes marquee {
  0%   { transform: translateX(100%); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateX(0); opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(-100%); opacity: 0; }
}

.animate-marquee {
  animation: marquee 6s linear infinite;
}

/* ----------------------------------------------------------
   MENU (HAMBURGER) ANIMATION
   ---------------------------------------------------------- */

.menu-open .top-bar {
  transform: translateY(15px) rotate(45deg);
}

.menu-open .middle-bar {
  opacity: 0;
}

.menu-open .bottom-bar {
  transform: translateY(-5px) rotate(-45deg);
}


/* Home Button auf Card-Pages: rot (#660000) – nur wo die Klasse gesetzt ist */
.bpstBtn--home-red{
  background: #9a859e !important;
  color: #fff !important;
}

.bpstBtn--home-red:hover{
  background: #9a859e !important; /* optional: etwas dunkler beim Hover */
}

.bpstBtn--black{
  background:#c9cf86 !important;
  color:#fff !important;
}
.bpstBtn--black:hover{
  background:##c9cf86 !important;
}

/* =========================
   OS Icons farbig (wie iOS)
   ========================= */
.scOsBtn .fa-windows{ color:#0078D6; }   /* Windows Blue */
.scOsBtn .fa-apple{   color:#000000; }   /* Apple Black */
.scOsBtn .fa-android{ color:#3DDC84; }   /* Android Green */

/* optional: iOS-Icon optisch auf gleiche Höhe bringen */
.scOsBtn img{ width:20px; height:20px; }
