/* ----------------------------------------------------------
  CSS RESET & BASE STYLES
-------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #17191c;
  color: #ecf0f3;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #33c495;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #41dfaf;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
strong, b {
  font-weight: bold;
}
hr {
  border: none;
  height: 1px;
  background: #262a2e;
  margin: 24px 0;
}

/* Fonts: use Google Fonts if applicable */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600|Roboto:400,500,700&display=swap');

/* Typography Hierarchy */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  color: #f4ebdd;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: #ecf0f3;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #b4c0cc;
  font-weight: 600;
  margin-bottom: 18px;
}
p, li {
  font-size: 1rem;
  color: #d2d7db;
  line-height: 1.7;
}

.section h1, .section h2, .section h3, .section h4 {
  color: #e2e7ea;
}

/* ----------------------------------------------------------
  LAYOUT CONTAINERS
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(23,25,28, 0.98);
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(10,14,22,0.10), 0 1.5px 0 0 #353b43;
  border: 1px solid #23262b;
}

/* Main hero and newsletter call-to-actions */
.hero {
  background: #20242a url('../assets/bg-hero-industrial.jpg') no-repeat center center/cover;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 6px 40px 0 rgba(16,22,32,0.30);
}
.cta-newsletter, .section-hero {
  background: #191b1e;
  box-shadow: 0 3px 13px rgba(50, 60, 68, 0.06);
  margin-bottom: 60px;
}

/* ----------------------------------------------------------
  FLEXBOX CARD/PATTERNS
------------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #20242a;
  border: 1px solid #32373d;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(40,48,56,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  color: #f4ebdd;
  transition: box-shadow 0.23s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 6px 32px #0c1018cc;
  transform: translateY(-5px) scale(1.03);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f4ebdd;
  color: #23262b;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(60,66,72,0.10);
  border: 2px solid #bbbaa8;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.22s, border-color 0.18s;
  min-width: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 34px #049c6850;
  border-color: #089c68;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* UL and OL cards/patterns */
ul, ol {
  list-style-type: disc;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 12px;
  padding-left: 0.1em;
}

/* Club-list on clubs-teams */
.club-list ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 28px;
}
.club-list li {
  background: #22262b;
  border-left: 6px solid #114a82;
  padding: 15px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 1.04rem;
}

/* Filter Options */
.filter-options {
  background: #19233a;
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 28px;
  border-left: 5px solid #089c68;
}

/* Schedule Table for Kursplan */
.schedule-table {
  background: #22262b;
  border-radius: 12px;
  padding: 18px 15px 30px 15px;
  box-shadow: 0 1px 9px #141a2170;
  margin-bottom: 30px;
  overflow-x: auto;
}
.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.schedule-table th, .schedule-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #32373d;
  color: #f4ebdd;
  font-family: 'Roboto', Arial, sans-serif;
}
.schedule-table th {
  background: #114a82;
  color: #f4ebdd;
  font-weight: 700;
  border-bottom: 2px solid #089c68;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}
.schedule-table tr:last-child td {
  border-bottom: none;
}
.schedule-table tbody tr:hover {
  background: #19355a;
}

/* Notification & info boxes */
.notification-banner, .info-box, .trust-signals, .faq-teaser, .privacy-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1a211e;
  border-left: 6px solid #089c68;
  border-radius: 8px;
  padding: 13px 18px;
  color: #b4c0cc;
  margin-bottom: 22px;
  font-size: 1.04rem;
}
.info-box {
  background: #2a2e30;
  border-left-color: #f4ebdd;
  color: #f4ebdd;
}
.privacy-note {
  background: #1c2430;
  color: #d8dacb;
  border-left-color: #114a82;
  font-size: 0.98rem;
}

/* ----------------------------------------------------------
  HEADER & NAVIGATION
-------------------------------------------------------------*/
header {
  width: 100%;
  background: #17191c;
  border-bottom: 2.5px solid #21232a;
  box-shadow: 0 2px 20px 0 rgba(17, 74, 130, 0.07);
  position: relative;
  z-index: 120;
}
.logo, .footer-logo {
  display: flex;
  align-items: center;
  height: 54px;
  min-width: 120px;
  padding-right: 26px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #e2e7ea;
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #232a34;
  color: #089c68;
}
.main-nav .cta-primary {
  background: #089c68;
  color: #17191c;
  border-radius: 7px;
  font-weight: 700;
  box-shadow: 0 2px 12px #089c6833;
  border: none;
  letter-spacing: 0.02em;
  transition: background 0.22s, color 0.14s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #114a82;
  color: #f4ebdd;
}

