/* Fellzauber Düsseldorf – Creative Artistic CSS
------------------------------------------------
 CSS RESET & BASE STYLES (mobile-first)
------------------------------------------------*/

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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B3A42;
  background: #F1E4C6;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}
/* Font faces for Montserrat/Roboto, using local/google as fallback */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* -----------------------------
    Brand Color Variables
------------------------------*/
:root {
  --primary: #2B3A42;
  --secondary: #F1E4C6;
  --accent: #FFB400;
  --white: #fff;
  --gray-100: #F6F5F0;
  --gray-300: #DEE2E6;
  --black: #222;
  --shadow: 0 8px 32px 0 rgba(34,34,38,0.11);
  --radius: 20px;
}

/* -----------------------------
    Typography Hierarchy
------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(255,180,0,0.07);
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2B3A42;
  margin-bottom: 12px;
}
ul, ol {
  margin-left: 16px;
}
ol, ul {
  list-style-type: disc;
}
li {
  margin-bottom: 8px;
}
a {
  color: var(--primary);
  text-decoration: underline;
  transition: all .2s cubic-bezier(.4,1,.65,1);
}
a:hover, a:focus {
  color: var(--accent);
  text-decoration-thickness: 3px;
  outline: none;
}


/* -----------------------------
        Layout Containers
------------------------------*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-section {
  max-width: 650px;
  margin: 0 auto;
}

/* -----------------------------
        Section Spacing
------------------------------*/
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--gray-100);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}

/* -----------------------------
      Artistic Visual Accents
------------------------------*/
section::before, section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.20;
  z-index: 0;
}
section::before {
  width: 120px;
  height: 120px;
  left: -40px;
  top: -30px;
  background: var(--accent);
  filter: blur(8px);
}
section::after {
  width: 75px;
  height: 75px;
  right: -25px;
  bottom: -20px;
  background: var(--primary);
  filter: blur(5px);
}

/* Remove artifacts from last sections */
section:last-child::after {
  display: none;
}

/* -----------------------------
        Flexbox Patterns
------------------------------*/
.features-grid, .features, .card-container, .content-grid, .text-image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 0;
  margin-top: 16px;
}
.features-grid {
  gap: 32px 24px;
  width: 100%;
}
.card-container {
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 22px 28px;
  flex: 1 1 280px;
  min-width: 230px;
  z-index: 1;
  transition: box-shadow .22s;
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(34,34,38,0.17);
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  margin-bottom: 20px;
  min-width: 240px;
  width: 100%;
  max-width: 560px;
  position: relative;
  z-index: 1;
  transition: box-shadow .2s;
}
.testimonial-card p {
  color: var(--black);
  font-size: 1rem;
  line-height:1.6;
}
.testimonial-card span {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 16px 20px;
  min-width: 210px;
  max-width: 310px;
  flex: 1 1 210px;
  position: relative;
  transition: box-shadow .2s, transform .18s;
}
.feature:hover {
  box-shadow: 0 8px 40px 0 rgba(255,180,0,0.16);
  transform: translateY(-3px) scale(1.02);
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.feature h3 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 900;
}
.feature p {
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -----------------------------
      Call To Action Button
------------------------------*/
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  border-radius: 38px;
  padding: 14px 32px 13px 32px;
  margin: 18px 0;
  box-shadow: 0 2px 10px 0 rgba(255,180,0,0.16);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background .16s, color .18s, box-shadow .2s, transform .12s;
  outline: none;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 18px 0 rgba(43,58,66,0.20);
  transform: scale(1.03) translateY(-2px);
}

/* -----------------------------
      Header & Navigation
------------------------------*/
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 23px 0 rgba(43,58,66,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
header nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 32px;
  padding: 8px 18px;
  transition: color .2s, background .2s;
  text-decoration: none;
}
header nav a:hover, header nav a.active {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 0.6rem;
}

