/* =============================================================
   Münchner Gabelreise | Professional Corporate Style CSS
   Author: Senior CSS Developer & UI Designer
   Purpose: Complete, responsive, flexbox-only stylesheet with professional_corporate aesthetic
   ===============================================================
*/

/* ========== 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  background: #F8F9FA;
  color: #22304F;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: disc inside;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4A259;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3557;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

/* =================== CONTAINER & LAYOUT =================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========== HEADER NAVIGATION ========== */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(29,53,87,0.06);
  position: relative;
  z-index: 50;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
.logo-link img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1D3557;
  padding: 7px 12px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4A2591a;
  color: #22304F;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #1D3557;
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 12px rgba(29, 53, 87, 0.07);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  text-align: center;
  margin-left: 16px;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F4A259;
  color: #1D3557;
  box-shadow: 0 4px 20px rgba(244, 162, 89, 0.15);
  outline: none;
}
/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1D3557;
  cursor: pointer;
  margin-left: 16px;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #F4A259;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 84vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 24px rgba(29,53,87,0.15);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  z-index: 1000;
  padding: 32px 0 24px 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1D3557;
  align-self: flex-end;
  margin: 0 24px 16px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 32px;
  margin-top: 20px;
}
.mobile-nav a {
  padding: 12px 0;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3557;
  font-weight: 500;
  border-bottom: 1px solid #F4A25920;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4A259;
  background: none;
  outline: none;
}
/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(90deg, #F8F9FA 80%, #F4A2591a 100%);
  border-bottom: 1px solid #E8EAF6;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0 40px 0;
}
.hero .container {
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #1D3557;
}
.hero p {
  max-width: 700px;
  font-size: 1.18rem;
  color: #22304F;
}
.hero .cta-btn {
  margin-top: 16px;
}

/* ========== SECTION SPACING & STRUCTURE ========== */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 0;
}
.features, .testimonials, .services {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(29,53,87,0.035);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========== FLEXBOX BASED STRUCTURE ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 232px;
  min-width: 210px;
  background: #F8F9FA;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(29,53,87,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature img {
  height: 40px;
  margin-bottom: 8px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 24px rgba(29,53,87,0.10);
  transform: translateY(-3px) scale(1.02);
}

.features h2,
.services h2,
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 0;
}

/* ========== SERVICE LIST STYLES ========== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.service-item {
  background: #F8F9FA;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(29,53,87,0.04);
  padding: 26px 20px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 26px rgba(244,162,89,0.11);
  transform: translateY(-2px) scale(1.01);
}
.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  background: #F4A2591a;
  color: #1D3557;
  border-radius: 6px;
  padding: 4px 10px;
  margin-top: 4px;
  margin-bottom: 4px;
  display: inline-block;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #F8F9FA;
  border: none;
  box-shadow: 0 4px 18px rgba(29,53,87,0.04);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(29,53,87,0.04);
  border-radius: 11px;
  padding: 24px 23px 20px 23px;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #22304F;
}
.testimonial-name {
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.star-rating {
  color: #F4A259;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
}

.trust-signals ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 0;
}
.trust-signals li {
  font-size: 0.99rem;
  color: #1D3557cc;
  background: #F4A25911;
  padding: 8px 15px;
  border-radius: 5px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ========== FOOTER ========== */
footer {
  background: #1D3557;
  color: #fff;
  width: 100%;
  margin-top: 70px;
}
footer .container {
  padding: 0 20px 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 34px 0 20px 0;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.87;
  padding: 3px 0;
  transition: color 0.17s, opacity 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F4A259;
  opacity: 1;
}
.footer-contact {
  font-size: 0.97rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(0.6) brightness(5);
  transition: filter 0.18s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: none;
}
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ====== TYPOGRAPHY SPECIFICS ====== */
p, li, .service-item p, .feature p, .testimonial-card p {
  font-size: 1rem;
  color: #22304F;
  font-family: 'Roboto', Arial, sans-serif;
}
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.text-section ul, .highlight-list ul {
  margin-bottom: 0;
}
.highlight-list {
  margin-top: 16px;
  padding-left: 6px;
}
.highlight-list h3 {
  margin-bottom: 6px;
}