/* ----------------------------------------------------------
  MOBILE BURGER MENU
-------------------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: #114a82;
  color: #f4ebdd;
  border: none;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #089c68;
  color: #17191c;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #17191cf6;
  z-index: 250;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 30px 18px 0;
  font-size: 2rem;
  background: none;
  color: #f4ebdd;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #089c68;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 16px 38px;
  font-size: 1.18rem;
}
.mobile-nav a {
  color: #f4ebdd;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 9px 11px 5px;
  border-radius: 7px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #089c68;
  color: #23262b;
}
.mobile-nav a.cta-primary {
  background: #114a82;
  color: #f4ebdd;
  border-radius: 8px;
}
.mobile-nav a.cta-primary:hover, .mobile-nav a.cta-primary:focus {
  background: #089c68;
  color: #17191c;
}

/* ----------------------------------------------------------
  FOOTER
------------------------------------------------------------- */
footer {
  background: #14181d;
  color: #dee3ee;
  font-size: 0.98rem;
  margin-top: 60px;
  border-top: 2px solid #1e232b;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 38px;
  padding: 44px 0 20px 0;
}
.footer-logo {
  min-width: 90px;
  margin-bottom: 15px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1rem;
}
.footer-nav a {
  color: #b4c0cc;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #089c68;
}
.footer-contact p {
  margin-bottom: 10px;
  color: #e6e8ea;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact a {
  color: #089c68;
  word-break: break-all;
}
.footer-contact a:hover {
  color: #114a82;
}
.footer-copyright {
  padding: 18px 0;
  border-top: 1px solid #232a2e;
  text-align: center;
  color: #b4c0cc;
  font-size: 0.96rem;
}

/* ----------------------------------------------------------
  BUTTONS / CTA
------------------------------------------------------------- */
.cta-primary,
.button,
input[type='submit'],
button[type='submit'] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #089c68;
  color: #17191c;
  padding: 15px 32px;
  font-size: 1.12rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  box-shadow: 0 1.5px 6px #089c6830;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.17s, box-shadow 0.14s;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus,
.button:hover, .button:focus,
input[type='submit']:hover, input[type='submit']:focus,
button[type='submit']:hover, button[type='submit']:focus {
  background: #114a82;
  color: #f4ebdd;
  transform: scale(1.04);
}
.button-secondary {
  background: #232a2e;
  color: #ecf0f3;
  border: 1.6px solid #114a82;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 7px;
  transition: background 0.16s, border 0.15s, color 0.13s;
  padding: 13px 27px;
  margin: 0 9px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #089c68;
  color: #20242a;
  border-color: #089c68;
}

/* ----------------------------------------------------------
  RESPONSIVE MEDIA QUERIES
-------------------------------------------------------------*/
@media (max-width: 980px) {
  .container { max-width: 97vw; }
  .footer-main { gap: 28px; }
  .main-nav { gap: 10px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.3rem; }
  .section, section { padding: 30px 7vw; }
}
@media (max-width: 768px) {
  .container { max-width: 99vw; padding-left: 12px; padding-right: 12px; }
  header .container { height: 62px; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    margin-left: 16px;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
    padding: 28px 0 9px 0;
  }
  .footer-contact { margin-bottom: 19px; }
  .hero { min-height: 170px; border-radius: 0 0 14px 14px; }
  .cta-newsletter, .section-hero { padding: 24px 9px; border-radius: 12px; }
  .section, section { padding: 20px 9px; border-radius: 12px; margin-bottom: 40px; }
  .content-wrapper { gap: 14px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 8px; padding: 15px; font-size: 1rem; }
  .schedule-table { padding: 6px 0px 12px 0px; }
  .card-container, .content-grid, .text-image-section, .feature-item {
    flex-direction: column !important;
    gap: 13px !important;
  }
}

@media (max-width: 510px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.08rem; }
  .schedule-table th, .schedule-table td { padding: 7px 5px; font-size: 0.93rem; }
  .cta-primary, .button, input[type='submit'], button[type='submit'] { padding: 10px 20px; font-size: 0.98rem; }
}