/* -----------------------------
    Footer
------------------------------*/
footer {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 36px 0 24px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
  box-shadow: 0 -4px 16px 0 rgba(255,180,0,0.13);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  flex-wrap: wrap;
  padding: 0 18px 0 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .18s;
  text-decoration: underline;
  padding: 1px 3px;
  border-radius: 8px;
}
footer nav a:hover {
  color: var(--white);
  background: var(--accent);
  text-decoration: none;
}
footer .contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .contact-info li {
  margin-bottom: 4px;
  font-size: 0.99rem;
}
footer img {
  height: 36px;
  width: auto;
  margin-top: 4px;
}
footer .copyright {
  width: 100%;
  margin-top: 12px;
  font-size: 0.97rem;
  color: #F1E4C6;
  opacity: 0.85;
  text-align: right;
}

/* -----------------------------
    Table Styling
------------------------------*/
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
table th, table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--gray-300);
  font-size: 1rem;
  text-align: left;
}
table th {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
}
table tr:last-child td {
  border-bottom: none;
}

/* -----------------------------
    Images, Icons
------------------------------*/
img {
  max-width: 100%;
  display: block;
  border-radius: 7px;
}
.text-section img, .feature img {
  border-radius: 50%;
  background: var(--gray-300);
  padding: 6px;
  box-shadow: 0 1px 8px rgba(255,180,0,0.04);
}
.icon {
  width: 40px;
  height: 40px;
}

ul > li > img {
  width: 21px;
  height: 21px;
  margin-right: 7px;
  vertical-align: middle;
}


/* -----------------------------
    Artistic Details
------------------------------*/
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.content-wrapper > *, .card, .feature, .testimonial-card {
  animation: fadeInUp 1.1s cubic-bezier(.4,1,.65,1);
}

/* Artistic divider */
.content-wrapper > h2 {
  position: relative;
  margin-bottom: 28px;
}
.content-wrapper > h2::after {
  content: '';
  display: block;
  width: 62px;
  height: 4px;
  border-radius: 7px;
  background: var(--accent);
  margin-top: 7px;
  opacity: 0.74;
}


/* -----------------------------
   Mobile Menu (Hamburger)
------------------------------*/
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 48px;
  width: 44px;
  height: 44px;
  font-size: 2.3rem;
  position: absolute;
  right: 20px;
  top: 22px;
  cursor: pointer;
  z-index: 120;
  box-shadow: 0 2px 8px 0 rgba(255,180,0,0.18);
  transition: background .16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
}
header .mobile-menu-toggle {
  display: none;
}
/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary);
  box-shadow: 0 8px 32px 0 rgba(43,58,66,0.16);
  z-index: 1800;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform .37s cubic-bezier(.65,0,.35,1);
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 48px;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 22px 24px 0 0;
  cursor: pointer;
  z-index: 1820;
  box-shadow: 0 2px 8px 0 rgba(255,180,0,0.18);
  transition: background .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 54px;
  padding: 16px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: var(--primary);
  border-radius: 32px;
  padding: 12px 22px;
  margin-bottom: 6px;
  background: transparent;
  transition: background .15s, color .15s;
  text-decoration: none;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
}

/* Hide main nav on mobile, show toggle */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 980px) {
  .mobile-menu {
    display: flex;
  }
}

/* -----------------------------
   Cookie Consent Banner & Modal
------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -2px 18px 0 rgba(43,58,66,0.13);
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 3000;
  animation: fadeInUp .5s cubic-bezier(.4,1,.65,1);
}
.cookie-banner__text {
  font-size: 1rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.cookie-btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 26px;
  margin: 0 3px;
  cursor: pointer;
  transition: background .19s, color .17s;
  outline: none;
  min-width: 120px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn--settings {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: var(--accent);
  color: var(--primary);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  background: var(--white);
  color: var(--primary);
  border-radius: 24px;
  padding: 36px 32px 24px 32px;
  min-width: 290px;
  max-width: 480px;
  box-shadow: 0 6px 38px 0 rgba(43,58,66,0.21);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeInUp 0.5s cubic-bezier(.4,1,.65,1);
}
.cookie-modal__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  font-weight: 900;
  color: var(--primary);
}
.cookie-modal__close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 40px;
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal__close:hover {
  background: var(--primary);
  color: var(--accent);
}
.cookie-modal__body {
  width: 100%;
  margin-bottom: 18px;
}
.cookie-toggle-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0;
}
.cookie-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-toggle label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: var(--gray-300);
  border-radius: 30px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: .2s;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: var(--accent);
  transition: .2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}
.toggle-switch input:checked + .toggle-slider:before {
  background: var(--primary);
  transform: translateX(16px);
}
/* Essential Cookie - always enabled (disabled toggle) */
.toggle-switch input:disabled + .toggle-slider {
  background: #dde0df;
  opacity: 0.56;
}

