/*
Theme Name: GSC Linz v2
Theme URI: https://gsc-linz.at
Author: ASKÖ Gehörlosen Sportclub Linz
Description: Offizielles Theme des ASKÖ Gehörlosen Sportclub Linz – hell, kontrastreich, Elementor-kompatibel
Version: 2.25
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --red:        #C8102E;
  --red-dark:   #A00D24;
  --red-light:  #FDEEF1;
  --navy:       #1A2B4A;
  --text:       #1A1A2E;
  --text-muted: #4A5568;
  --bg:         #F7F8FA;
  --white:      #FFFFFF;
  --border:     #E2E6ED;
  --shadow:     0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 4px 24px rgba(0,0,0,.12);
  --radius:     10px;
  --radius-lg:  16px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }

/* =============================================
   TYPOGRAPHY — WCAG AA kontrast
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(24px, 3.5vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); }

/* =============================================
   LAYOUT
   ============================================= */
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.divider { height: 1px; background: var(--border); }

/* =============================================
   HEADER & NAV
   ============================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #E8B4BC;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 76px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.site-logo img {
  height: 56px;
  width: 56px;
  object-fit: contain;
}
.site-logo__text {
  font-family: var(--font);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
.logo-askoe { color: var(--red); font-size: inherit; font-weight: 700; }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a, .main-nav > .has-dropdown > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.main-nav > a:hover,
.main-nav > .has-dropdown > a:hover { background: var(--bg); color: var(--red); }
.main-nav > a.active,
.main-nav > .has-dropdown > a.active { color: var(--red); font-weight: 700; }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 10px; color: var(--text-muted); }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 300;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text) !important;
  padding: 9px 14px !important;
  border-radius: 6px;
  text-decoration: none;
}
.dropdown a:hover { background: var(--bg) !important; color: var(--red) !important; }

/* Red CTA button in nav */
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 6px;
  padding: 8px 16px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* English button - red border, white background */
