/* 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F4F6FB;
  color: #262626;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
a { color: #C0392B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #192A56; text-decoration: underline; }
ul, ol { margin-left: 1.2em; }
img { max-width: 100%; display: block; height: auto; border-radius: 10px; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Oswald:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #192A56;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1rem; }
p, li, div, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #262626;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: #C0392B;
}

/* HELPERS & UTILITIES */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section { max-width: 800px; }

/* MAIN SECTIONS, CARDS, FLEX PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(192,57,43,0.10);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(25,42,86,0.13);
  margin-bottom: 20px;
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(192,57,43,0.18);
  transform: translateY(-2px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap:20px; }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #FFF9F4;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(25,42,86,0.08);
  border-left: 4px solid #C0392B;
}
.testimonial-card p {
  color: #192A56;
  font-size: 1.1rem;
  line-height: 1.5;
}
.testimonial-card span {
  color: #A04A36;
  font-size: 0.98rem;
  font-style: italic;
}
.testimonial-card div { color: #F2C012; font-size: 1.15rem; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FDF6F0;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(192,57,43,0.04);
  padding: 20px;
  margin-bottom: 16px;
}

/* SERVICE LISTS (used often for Packages, etc.) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list > div {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 360px;
  background: #FFFAF8;
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 rgba(192,57,43,0.09);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.service-list > div:hover {
  box-shadow: 0 6px 16px 0 rgba(192,57,43,0.17);
  transform: translateY(-2px) scale(1.015);
}
.service-list h3 {
  font-size: 1.18rem;
  color: #C0392B;
}
.service-list p { font-size: 1rem; color: #3d3c3c; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list h3 {
  font-size: 1.05rem;
  color: #C0392B;
  margin-bottom: 6px;
  cursor: pointer;
  transition: color 0.18s;
}
.faq-list h3:hover {
  color: #192A56;
}
.faq-list div {
  color: #262626;
  font-size: 0.97rem;
  background: #F9F2EE;
  border-radius: 10px;
  padding: 10px 16px;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.11rem;
  padding: 13px 32px;
  border: none;
  border-radius: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.16s, transform 0.13s;
  text-align: center;
  box-shadow: 0 2px 7px 0 rgba(192,57,43,0.11);
}
.btn-primary {
  background: #C0392B;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #A93226;
  color: #fff;
  transform: translateY(-1px) scale(1.025);
  box-shadow: 0 4px 16px 0 rgba(192,57,43,0.14);
}
.btn-secondary {
  background: #fff;
  color: #C0392B;
  border: 2px solid #C0392B;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFF0EC;
  color: #192A56;
  border-color: #192A56;
  transform: translateY(-1px) scale(1.025);
}

/* HEADER/NAVBAR */
header {
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(25,42,86,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  gap: 14px;
}
header img { height: 44px; border-radius: 0; }
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  color: #192A56;
  font-weight: 500;
  border-radius: 16px;
  padding: 7px 14px;
  transition: background 0.12s, color 0.11s;
}
nav a:hover, nav a:focus {
  background: #FFF6F6;
  color: #C0392B;
}
nav .btn-primary {
  margin-left: 16px;
  font-size: 1rem;
  padding: 7px 22px;
}
.mobile-menu-toggle {
  background: #C0392B;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 14px;
  padding: 2px 15px 0 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  min-width: 48px; min-height: 48px;
  transition: background 0.16s, box-shadow 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #192A56;
}

@media (max-width: 991px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,42,86,0.92);
  z-index: 2000;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.51,.02,.31,1.06), opacity 0.26s;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 28px;
  top: 22px;
  background: #fff;
  color: #C0392B;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px; height: 44px;
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 9px 0 rgba(192,57,43,0.11);
  cursor: pointer;
  z-index: 2021;
  transition: background 0.11s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #C0392B;
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 110px; /* below close-button */
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.5rem;
  padding: 13px 0;
  color: #fff;
  text-align: center;
  border-radius: 12px;
  width: 80vw;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C0392B;
  color: #fff9f9;
}