/* Cookie Modal Buttons */
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  justify-content: flex-end;
}

/* Banner and modal fade */
@keyframes fadeBanner {
  0% {opacity:0; transform:translateY(20px);}
  100% {opacity:1; transform:translateY(0);}
}
.cookie-banner, .cookie-modal {
  animation: fadeBanner .7s cubic-bezier(.4,1,.65,1);
}

/* -----------------------------
     Responsive Queries
------------------------------*/
@media (max-width: 820px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  .card, .feature, .testimonial-card {
    min-width: 140px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.72rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section, section {
    padding: 20px 7px;
    border-radius: 12px;
    margin-bottom: 36px;
  }
  .features-grid, .features, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .feature {
    max-width: 100%;
    min-width: 120px;
    padding: 14px 8px 12px 8px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 12px 8px;
    font-size: 0.98rem;
  }
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 7px;
  }
  footer nav {
    gap: 8px;
    flex-wrap: wrap;
  }
  .cookie-modal {
    width: 96vw;
    padding: 22px 6vw 16px 6vw;
    max-width: 96vw;
  }
}
@media (max-width: 480px) {
  .card, .feature, .testimonial-card {
    padding: 12px 4px 10px 8px;
    font-size: 0.93rem;
  }
  .cookie-modal {
    padding: 13px 2vw 8px 2vw;
  }
}


/* -----------------------------
      Form Fields/Inputs (for any future forms)
------------------------------*/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  margin-bottom: 16px;
  transition: box-shadow .14s, border-color .16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 1px 9px 0 rgba(255,180,0,0.12);
}
button {
  cursor: pointer;
}
::placeholder {
  color: #8f8789;
  opacity: 1;
}

/* -----------------------------
    Utility Classes
------------------------------*/
.text-center {text-align:center;}
.flex {display: flex;}
.flex-col {flex-direction: column;}
.flex-row {flex-direction: row;}
.justify-center {justify-content: center;}
.align-center {align-items: center;}
.gap-8 {gap: 8px;}
.gap-16 {gap: 16px;}
.gap-24 {gap: 24px;}
.gap-32 {gap: 32px;}
.rounded {border-radius: var(--radius);}
.shadow {box-shadow: var(--shadow);}
.mt-24 {margin-top:24px;}
.mb-24 {margin-bottom:24px;}

/* -----------------------------
    Extra Artistic Details
------------------------------*/
.feature::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 12px;
  right: 15px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.10;
  filter: blur(2px);
}

.card::after {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  top: 15px;
  left: 20px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.09;
  filter: blur(2px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  left: 16px;
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: var(--accent);
  opacity: .15;
  z-index: 0;
  pointer-events: none;
}
.testimonial-card span {
  z-index: 1;
}

/* Ensure spacing between all major flexbox elements */
.card + .card,
.feature + .feature,
.testimonial-card + .testimonial-card,
.section + .section,
.content-wrapper > * + *,
.text-section > * + * {
  margin-top: 24px;
}

/* Responsive padding tweaks */
@media (max-width: 480px) {
  .content-wrapper, .text-section {
    padding: 0 2vw;
  }
}

/* -----------------------------
    Accessibility Focus Ring
------------------------------*/
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, input:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  z-index: 2;
}

/* -----------------------------
      Hide Elements Utility
------------------------------*/
.d-none { display: none !important; }

/* END OF CSS */
