/* =====================================================
   Discranoma Motorräder – Monochrome Sophisticated CSS
   Brand: Modern, dynamic, adventurous, elegant
   Palette: Black, white, gray, #213047 (primary), #E94E1B (secondary), #F5F8FA (accent)
   Fonts: Oswald (display), Roboto (body)
   ===================================================== */

/* 1. CSS RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Font imports (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h3 {
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
p, ul, ol {
  margin-top: 0;
  margin-bottom: 1.2em;
}
strong {
  font-weight: 700;
}
.secondary-text {
  color: #666;
  font-size: 1rem;
}
a {
  color: #213047;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E94E1B;
  text-decoration: underline;
}

/* 2. LAYOUT CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(33,48,71,0.06);
}

/* 3. HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  color: #181818;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a.cta {
  background: #181818;
  color: #fff;
  border-radius: 24px;
  padding: 8px 24px;
  margin-left: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(33,48,71,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #E94E1B;
  color: #fff;
  box-shadow: 0 4px 24px rgba(233,78,27,0.12);
}
.main-nav a:hover, .main-nav a:focus {
  color: #E94E1B;
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #181818;
  cursor: pointer;
  margin-left: 24px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #213047;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,48,71,0.98);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 32px;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E94E1B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E94E1B;
}

/* 4. HERO SECTION */
.hero {
  background: linear-gradient(120deg, #fff 60%, #F5F8FA 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #181818;
  font-size: 2.7rem;
  margin-bottom: 0.3em;
}
.hero .subheadline {
  font-size: 1.25rem;
  color: #666;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 1.2em;
}

/* 5. BUTTONS & CTA */
.cta {
  display: inline-block;
  background: #213047;
  color: #fff !important;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 28px;
  padding: 12px 36px;
  box-shadow: 0 2px 16px rgba(33,48,71,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-top: 12px;
}
.cta:hover, .cta:focus {
  background: #E94E1B;
  color: #fff;
  box-shadow: 0 4px 32px rgba(233,78,27,0.13);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/* 6. FLEXBOX LAYOUTS & SPACING */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(33,48,71,0.07);
  padding: 28px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature:hover {
  box-shadow: 0 8px 32px rgba(33,48,71,0.13);
  transform: translateY(-3px) scale(1.02);
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.bike-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(33,48,71,0.07);
  padding: 22px 18px 18px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.bike-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #f5f5f5;
}
.bike-card h3 {
  margin-bottom: 0.5em;
}
.bike-card ul {
  padding-left: 18px;
  margin: 0;
  color: #444;
  font-size: 0.97rem;
}
.availability {
  font-weight: 700;
  color: #213047;
}

/* Gallery slider (simple flex row) */
.gallery-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.gallery-slide {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(33,48,71,0.07);
  padding: 18px 14px 14px 14px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.gallery-slide img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #f5f5f5;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F8FA;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(33,48,71,0.06);
  margin-bottom: 20px;
  color: #181818;
  font-size: 1.08rem;
  font-style: italic;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card span {
  font-style: normal;
  font-weight: 500;
  color: #213047;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(33,48,71,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(33,48,71,0.06);
  padding: 18px 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.faq-item:hover {
  box-shadow: 0 8px 32px rgba(33,48,71,0.13);
  transform: translateY(-2px) scale(1.01);
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(33,48,71,0.07);
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1rem;
}
.pricing-table th {
  background: #F5F8FA;
  color: #181818;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* Step List */
.step-list {
  padding-left: 24px;
  margin-bottom: 1.2em;
  color: #181818;
}
.step-list li {
  margin-bottom: 0.7em;
  font-size: 1.05rem;
}

/* Feature List */
.feature-list {
  padding-left: 24px;
  margin-bottom: 1.2em;
  color: #181818;
}
.feature-list li {
  margin-bottom: 0.7em;
  font-size: 1.05rem;
}

/* Text-Image Section */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.text-image-section > div {
  flex: 1 1 260px;
  min-width: 220px;
}
.text-image-section img {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(33,48,71,0.07);
}

/* Card Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(33,48,71,0.07);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(33,48,71,0.13);
  transform: translateY(-2px) scale(1.01);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* 7. FOOTER */
footer {
  background: #181818;
  color: #fff;
  padding: 48px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E94E1B;
}
.footer-contact {
  font-size: 0.98rem;
  color: #ccc;
  line-height: 1.6;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 0.95rem;
  color: #aaa;
}

/* 8. COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #181818;
  color: #fff;
  padding: 24px 20px 20px 20px;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -2px 24px rgba(33,48,71,0.13);
  animation: cookieBannerIn 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 200px;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  cursor: pointer;
  margin: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cookie-btn.accept {
  background: #E94E1B;
  color: #fff;
  box-shadow: 0 2px 12px rgba(233,78,27,0.13);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #213047;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #181818;
  border: 1px solid #ccc;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E94E1B;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #213047;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,48,71,0.85);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.77,0,.18,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__content {
  background: #fff;
  color: #181818;
  border-radius: 14px;
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 48px rgba(33,48,71,0.18);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalIn 0.5s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalIn {
  from { transform: scale(0.95) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal__header h2 {
  font-size: 1.4rem;
  margin: 0;
  color: #181818;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: #181818;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #E94E1B;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: #213047;
}
.cookie-category input[type="checkbox"] {
  accent-color: #E94E1B;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  color: #181818;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #213047;
}
.cookie-category .always-on {
  font-size: 0.95rem;
  color: #888;
  margin-left: 8px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}

/* 9. RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 720px;
  }
  .feature-grid, .image-grid, .gallery-slider {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 60px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav, .footer-contact, .footer-brand {
    align-items: flex-start;
    margin-bottom: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .feature-grid, .image-grid, .gallery-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 10px 16px 10px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .cookie-modal__content {
    min-width: 90vw;
    padding: 24px 10px 18px 10px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero .subheadline {
    font-size: 1rem;
  }
  .cta {
    font-size: 1rem;
    padding: 10px 18px;
  }
  .feature, .bike-card, .gallery-slide {
    padding: 16px 8px;
    min-width: 0;
    max-width: 100%;
  }
  .testimonial-card {
    padding: 12px 8px;
  }
}

/* 10. MICRO-INTERACTIONS & TRANSITIONS */
.card, .feature, .bike-card, .gallery-slide, .faq-item, .testimonial-card {
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .feature:hover, .bike-card:hover, .gallery-slide:hover, .faq-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(33,48,71,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* 11. UTILITY CLASSES */
.hide {
  display: none !important;
}

/* 12. ACCESSIBILITY */
:focus {
  outline: 2px solid #E94E1B;
  outline-offset: 2px;
}

/* 13. PRINT STYLES */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
}
