/**
 * ==========================================================================
 * SG WBO - SLIM PREMIUM v6.0
 * Clean, Light, Modern
 * ==========================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=Oswald:wght@300;400;500&display=swap');

:root {
  --sg-primary: #009647;
  --sg-primary-dark: #006633;
  --sg-primary-light: #40b472;
  --sg-accent: #D4A853;
  --sg-dark: #0A1612;
  --sg-dark-2: #111D17;
  --sg-text: #1a1f1c;
  --sg-text-light: #4a5d52;
  --sg-text-muted: #7a8f82;
  --sg-surface: #FDFEFF;
  --sg-surface-elevated: #FFFFFF;
  --sg-surface-muted: #F0F4F1;
  --sg-gradient-green: linear-gradient(135deg, #009647 0%, #006633 100%);
  --sg-gradient-gold: linear-gradient(135deg, #D4A853 0%, #B8923D 100%);
  --sg-shadow-sm: 0 2px 8px rgba(10, 22, 18, 0.06);
  --sg-shadow-md: 0 8px 24px rgba(10, 22, 18, 0.1);
  --sg-shadow-lg: 0 16px 48px rgba(10, 22, 18, 0.14);
  --sg-font-display: 'Bebas Neue', Impact, sans-serif;
  --sg-font-body: 'Inter', -apple-system, sans-serif;
  --sg-font-accent: 'Oswald', sans-serif;
  --sg-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --sg-radius: 12px;
}

/* ==========================================================================
   SLIM HERO - Clean & Light
   ========================================================================== */

.sg-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sg-dark);
  overflow: hidden;
}

.sg-hero__bg {
  position: absolute;
  inset: 0;
}

.sg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.sg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,18,0.85) 0%, rgba(10,22,18,0.7) 100%);
}

.sg-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 800px;
}

.sg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 100px;
  font-family: var(--sg-font-accent);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sg-accent);
  margin-bottom: 1.5rem;
}

.sg-hero__title {
  font-family: var(--sg-font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.95;
  color: #fff;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.sg-hero__title--accent {
  background: var(--sg-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sg-hero__subtitle {
  font-family: var(--sg-font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.sg-hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.sg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--sg-font-accent);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s var(--sg-ease);
}

.sg-btn--primary {
  background: var(--sg-gradient-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,150,71,0.3);
}

.sg-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,150,71,0.4);
}

.sg-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.sg-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   SLIM NAVIGATION - Clean & Modern
   ========================================================================== */

.sg-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 18, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s var(--sg-ease);
}

.sg-nav--scrolled {
  background: rgba(10, 22, 18, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.sg-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
}

.sg-nav__logo {
  height: 40px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s var(--sg-ease);
}

.sg-nav__logo:hover {
  transform: scale(1.05);
}

.sg-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sg-nav__item {
  position: relative;
}

.sg-nav__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.625rem 1rem;
  font-family: var(--sg-font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-radius: var(--sg-radius);
  transition: all 0.3s var(--sg-ease);
}

.sg-nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.sg-nav__link--active {
  color: var(--sg-accent);
}

.sg-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--sg-accent);
  border-radius: 1px;
}

.sg-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--sg-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--sg-radius);
  box-shadow: var(--sg-shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--sg-ease);
}

.sg-nav__item:hover .sg-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sg-nav__dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-family: var(--sg-font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s var(--sg-ease);
}

.sg-nav__dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.sg-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.sg-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s var(--sg-ease);
}

/* ==========================================================================
   SLIM NEWS CARDS - Clean Grid
   ========================================================================== */

.sg-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}

.sg-news-card {
  background: var(--sg-surface-elevated);
  border-radius: var(--sg-radius);
  overflow: hidden;
  box-shadow: var(--sg-shadow-sm);
  transition: all 0.4s var(--sg-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sg-news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sg-shadow-md);
}

.sg-news-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.sg-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--sg-ease);
}

.sg-news-card:hover .sg-news-card__image img {
  transform: scale(1.05);
}

.sg-news-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.875rem;
  background: var(--sg-gradient-green);
  color: #fff;
  font-family: var(--sg-font-accent);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.sg-news-card__content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sg-news-card__title {
  font-family: var(--sg-font-display);
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--sg-text);
  margin: 0 0 0.5rem;
}

.sg-news-card__excerpt {
  font-family: var(--sg-font-body);
  font-size: 0.9rem;
  color: var(--sg-text-light);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sg-news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  border-top: 1px solid var(--sg-surface-muted);
}

.sg-news-card__date {
  font-family: var(--sg-font-body);
  font-size: 0.8rem;
  color: var(--sg-text-muted);
}

.sg-news-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--sg-font-accent);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-primary);
  text-decoration: none;
  transition: gap 0.3s var(--sg-ease);
}

.sg-news-card__read-more:hover {
  gap: 0.6rem;
}

/* ==========================================================================
   SLIM TEAM CARDS
   ========================================================================== */

.sg-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.sg-team-card {
  position: relative;
  background: var(--sg-dark);
  border-radius: var(--sg-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s var(--sg-ease);
  border: 1px solid rgba(255,255,255,0.05);
}

.sg-team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,150,71,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.sg-team-card__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,150,71,0.1);
  border-radius: 50%;
  transition: transform 0.4s var(--sg-ease);
}

.sg-team-card:hover .sg-team-card__logo {
  transform: scale(1.1);
}

.sg-team-card__logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sg-team-card__name {
  font-family: var(--sg-font-display);
  font-size: 1.75rem;
  color: #fff;
  margin: 0 0 0.25rem;
}

