/* ===================================
   PasseCiclo Werkstatt - style.css
   "tech_futuristic" design, flex-only layouts, responsive 
   Brand: #1E293B (primary), #F4B942 (secondary), #E7E9EB (accent)
   Typography: Montserrat (display), Roboto (body)
   =================================== */

/*==== 1. 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #E7E9EB;
  background: #181E29;
  min-height: 100vh;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  background: transparent;
  transition: color 0.15s;
}
button, input, select, textarea {
  font: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*==== 2. VARIABLES / ROOT ====*/
:root {
  --primary: #1E293B;
  --secondary: #F4B942;
  --accent: #E7E9EB;
  --dark-bg: #181E29;
  --card: #212D40;
  --card-accent: #23293C;
  --neon: #F4B942;
  --neon-glow: 0 0 8px #ffe097, 0 0 16px #F4B94233;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 4px 24px 0 #00082311, 0 1.5px 12px #1E293B33;
  --shadow-hover: 0 6px 28px 0 #F4B94238, 0 3px 16px #1E293B44;
  --transition: 0.24s cubic-bezier(.4,.8,.32,1);
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
  --focus: #F4B942;
  --testi-bg: #F7F7FA;
  --testi-text: #252b36;
}

/*==== 3. TYPOGRAPHY ====*/
h1, h2, h3, h4, .logo {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: var(--space-s);
}
h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-s);
}
h3 {
  font-size: 1.18rem;
  margin-bottom: var(--space-xs);
}
h4 {
  font-size: 1.08rem;
}
p, ul, li, td, th, label {
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 1rem;
}
p {
  margin-bottom: var(--space-s);
}
strong { color: var(--secondary); font-weight: 700; }

/*==== 4. CONTAINER, LAYOUT, SPACING (FLEXBOX ONLY) ====*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: var(--space-s);
  padding-right: var(--space-s);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: var(--space-m);
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-m) var(--space-l);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.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;
  padding: 20px;
  background: var(--testi-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 24px #1E293B16;
  color: var(--testi-text);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: var(--card-accent);
  border-radius: var(--radius);
  padding: var(--space-m);
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-xs);
  filter: drop-shadow(0 1px 5px #F4B94255);
}
.feature:hover {
  box-shadow: 0 2px 32px #F4B94233,0 6px 34px #1E293B33;
  transform: translateY(-4px) scale(1.02);
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: var(--space-m);
}
.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-m);
  flex: 1 1 260px;
  margin-bottom: 20px;
  min-width: 220px;
}

/*==== 5. HEADER / NAV ====*/
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 2px 24px #00081625;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-l);
  padding-top: var(--space-s);
  padding-bottom: var(--space-s);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: filter var(--transition);
}
nav {
  display: flex;
  gap: var(--space-s);
  align-items: center;
}
nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.06rem;
  border-radius: 8px;
  padding: 6px 16px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
}
nav a:hover,
nav a:focus {
  color: var(--secondary);
  background: #232D46;
}
nav .cta {
  color: #1E293B;
  background: var(--secondary);
  font-weight: 700;
  box-shadow: 0 0 14px #F4B94277;
  border-radius: var(--radius);
  padding: 8px 22px;
  letter-spacing: 0.04em;
  transition: box-shadow var(--transition), color var(--transition), background var(--transition);
}
nav .cta:hover,
nav .cta:focus {
  color: #fff;
  background: #fad15c;
  box-shadow: 0 0 32px #F4B942cc;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
  transition: color 0.16s;
  margin-left: 6px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--focus);
}