/* ----------------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
-------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 901;
  background: #23262b;
  color: #f4ebdd;
  box-shadow: 0 -2px 26px 0 rgba(16, 22, 32, 0.22);
  border-top: 2.5px solid #089c68;
  padding: 25px 10vw 20px 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  flex-wrap: wrap;
  transition: transform 0.35s, opacity 0.30s;
  font-size: 1.05rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 220px;
  color: #f4ebdd;
  font-size: 1.06rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner .button-cook {
  background: #089c68;
  color: #17191c;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  padding: 11px 22px;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.cookie-banner .button-cook:hover, .cookie-banner .button-cook:focus {
  background: #114a82;
  color: #f4ebdd;
}
.cookie-banner .button-settings {
  background: #232a2e;
  color: #ecf0f3;
  border: 1.2px solid #114a82;
  font-weight: 600;
  border-radius: 7px;
  padding: 11px 19px;
}
.cookie-banner .button-settings:hover, .cookie-banner .button-settings:focus {
  background: #089c68;
  color: #20242a;
  border: 1.2px solid #089c68;
}

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 10px; font-size: 0.98rem; }
  .cookie-banner .cookie-actions { gap: 8px; }
}

.cookie-modal-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #1a181aee;
  z-index: 1223;
  transition: opacity 0.22s, background 0.15s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #23262b;
  color: #f4ebdd;
  padding: 44px 38px 27px 38px;
  border-radius: 16px;
  max-width: 380px;
  width: 92vw;
  box-shadow: 0 6px 32px #0c1018ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.34rem;
  color: #089c68;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid #353b43;
  font-size: 1.07rem;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
}
.cookie-modal .category-essential {
  color: #b4c0cc;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
  margin-top: 2px;
}
.cookie-modal .button-cook, .cookie-modal .button-settings {
  min-width: 110px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  color: #f4ebdd;
  font-size: 1.47rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #089c68;
}

/* Simple toggle switches for cookies */
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  border-radius: 13px;
  background: #d2d7db;
  position: relative;
  outline: none;
  transition: background 0.18s;
  vertical-align: middle;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #089c68;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #23262b;
  transition: transform 0.18s, background 0.16s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
  background: #f4ebdd;
}

@media (max-width: 560px) {
  .cookie-modal { padding: 22px 8px 16px 8px; }
  .cookie-modal h2 { font-size: 1.06rem; }
}

/* ----------------------------------------------------------
  FORM ELEMENTS (for probetraining/kontakt)
-------------------------------------------------------------*/
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 12px 15px;
  margin-bottom: 15px;
  background: #171a1d;
  color: #f4ebdd;
  border: 1.2px solid #32373d;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.16s, box-shadow 0.13s;
  width: 100%;
  box-sizing: border-box;
}
input:focus, select:focus, textarea:focus {
  border-color: #089c68;
  box-shadow: 0 0 0 2px #05906955;
  outline: none;
}

/* ----------------------------------------------------------
  UTILITIES + EXTRAS
-------------------------------------------------------------*/
.shadow-light {
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.rounded {
  border-radius: 10px;
}
.hide {
  display: none !important;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-accent {
  color: #089c68;
}
.text-muted {
  color: #b4c0cc;
}

/* ----------------------------------------------------------
  INDUSTRIAL MODERN DECORATIVE ACCENTS
-------------------------------------------------------------*/
/* Metallic accents: border and metallic button effect */
.card, .section, .hero, .footer-main, .footer-contact, .cta-newsletter, .content-wrapper, .schedule-table, .info-box, .notification-banner {
  border-left: 4px solid #8ba9ba33;
}

/* Industrial font accents (for headings/CTA) */
h1, h2, h3, .cta-primary, .main-nav a, .mobile-nav a {
  text-transform: none;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
}

/* Urban shadow for interactive elements */
.cta-primary, .button, input[type='submit'], button[type='submit'] {
  box-shadow: 0 2.5px 10px #232b2940, 0 1.5px 0 0 #089c6822;
}

/* Icons next to text (used in li/img, etc) */
li img, .trust-signals img, .contact-details img, .privacy-note img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
  filter: brightness(0.96) contrast(1.15) grayscale(0.45);
}

/*******************************
*   END OF INDUSTRIAL MODERN!  *
*******************************/