/* ========== MISCELLANEOUS SECTIONS ========== */
.location-map, .contact-note {
  margin-top: 14px;
  color: #1D3557;
}
.contact-info p, .location-map p {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact-info img, .location-map img {
  width: 18px;
  margin-right: 8px;
  filter: grayscale(0.2);
}

.event-details {
  margin-top: 18px;
  background: #F8F9FA;
  border-radius: 9px;
  padding: 15px 14px 10px 14px;
  font-size: 1rem;
}

/* ========== FLEX SPACING/COMPONENT MANDATORY CLASSES ========== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(29,53,87,0.02);
  padding: 24px 20px;
  min-width: 220px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== BUTTONS & INTERACTIONS ========== */
button, .cta-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #F4A259;
}

/* ========== TABLES ========== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 18px 0;
}
th, td {
  padding: 12px 9px;
  border: 1px solid #E8EAF6;
  font-size: 1rem;
}
th {
  background: #F8F9FA;
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .feature-grid, .testimonial-list, .service-list, .content-grid, .footer-content-wrapper {
    gap: 18px;
  }
  .footer-menu {
    gap: 4px;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 18px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  /* Header */
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 40px 0 30px 0;
  }
  .hero .container {
    padding: 0 10px;
  }
  .section, .features, .testimonials, .services {
    padding: 30px 4vw;
    margin-bottom: 40px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service-list {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 12px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero {
    min-height: unset;
    padding: 22px 0 20px 0;
  }
  .section, .features, .testimonials, .services {
    padding: 19px 2vw;
    margin-bottom: 32px;
  }
  .feature, .service-item, .testimonial-card, .card {
    padding: 15px 11px;
    min-width: 0;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #22304F;
  color: #fff;
  box-shadow: 0 -2px 12px rgba(25,33,48,0.11);
  z-index: 9000;
  display: flex;
  padding: 24px 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 1;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), opacity 0.32s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  flex: 2 1 260px;
}
.cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-weight: 600;
}
.cookie-btn.accept {
  background: #1D3557;
  color: #fff;
  border: 2px solid #F4A259;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F4A259;
  color: #1D3557;
  outline: none;
}
.cookie-btn.reject {
  background: #F8F9FA;
  color: #1D3557;
  border: 2px solid #b1b4ba;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E8EAF6;
  color: #1D3557;
  outline: none;
}
.cookie-btn.settings {
  background: none;
  color: #fff;
  border: 2px solid #F4A259;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #22304F;
  color: #F4A259;
  outline: none;
}

/* ========== COOKIE PREFERENCES MODAL ========== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(29,53,87,0.47);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none !important;
}
.cookie-modal {
  background: #fff;
  color: #1D3557;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(29,53,87,0.15);
  padding: 34px 32px 28px 32px;
  min-width: 310px;
  width: 94vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  margin-bottom: 5px;
}
.cookie-modal .category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22304F;
}
.cookie-modal .category input[type="checkbox"]:not(:disabled) {
  accent-color: #F4A259;
  width: 20px;
  height: 20px;
}
.cookie-modal .category input[type="checkbox"]:disabled {
  accent-color: #ccc;
  opacity: 0.7;
}
.cookie-modal .category small {
  color: #1D355799;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  flex: 1 1 100px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #22304F;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F4A259;
}

/* =============================================
    MICRO-INTERACTIONS & TRANSITIONS
==============================================*/
.cta-btn, .feature, .service-item, .testimonial-card, .card,
button, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cta-btn:focus {
  box-shadow: 0 0 0 3px #F4A25944;
}
.cta-btn:active {
  background: #F4A259;
  color: #1D3557;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 22px rgba(29,53,87,0.05);
  transform: translateY(-2px) scale(1.01);
}

/* ====== NEWSLETTER SPECIFIC ====== */
.newsletter input[type="email"] {
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #B1B4BA;
  font-size: 1rem;
}
.newsletter button {
  background: #F4A259;
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  padding: 8px 18px;
  margin-top: 7px;
  cursor: pointer;
}
.newsletter button:hover, .newsletter button:focus {
  background: #1D3557;
  color: #fff;
  box-shadow: 0 2px 10px rgba(29,53,87,0.06);
}

/* ====== FOCUS STATES ====== */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #F4A259;
  outline-offset: 2px;
}

/* ====== ACCESSIBILITY ====== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ====== HELPER UTILITIES ====== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

/* Hide main nav and show mobile toggle appropriately */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Ensure no elements overlap: SCOPED GAPS */
.section > *, .features > *, .services > *, .testimonials > *, .card-container > *, .service-list > *, .feature-grid > *, .testimonial-list > * {
  margin-bottom: 0 !important;
}
.section > * + *, .features > * + *, .services > * + *, .testimonials > * + * {
  margin-top: 20px;
}

footer p,footer h1,footer h2,footer h3,footer h4,footer span {
  color: white;
}

/* END OF STYLES */