/*==== 6. MOBILE MENU (OFFCANVAS NAVIGATION) ====*/
.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 0 0 0 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(122deg, #191f32 88%, #222e46 100%);
  box-shadow: 0 14px 64px #000;
  transform: translateX(100%);
  will-change: transform;
  transition: transform 0.32s cubic-bezier(.72,.33,.22,1);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 16px 28px 16px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: var(--secondary);
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-close:focus {
  outline: 2px solid var(--focus);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.16rem;
  padding: 14px 0 14px 0;
  width: 100%;
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
  text-align: left;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
  background: #222e46;
  padding-left: 12px;
}
.mobile-nav .cta {
  color: #1E293B;
  background: var(--secondary);
  font-weight: 700;
  box-shadow: 0 0 12px #F4B94277;
  border-radius: var(--radius);
  padding: 12px 24px;
  letter-spacing: 0.04em;
  margin-top: 14px;
}
/*==== 7. HERO / MAIN SECTIONS ====*/
main {
  width: 100%;
  min-height: 54vh;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  display: flex;
  flex-direction: column;
}
section:first-child {
  background: linear-gradient(108deg, #1E293B 80%, #23293C 100%);
  box-shadow: 0 5px 40px #1E293B16;
}
.call-to-action {
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: var(--space-s);
}
.confirmation-page {
  align-items: center;
}
.avg-rating, .average-rating {
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-s);
}
.stars {
  color: #FFD600;
  font-size: 1.29em;
  letter-spacing: 2px;
}

/*==== 8. BUTTONS / CTAs ====*/
.cta {
  display: inline-block;
  padding: 11px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--radius);
  background: #23293C;
  color: var(--secondary);
  box-shadow: 0 2px 14px #1E293B2e;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
  margin-top: 12px;
}
.cta.primary {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 0 18px #f8d67744;
  font-weight: 700;
}
.cta.primary:hover, .cta.primary:focus {
  background: #fad15c;
  color: #192032;
  box-shadow: 0 0 32px #F4B942cc,0 3px 18px #F4B94288;
  transform: scale(1.037);
}
.cta:hover, .cta:focus {
  color: #fff;
  background: #232D40;
  box-shadow: 0 0 24px #23293c5e;
  transform: scale(1.019);
}

/*==== 9. TABLES ====*/
table {
  width: 100%;
  background: var(--card);
  color: var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: var(--space-s);
}
thead {
  background: #1E293B;
  color: var(--secondary);
}
th, td {
  text-align: left;
  padding: 14px 20px;
  font-size: 1rem;
}
tr {
  border-bottom: 1px solid #23293C;
}
tr:last-child {
  border-bottom: none;
}

/*==== 10. LISTS, ICONS ====*/
ul.contact-short, ul.contact-details, .mini-contact ul, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  flex-direction: column;
}
ul.contact-short li, ul.contact-details li, .mini-contact ul li, .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1rem;
  min-height: 26px;
}
.contact-short, .contact-details {
  margin-bottom: var(--space-s);
}

/*==== 11. TESTIMONIALS ====*/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: var(--space-m);
}
.testimonial-card {
  background: var(--testi-bg);
  color: var(--testi-text);
  box-shadow: 0 2px 42px #1E293B22;
  border-left: 5px solid var(--secondary);
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 20px;
  padding: 26px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 17px;
  max-width: 410px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  align-self: flex-end;
}
.testimonial-card:hover {
  box-shadow: 0 3px 56px #F4B94228,0 2px 36px #1E293B3a;
  transform: scale(1.025) translateY(-2px);
}
/* Ensure strong readability for testimonial text */
.testimonial-card p, .testimonial-card span {
  color: #222f45;
}

/*==== 12. INVITE REVIEW SECTION ====*/
.invite-review {
  background: #212D40;
  padding: var(--space-l);
  border-radius: var(--radius);
  margin-top: var(--space-m);
  box-shadow: 0 1.5px 24px #1e293b22;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
}
.invite-review h2 {
  color: var(--secondary);
}

/*==== 13. MAP PLACEHOLDER (Kontakt) ====*/
.map-placeholder {
  background: var(--card);
  color: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-m) var(--space-m);
  margin-top: var(--space-s);
}

/*==== 14. FOOTER ====*/
footer {
  background: #161A23;
  padding: 36px 0 0 0;
  margin-top: var(--space-l);
}
.footer-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-l);
  padding: 0 var(--space-s);
}
.footer-content img {
  height: 40px;
  filter: grayscale(0.15) contrast(1.2);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  font-family: var(--font-display);
  padding: 2px 0;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--secondary); }
.mini-contact ul {
  gap: 10px;
}
.mini-contact ul li {
  color: #bbb;
  font-size: 0.95rem;
}
footer {
  font-size: 0.98rem;
  color: #8d97a3;
  background: #181E29;
  border-top: 3px solid #212D40;
  margin-top: var(--space-xl);
}
footer .container {
  padding-bottom: 16px;
}

