/* CSS RESET & NORMALIZE */
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;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F8F6F2;
  color: #284155;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #284155;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #284155;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #284155;
}
h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.10rem;
  line-height: 1.3;
  color: #284155;
}
.subheadline {
  font-size: 1.35rem;
  color: #E5B972;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #284155;
  margin-bottom: 8px;
}
strong, b {
  font-weight: bold;
  color: #284155;
}

/* LINKS AND BUTTONS */
a {
  color: #284155;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #E5B972;
}
.btn-primary {
  background: linear-gradient(90deg, #284155 0%, #E5B972 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: 32px;
  padding: 13px 36px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(40,65,85,0.08);
  transition: background 0.25s, transform 0.15s, box-shadow 0.15s;
  outline: none;
  display: inline-block;
  margin-top: 14px;
  letter-spacing: 1px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(100deg, #E5B972 0%, #284155 100%);
  color: #284155;
  box-shadow: 0 6px 18px rgba(40,65,85,0.13);
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: #F8F6F2;
  color: #284155;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: 1px solid #E5B972;
  border-radius: 32px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E5B972;
  color: #fff;
}
/* LAYOUT CONTAINERS */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION */
header {
  position: relative;
  background: #F8F6F2;
  box-shadow: 0 2px 10px rgba(40,65,85,0.08);
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 20px;
}
header img {
  width: 150px;
  min-width: 120px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #284155;
  padding: 7px 10px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E5B972;
  color: #fff;
}
header .btn-primary {
  margin-left: 18px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #284155;
  margin-left: 18px;
  z-index: 31;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E5B972;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F8F6F2;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.51,.03,.47,1.11);
  box-shadow: -6px 0 24px rgba(40,65,85,0.20);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #284155;
  padding: 18px 26px 10px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid #E5B972;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 40px;
  padding-top: 55px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  color: #284155;
  padding: 10px 0;
  text-align: left;
  width: 100%;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5B972;
  color: #fff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #284155 60%, #E5B972 140%);
  padding: 80px 0 60px 0;
  color: #fff;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1, .hero p, .hero .btn-primary {
  color: #fff;
}
.hero h1 {
  font-size: 2.65rem;
  letter-spacing: -1px;
}
.hero .subheadline {
  color: #E5B972;
  font-size: 1.3rem;
}
.hero-text {
  font-size: 1.1rem;
  color: #F8F6F2;
  margin-bottom: 18px;
  margin-top: -6px;
}

/* FEATURE GRID & CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 30px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(40,65,85,0.07);
  padding: 26px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 215px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-item img {
  width: 39px;
  height: 39px;
}
.feature-item h3 {
  color: #284155;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 28px rgba(229,185,114,0.12);
  transform: translateY(-2px) scale(1.025);
  background: #F8F6F2;
}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 15px rgba(40,65,85,0.10);
  padding: 20px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #284155;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-author {
  font-size: 0.97rem;
  font-style: italic;
  color: #284155;
  opacity: 0.7;
  margin-top: -12px;
}

/* TEAM LIST */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.team-member {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 13px rgba(40,65,85,0.08);
  padding: 24px 22px;
  flex: 1 1 210px;
  margin-bottom: 20px;
}

/* SERVICE LIST (Clubs & Angebote) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 17px rgba(40,65,85,0.09);
  padding: 22px 20px 16px 20px;
  min-width: 205px;
  flex: 1 1 190px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.12s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 10px 32px rgba(229,185,114,0.13);
  transform: translateY(-2px) scale(1.025);
}

/* PRICING TABLE */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 33px;
}
.pricing-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(40,65,85,0.09);
  padding: 30px 24px 24px 24px;
  flex: 1 1 200px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.pricing-item:hover, .pricing-item:focus-within {
  box-shadow: 0 8px 28px rgba(229,185,114,0.10);
  transform: translateY(-1px) scale(1.012);
}
.pricing-item strong {
  color: #E5B972;
}

/* CTA SECTION */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  background: linear-gradient(90deg, #284155 70%, #E5B972 130%);
  border-radius: 18px;
  padding: 46px 24px 46px 24px;
  margin-top: 24px;
  margin-bottom: 60px;
}
.cta-section h2, .cta-section .btn-primary {
  color: #fff;
}