.sg-team-card__league {
  font-family: var(--sg-font-accent);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-accent);
  margin-bottom: 1.25rem;
}

.sg-team-card__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.sg-team-card__stat-value {
  font-family: var(--sg-font-display);
  font-size: 1.5rem;
  color: #fff;
}

.sg-team-card__stat-label {
  font-family: var(--sg-font-body);
  font-size: 0.65rem;
  color: var(--sg-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   SLIM FOOTER
   ========================================================================== */

.sg-footer {
  position: relative;
  background: var(--sg-dark);
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
}

.sg-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sg-footer__brand {
  padding-right: 1rem;
}

.sg-footer__logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.sg-footer__tagline {
  font-family: var(--sg-font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sg-footer__social {
  display: flex;
  gap: 0.75rem;
}

.sg-footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all 0.3s var(--sg-ease);
}

.sg-footer__social-link:hover {
  background: var(--sg-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.sg-footer__col-title {
  font-family: var(--sg-font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-accent);
  margin-bottom: 1.25rem;
}

.sg-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sg-footer__nav li {
  margin-bottom: 0.625rem;
}

.sg-footer__nav a {
  font-family: var(--sg-font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.sg-footer__nav a:hover {
  color: #fff;
}

.sg-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sg-footer__copyright {
  font-family: var(--sg-font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.sg-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.sg-footer__legal a {
  font-family: var(--sg-font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.sg-footer__legal a:hover {
  color: var(--sg-accent);
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

.sg-nav__mobile {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sg-dark);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--sg-ease);
  z-index: 999;
  overflow-y: auto;
}

.sg-nav__mobile.active {
  transform: translateX(0);
}

.sg-nav__mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sg-nav__mobile-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sg-nav__mobile-link {
  display: block;
  padding: 1rem 0;
  font-family: var(--sg-font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.sg-nav__mobile-dropdown {
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}

.sg-nav__mobile-dropdown a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .sg-nav__list {
    display: none;
  }
  
  .sg-nav__toggle {
    display: flex;
  }
  
  .sg-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sg-footer__brand {
    grid-column: span 2;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .sg-hero {
    min-height: 75vh;
  }
  
  .sg-hero__content {
    padding: 4rem 1.5rem;
  }
  
  .sg-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .sg-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
  
  .sg-news-grid {
    grid-template-columns: 1fr;
  }
  
  .sg-team-grid {
    grid-template-columns: 1fr;
  }
  
  .sg-footer__grid {
    grid-template-columns: 1fr;
  }
  
  .sg-footer__brand {
    grid-column: span 1;
  }
  
  .sg-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   RESPONSIVE FIXES – sg-premium.css
   Breakpoints: 360px · 480px · 1440px · 1920px
   ========================================================================== */

/* ── 360px – Sehr kleine Smartphones ───────────────────────────────────────── */
@media (max-width: 360px) {
  /* Navigation: weniger Seitenabstand */
  .sg-nav__inner {
    padding: 0 0.875rem; /* war: 0 2rem – spart 19px pro Seite */
  }

  /* Hero: kleinere Innenabstände */
  .sg-hero__content {
    padding: 3.5rem 1rem; /* war: 5rem 2rem */
  }

  /* Hero Title: explizit begrenzen */
  .sg-hero__title {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  /* Hero CTA-Buttons stapeln */
  .sg-hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .sg-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  /* News Grid: 1 Spalte */
  .sg-news-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
  }

  /* Team Grid: 1 Spalte */
  .sg-team-grid {
    grid-template-columns: 1fr;
  }

  /* Footer: kompakter */
  .sg-footer {
    padding: 2.5rem 0 1rem;
  }

  .sg-footer__grid {
    padding: 0 1rem;
  }

  .sg-footer__bottom {
    padding: 1rem 1rem 0;
  }
}

/* ── 480px – Kleine Smartphones ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero Subtitle: etwas kleiner */
  .sg-hero__subtitle {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

  /* Badge: kompakter */
  .sg-hero__badge {
    font-size: 0.6rem;
    padding: 0.4rem 1rem;
  }

  /* Dropdown: volle Breite auf Mobile */
  .sg-nav__dropdown {
    position: static;
    min-width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
  }

  /* Footer Stats-Gap reduzieren */
  .sg-team-card__stats {
    gap: 1.25rem;
  }
}

/* ── 1440px – Wide Screen ─────────────────────────────────────────────────────── */
@media (min-width: 1440px) {
  /* Navigation: größerer Container */
  .sg-nav__inner {
    max-width: 1600px;
  }

  /* Footer: größerer Container */
  .sg-footer__grid,
  .sg-footer__bottom {
    max-width: 1600px;
  }

  /* Hero: mehr vertikalen Raum */
  .sg-hero__content {
    padding: 6rem 2rem;
  }

  /* News Grid: mehr Platz */
  .sg-news-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

/* ── 1920px – Extra Wide Screen ──────────────────────────────────────────────── */
@media (min-width: 1920px) {
  /* Navigation: noch größerer Container */
  .sg-nav__inner {
    max-width: 1800px;
  }

  /* Footer */
  .sg-footer__grid,
  .sg-footer__bottom {
    max-width: 1800px;
  }

  /* Hero: maximale Polsterung */
  .sg-hero__content {
    padding: 7rem 2rem;
  }

  /* Hero Title: Maximalgröße */
  .sg-hero__title {
    font-size: 7rem;
  }
}