/*==== 15. COOKIE CONSENT BANNER ====*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  width: 100vw;
  background: #23293C;
  box-shadow: 0 -2px 32px #1E293B66;
  color: var(--accent);
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 30px 18px 30px;
  transition: transform 0.26s cubic-bezier(.59,1.3,.49,1.01);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner__text {
  flex: 1 1 0%;
  font-size: 1rem;
}
.cookie-banner .cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 20px;
  margin-left: 2px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), outline var(--transition);
  box-shadow: 0 1px 8px #1E293B22;
}
.cookie-banner .accept-all {
  background: var(--secondary);
  color: #181E29;
  font-weight: 700;
}
.cookie-banner .reject-all {
  background: #23293C;
  color: var(--secondary);
  border: 1.7px solid var(--secondary);
}
.cookie-banner .cookie-settings {
  background: none;
  color: var(--accent);
  border: 1.2px solid #848484;
  font-weight: 400;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #F4B942dd;
  color: #181E29;
  outline: 2px solid #F4B942;
}

/*==== 16. COOKIE MODAL ====*/
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(18,24,34,0.89);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.23s cubic-bezier(.82,.98,.62,.83);
}
.cookie-modal.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal .cookie-modal__window {
  background: #212D40;
  padding: 38px 32px 30px 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 64px #F4B94255, 0 2px 24px #181e2933;
  min-width: 330px;
  max-width: 95vw;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal .cookie-modal__title {
  font-size: 1.28rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--secondary);
}
.cookie-modal .cookie-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 1.7rem;
  border: none;
  background: none;
  color: var(--secondary);
  cursor: pointer;
}
.cookie-modal .cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px 0 22px 0;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cookie-modal .category-label {
  font-family: var(--font-display);
  font-size: 1.07rem;
}
.cookie-modal .category-toggle,input[type="checkbox"],input[type="radio"] {
  width: 40px; height: 22px; accent-color: var(--secondary);
}
.cookie-modal .cookie-modal__actions {
  display: flex;
  gap: 15px;
  margin-top: 12px;
}
.cookie-modal .save-prefs {
  background: var(--secondary);
  color: #181E29;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
}
.cookie-modal .save-prefs:hover {
  background: #fad15c;
}

/*==== 17. RESPONSIVE DESIGN (MOBILE FIRST) ====*/
@media (max-width: 1100px) {
  .footer-content, .container {
    max-width: 98vw;
    gap: var(--space-m);
  }
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-m);
    text-align: left;
  }
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: var(--space-s);
    padding: var(--space-xs) var(--space-xs);
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section {
    padding: 32px 7px 32px 7px;
  }
  .content-wrapper, .content-grid {
    gap: var(--space-s);
  }
  .features-grid,
  .feature-list, .card-container, .faq-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card {
    padding: var(--space-s);
  }
  .footer-content {
    flex-direction: column;
    gap: var(--space-m);
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px 10px 8px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-modal .cookie-modal__window {
    padding: 28px 8vw 24px 8vw;
    min-width: 163px;
  }
}
@media (max-width: 440px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 1rem; }
  .card, .feature, .faq-item, .invite-review,
  .testimonial-card, .map-placeholder { padding: 12px 7px; }
  .cookie-modal .cookie-modal__window { padding: 19px 2vw; }
}

/*==== 18. MICRO-INTERACTIONS & TRANSITIONS ====*/
.card, .feature, .testimonial-card, .faq-item {
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .faq-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.013);
}
.invite-review:hover {
  box-shadow: 0 4px 44px #F4B94245;
}
.feature:hover, .testimonial-card:hover {
  filter: brightness(1.025);
}

/*==== 19. UTILITY ====*/
.d-none { display: none !important; }
.text-section { margin-bottom: var(--space-s); }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/*==== 20. ACCESSIBILITY ====*/
:focus-visible { outline: 2px solid #F4B942; outline-offset: 2px; }

/*==== 21. PRINT =====*/
@media print {
  header, nav, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  section, main, body {
    background: #fff !important;
    color: #000 !important;
  }
}
/* ==== END PasseCiclo CSS ==== */