/* EVENT LIST */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.event-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(40,65,85,0.06);
  padding: 24px 22px 18px 22px;
  transition: box-shadow 0.14s, transform 0.12s;
}
.event-item:hover, .event-item:focus-within {
  box-shadow: 0 8px 30px rgba(229,185,114,0.09);
  transform: translateY(-2px) scale(1.01);
}

/* GENERIC CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 13px rgba(40,65,85,0.10);
  padding: 20px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.10s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 32px rgba(229,185,114,0.09);
  transform: translateY(-1.5px) scale(1.015);
}

/* CONTENT GRID */
.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.kontakt-details {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(40,65,85,0.05);
  padding: 16px 16px 14px 16px;
  margin-top: 16px;
}

/* FOOTER */
footer {
  background: #284155;
  color: #fff;
  padding: 40px 0 18px 0;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  opacity: 0.92;
  transition: opacity 0.17s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: #E5B972;
}
.contact-details p {
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.93;
  margin-bottom: 0;
  line-height: 1.5;
}
/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: #284155;
  box-shadow: 0 -2px 15px rgba(40,65,85,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2000;
  padding: 26px 16px 18px 16px;
  gap: 18px;
  transition: transform 0.38s cubic-bezier(.51,.03,.47,1.11), opacity 0.28s;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #284155;
  font-size: 1rem;
}
.cookie-btn-group {
  display: flex;
  gap: 15px;
  margin-top: 3px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #284155;
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.19s, color 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E5B972;
  color: #284155;
}
.cookie-btn.secondary {
  background: #F8F6F2;
  color: #284155;
  border: 1px solid #E5B972;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #E5B972;
  color: #fff;
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(40,65,85,0.35);
  z-index: 2100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  min-width: 300px;
  min-height: 260px;
  width: 99%;
  max-width: 410px;
  padding: 38px 24px 26px 24px;
  box-shadow: 0 -3px 25px rgba(40,65,85,0.15);
  position: relative;
  animation: cookie-slideup 0.38s cubic-bezier(.51,.03,.47,1.11);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookie-slideup {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: #284155;
  margin-bottom: 6px;
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
}
.cookie-category .toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #E5B972;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-category .toggle:checked {
  background: #284155;
}
.cookie-category .toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s cubic-bezier(.77,0,.18,1), background 0.2s;
}
.cookie-category .toggle:checked:before {
  left: 20px;
  background: #E5B972;
}
.cookie-modal-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 17px;
  background: none;
  border: none;
  color: #284155;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #E5B972;
}
.cookie-modal .cookie-notice {
  font-size: 0.98rem;
  opacity: 0.75;
}

/* RESPONSIVE STYLES */
@media (max-width: 1100px) {
  .container {
    max-width: 980px;
  }
  .team-list,
  .feature-grid,
  .service-list,
  .pricing-table,
  .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 950px) {
  .container {
    max-width: 790px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .hero { padding: 65px 0 50px 0; }
  .main-nav, header .btn-primary {
    display: none !important;
  }
  header .container {
    height: 66px;
    padding: 0 7px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    padding-top: 0;
    min-width: 220px;
    width: 83vw;
    max-width: 380px;
    right: 0; left: auto;
  }
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .feature-grid, .team-list, .service-list, .pricing-table, .testimonial-list, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .cta-section {
    padding: 32px 10px 32px 10px;
    margin-bottom: 32px;
    margin-top: 10px;
    text-align: left;
  }
  .testimonial-card, .feature-item, .service-item, .pricing-item {
    min-width: 0;
    width: 100%;
  }
  .section {
    padding: 25px 6px;
    margin-bottom: 34px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .cookie-modal {
    border-radius: 14px 14px 0 0;
    padding: 26px 9px 18px 13px;
    min-width: 0;
    min-height: 175px;
  }
}
@media (max-width: 530px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.05rem; }
  header img { width: 100px; }
  .cookie-modal { max-width: 99vw; }
}

/* MICRO-INTERACTIONS */
input:not([type="checkbox"]):focus, textarea:focus, select:focus {
  border-color: #E5B972;
  outline: 2px solid #E5B972;
  transition: border-color 0.19s;
}

/* SCROLLBAR (modern look) */
::-webkit-scrollbar {
  width: 9px;
  background: #F8F6F2;
}
::-webkit-scrollbar-thumb {
  background: #E5B972;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #284155;
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #E5B972;
  outline-offset: 2px;
}