/* SECTIONS & FLEXBOXS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
footer {
  background: #FFF9F4;
  border-top: 3px solid #C0392B;
  padding: 44px 0 22px 0;
  font-size: 0.98rem;
}
footer .container { width: 100%; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
footer .content-wrapper > div {
  min-width: 200px;
}
footer .footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}
footer .footer-social span {
  color: #A04A36;
  margin-right: 6px;
  font-size: 1rem;
}
footer img {
  border-radius: 0;
  height: 38px;
  background: none;
  box-shadow: none;
}
footer ul { list-style: none; margin: 0 0 0 0; }
footer ul li { margin-bottom: 10px; }
footer a {
  color: #C0392B;
  font-weight: 500;
  transition: color 0.12s;
}
footer a:hover, footer a:focus {
  color: #192A56;
  text-decoration: underline;
}

/* COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #FFF5E7;
  color: #192A56;
  border-top: 3px solid #C0392B;
  box-shadow: 0 -2px 32px 0 rgba(192,57,43,0.08);
  padding: 22px 20px 18px 20px;
  z-index: 5000;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: cookieFadeIn 0.8s cubic-bezier(.5,1.2,.44,1) 0.1s 1 both;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text { flex: 1 1 250px; }
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: 22px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, box-shadow 0.14s;
}
.cookie-btn.accept { background: #C0392B; color: #fff; }
.cookie-btn.accept:hover { background: #A93226; }
.cookie-btn.reject { background: #fff5ee; color: #C0392B; border: 1px solid #C0392B; }
.cookie-btn.reject:hover { background: #FFF0EC; color: #192A56; }
.cookie-btn.settings { background: #fff; color: #192A56; border: 1px solid #C39C2B; }
.cookie-btn.settings:hover { background: #F9F5F0; color: #C0392B; }

.cookie-modal-overlay {
  position: fixed; z-index: 5999;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(25,42,86,0.35);
  display: none;
  align-items: center; justify-content: center;
  transition: background 0.18s;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 38px 28px 24px 28px;
  box-shadow: 0 7px 32px 0 rgba(192,57,43,0.12);
  max-width: 410px; width: 96vw;
  animation: cookieModalIn 0.44s cubic-bezier(.5,1.2,.44,1) 0s 1 both;
}
@keyframes cookieModalIn {
  from { transform: scale(0.93) translateY(32px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 { margin-bottom: 14px; font-size: 1.35rem; color: #192A56; }
.cookie-modal .cookie-preference {
  display: flex; align-items: center; gap: 10px; margin-bottom: 13px;
}
.cookie-modal .cookie-preference label {
  flex: 1 1 auto;
  color: #192A56;
  font-size: 1rem;
}
.cookie-modal .cookie-switch {
  width: 38px; height: 22px; position: relative;
  display: inline-block;
}
.cookie-modal .cookie-switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F9E5E1;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: #C0392B;
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

.cookie-modal .cookie-preference.essential label {
  color: #CCC;
}
.cookie-modal .cookie-preference.essential .slider {
  background: #EBEBEB;
}
.cookie-modal .cookie-switch input[disabled] + .slider {
  opacity: 0.4;
  pointer-events: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}
@media (max-width: 991px) {
  header .container { flex-direction: row; justify-content: space-between; }
  .footer .content-wrapper { flex-direction: column; gap: 20px; }
}
@media (max-width: 850px) {
  footer .content-wrapper { flex-direction: column; gap: 20px; }
  .service-list, .card-container, .content-grid { flex-direction: column; gap: 22px; }
}
@media (max-width: 768px) {
  main, .section, section, .content-wrapper, .card-container, .service-list, .card-content {
    padding-left: 0; padding-right: 0;
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper { gap: 17px; }
  .service-list > div { max-width: 100%; }
  section { padding: 24px 7px; margin-bottom: 34px; }
  .footer .content-wrapper { flex-direction: column; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.27rem; }
  .btn-primary, .btn-secondary { padding: 9px 16px; font-size: 0.97rem; }
  .cookie-banner { flex-direction: column; gap: 17px; padding: 15px 7px; }
  .section { padding: 16px 3px; }
}

/* SPACING AND GAP ENFORCEMENT */
.section, .card, .card-container > *, .service-list > *, .testimonial-card, .feature-item, .faq-list > * {
  margin-bottom: 20px;
}
.card-container, .service-list, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.card, .service-list > div, .btn-primary, .btn-secondary, .cookie-btn, .mobile-menu-toggle {
  transition: box-shadow 0.18s, background 0.16s, color 0.14s, transform 0.14s;
}
nav a, .mobile-nav a {
  transition: color 0.14s, background 0.17s;
}

/* VISUAL HIERARCHY */
h1, h2 { margin-top: 8px; } /* Spacing above headings */
p, ul, ol, .service-list, .faq-list { margin-bottom: 14px; }

/* OVERRIDES FOR CONTRAST IN TESTIMONIALS */
.testimonial-card, .testimonial-card * {
  color: #192A56 !important;
}
.testimonial-card div { color: #F2C012 !important; }

/* LISTS INSIDE CARDS AND SECTIONS */
ul li, ol li {
  margin-bottom: 10px;
}

/* SPECIAL: Hide default list styles in some boxes */
footer ul, .service-list ul, .menu ul, .faq-list ul {
  list-style: none; padding-left: 0; margin-left:0;
}

/* MAP ICON IN KONTAKT */
.text-image-section img[alt="Karte Köln"] {
  max-width: 240px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(25,42,86,0.11);
  margin-bottom: 8px;
}

/* ACCESSIBILITY FOCUS STATES */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus {
  outline: 2px solid #C0392B;
  outline-offset: 2px;
}

/* THANK-YOU PAGE: SPECIAL STYLES */
.thankyou-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  background: #FFF9F4;
  padding: 40px 20px 32px 20px;
  box-shadow: 0 5px 20px 0 rgba(25,42,86,0.09);
}

/* END OF FILE */