.nav-cta--en {
  background: transparent !important;
  color: var(--text) !important;
  border: 2px solid var(--red) !important;
  border-radius: 6px;
  padding: 7px 16px !important;
  font-weight: 600 !important;
  margin-left: 8px;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.nav-cta--en:hover { background: var(--red-light) !important; color: var(--red) !important; }

/* Nav color variants */
.nav-black { color: var(--text) !important; }
.nav-black:hover { background: var(--bg) !important; color: var(--text) !important; }
.nav-red { color: var(--red) !important; font-weight: 600 !important; }
.nav-red:hover { background: var(--red-light) !important; color: var(--red-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 12px 24px 20px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; color: var(--text); padding: 10px 0; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); text-decoration: none; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .sub-item { padding-left: 16px; font-size: 14px; color: var(--text-muted); }

/* Jubilee banner */
.jubilee-banner {
  background: var(--red);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}
.jubilee-banner a { color: var(--white); text-decoration: underline; }

/* =============================================
   HERO — hell mit rotem Akzent
   ============================================= */
.hero {
  background: var(--white);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.hero__mascot {
  margin: 0 auto 28px;
  max-width: 480px;
}
.hero__mascot img { width: 100%; height: auto; }
.hero__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero__title span { color: var(--red); }
.hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 16px 24px;
  min-width: 110px;
}
.hero__stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero__stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}
.hero__buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .15s;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red-light); }
.btn--dark { background: var(--text); color: var(--white); border-color: var(--text); }
.btn--dark:hover { background: #2d2d2d; color: var(--white); }
.btn--dl {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 6px;
}
.btn--dl:hover { border-color: var(--red); color: var(--red); }
.btn--dl .lang {
  font-size: 11px;
  background: var(--bg);
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: 3px;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; color: var(--text); }
.section-body {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.8;
}

/* =============================================
   PAGE HERO (Unterseiten)
   ============================================= */
.page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px 44px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.page-hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.page-hero h1 { color: var(--text); margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); max-width: 560px; font-size: 16px; margin: 0; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.card--red-top { border-top: 3px solid var(--red); }
.card--red { background: var(--red); color: var(--white); }
.card--dark { background: var(--text); color: var(--white); }
.card--bg { background: var(--bg); border-color: var(--border); }

/* =============================================
   NEWS CARDS
   ============================================= */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.news-card__top { height: 6px; background: var(--red); }
.news-card__body { padding: 20px; }
.news-card__date { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.news-card__title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.news-card__excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =============================================
   EVENT CARDS
   ============================================= */
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
}
.event-card--red { border-top-color: var(--red); background: var(--red); color: #fff; }
.event-tag {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  color: var(--text-muted);
}
.event-card h3 { color: var(--text); font-size: 20px; margin-bottom: 10px; }
.event-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.event-card__detail { margin-top: 12px; font-size: 12px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 6px; }
.event-card__detail span { color: var(--text); font-weight: 600; }
.event-card__dl { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-wrap: wrap; }

/* =============================================
   WHY / VALUES CARDS
   ============================================= */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow);
}
.why-card__icon { font-size: 24px; margin-bottom: 12px; }
.why-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =============================================
   PARTNER CARDS
   ============================================= */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.partner-card__role {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.partner-card__logo { font-size: 22px; font-weight: 700; color: var(--text); margin: 8px 0; }
.partner-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =============================================
   SPONSORING PACKAGES
   ============================================= */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  position: relative;
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}
.pkg-card:hover { box-shadow: var(--shadow-lg); }
.pkg-card--featured { border: 2px solid #D4A017; background: #FFFDF5; }
.pkg-featured-badge {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: #D4A017;
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 20px;
  white-space: nowrap;
}
.pkg-tier { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.pkg-tier--gold { color: #B8860B; }
.pkg-tier--silver { color: #6B7A8D; }
.pkg-tier--bronze { color: #8B5E3C; }
.pkg-tier--trikot { color: #2E7D32; }
.pkg-tier--hof { color: #6A1B9A; }
.pkg-price { font-size: 30px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 14px; }
.pkg-price small { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.pkg-features { list-style: none; }
.pkg-features li { font-size: 12px; color: var(--text-muted); padding: 4px 0; border-top: 1px solid var(--border); display: flex; align-items: flex-start; gap: 6px; line-height: 1.4; }
.pkg-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  box-shadow: var(--shadow);
}
.faq-q { font-size: 20px; font-weight: 700; color: var(--red); line-height: 1.3; }
.faq-item h3 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.faq-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =============================================
   DOWNLOAD SECTION
   ============================================= */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.dl-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.dl-card h3 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.dl-card .btn--dl { width: 100%; justify-content: center; margin-bottom: 6px; }
.dl-card .btn--dl:last-child { margin-bottom: 0; }

/* =============================================
   LOCATION CARDS
   ============================================= */
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.location-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.location-card__header { background: var(--text); color: var(--white); padding: 16px 20px; }
.location-card__header--red { background: var(--red); }
.location-card__header h3 { color: var(--white); font-size: 17px; margin: 0; }
.location-card__body { padding: 16px 20px; }
.location-card__body p { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }

/* =============================================
   INFO BOX
   ============================================= */
.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.info-box h3 { font-size: 16px; margin-bottom: 6px; color: var(--text); }
.info-box p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--red);
  padding: 72px 24px;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 28px; font-size: 16px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.75); }
.btn--white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn--white:hover { background: #f0f0f0; color: var(--red-dark); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #E8EDF5; color: var(--text-muted); padding: 56px 24px 28px; border-top: 3px solid var(--red); }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.site-footer h4 { font-size: 12px; font-weight: 700; color: var(--text); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: var(--text-muted); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; transition: color .15s; }
.site-footer a:hover { color: var(--red); }
.site-footer p { font-size: 13px; line-height: 1.7; margin-bottom: 6px; color: var(--text-muted); }
.site-footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.site-footer__logo img { height: 44px; width: 44px; object-fit: contain; }
.site-footer__logo span { font-size: 16px; font-weight: 700; color: var(--text); }
.site-footer__bottom {
  border-top: 1px solid #C5CFE0;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 1000px;
  margin: 0 auto;
}

/* Event tags - clean dots instead of emojis */
.event-tag::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 6px;
  vertical-align: middle;
}
.elementor-section { width: 100%; }
.elementor-widget-wrap { width: 100%; }
/* Elementor überschreibt keine Theme-Styles */
body.elementor-page .site-header,
body.elementor-page .site-footer { display: flex; flex-direction: column; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 48px 0; }
  .hero { padding: 52px 20px 48px; }
  .hero__stat { padding: 12px 16px; min-width: 90px; }
  .hero__stat-num { font-size: 26px; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .site-header__inner { padding: 0 16px; }
  .vorstand-foto-grid { grid-template-columns: 1fr !important; }
  .idkm-grid { grid-template-columns: 1fr !important; }
  .badminton-grid { grid-template-columns: 1fr !important; }
  .vorstand-card-b { grid-template-columns: 1fr !important; }
  .vorstand-card-b img { height: 220px !important; }
  .vorstand-card-b .info { border-left: none !important; border-top: 3px solid var(--red) !important; }
  /* Hotel responsive */
  .hotel-responsive { grid-template-columns: 1fr !important; }
  .hotel-responsive img { height: 220px !important; width: 100% !important; }
  /* Hero logos responsive */
  .page-hero [style*="grid-template-columns:1fr auto"] { grid-template-columns: 1fr !important; }
  .page-hero img[style*="object-fit:contain"] { width: 140px !important; height: 140px !important; margin: 0 auto; }
}
@media (max-width: 480px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 8px; }
  .hero { padding: 40px 16px 36px; }
  .cta-section { padding: 48px 16px; }
  .vorstand-foto-grid { grid-template-columns: 1fr !important; }
  .idkm-grid { grid-template-columns: 1fr !important; }
}
