/* Fellzauber Nürnberg — Gradient Modern CSS Theme */
/* CSS RESET & BASELINE */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #274261;
  background: linear-gradient(135deg, #EFEEE9 0%, #FFFFFF 100%);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #31506D;
  text-decoration: none;
  transition: color 0.25s;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid #DBB05A;
  outline-offset: 2px;
}
/*=====================/
  TYPOGRAPHY
======================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #31506D;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.15rem;
}
strong, b {
  color: #31506D;
}
small {
  font-size: 0.96em;
  color: #274261;
  opacity: 0.8;
}
/*=====================/
  LAYOUT CONTAINERS
======================*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/*=====================/
  HEADER & NAVIGATION
======================*/
header {
  background: #ffffffdd;
  box-shadow: 0 2px 16px 0 rgba(49, 80, 109, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header a img {
  height: 48px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 24px;
  transition: background 0.25s, color 0.25s;
}
header nav a:hover,
header nav a.active {
  background: #EFEEE9;
  color: #31506D;
}
header nav .cta-primary {
  margin-left: 10px;
  background: linear-gradient(90deg, #DBB05A 0%, #B1872E 100%);
  color: #fff;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(49,80,109,0.08);
  transition: background 0.3s, color 0.25s, transform 0.18s;
  border: none;
}
header nav .cta-primary:hover {
  background: linear-gradient(90deg, #B1872E 0%, #DBB05A 100%);
  color: #fffceb;
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: linear-gradient(135deg, #DBB05A 30%, #31506D 90%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.22s, color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #DBB05A;
}
/*==============
  MOBILE MENU
==============*/
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(49,80,109,0.98);
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.68,-0.6,.32,1.6), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.4rem;
  margin: 28px 24px 0 0;
  cursor: pointer;
  align-self: flex-start;
  z-index: 10;
  transition: color 0.15s;
}
.mobile-menu-close:focus {
  outline: 2px solid #DBB05A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: none;
  width: 100vw;
  padding: 84px 36px 36px 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.28rem;
  border-radius: 22px;
  padding: 10px 18px;
  transition: background 0.22s, color 0.18s;
  text-align: left;
  line-height: 1.28;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #DBB05A;
  color: #31506D;
}
/* Hide standard nav on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu.open {
    display: none !important;
  }
}
/*=====================/
    HERO SECTIONS
======================*/
.hero {
  background: linear-gradient(100deg, #EFEEE9 64%, #DBB05A 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 54px 0 54px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.90);
  border-radius: 22px;
  box-shadow: 0 2px 24px 0 rgba(49,80,109,0.09);
  padding: 34px 30px 34px 30px;
  min-width: 220px;
  max-width: 100%;
}
.hero .content-wrapper h1 {
  color: #31506D;
  text-shadow: 0 3px 10px rgba(49,80,109,0.04);
}
.hero .content-wrapper p {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #274261;
}
@media (max-width: 900px) {
  .hero {
    padding: 24px 0 24px 0;
  }
  .hero .container {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .content-wrapper {
    padding: 22px 10px 22px 10px;
  }
  .hero .content-wrapper h1 {
    font-size: 2rem;
  }
}
/*=====================/
    CTA BUTTONS
======================*/
.cta-primary, .content-wrapper .cta-primary, .cta .cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #DBB05A 0%, #B1872E 100%);
  padding: 11px 34px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 3px 18px 0 rgba(180,135,46,0.09);
  margin-top: 12px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.18s;
  letter-spacing: 0.01em;
}
.cta-primary:hover {
  background: linear-gradient(90deg, #B1872E 0%, #DBB05A 100%);
  color: #31506D;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 24px 0 rgba(49,80,109,0.13);
}
.cta .cta-primary {
  margin-bottom: 18px;
}
/*=====================/
    FLEXBOX LAYOUTS
======================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 rgba(49,80,109,0.10);
  padding: 22px 20px 22px 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(49,80,109,0.16);
  transform: translateY(-2px) scale(1.01);
  z-index: 2;
}
.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;
    gap: 18px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #FAF9F6;
  color: #274261;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(49,80,109,0.07);
  padding: 20px;
  margin-bottom: 24px;
  max-width: 620px;
  font-size: 1.07rem;
  line-height: 1.6;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(49,80,109,0.16);
}
.testimonials .testimonial-card {
  margin-right: 24px;
}
.testimonials .testimonial-card:last-child {
  margin-right: 0;
}
@media (max-width: 800px) {
  .testimonials .content-wrapper {
    flex-direction: column;
  }
  .testimonial-card {
    margin-right: 0;
    max-width: 100%;
  }
}
.feature-item, .feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(49,80,109,0.06);
  padding: 20px 18px 18px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.18s, background 0.2s;
}
.feature-item:hover, .feature:hover {
  background: #EFEEE9;
  box-shadow: 0 4px 22px 0 rgba(49,80,109,0.15);
}
/* Feature Grid Flexbox for several pages */
.feature-grid, .service-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid > *, .service-grid > *, .team-list > * {
  flex: 1 1 260px;
  min-width: 220px;
}
@media (max-width: 940px) {
  .feature-grid, .service-grid, .team-list {
    flex-direction: column;
    gap: 18px;
  }
}
/*=====================/
    TABLES & LISTS
======================*/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 18px 0;
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(49,80,109,0.06);
}
thead {
  background: #DBB05A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
thead th {
  padding: 12px 10px;
  font-size: 1.08rem;
  border-right: 1px solid #EFEEE9;
}
thead th:last-child { border-right: none; }
tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid #EFEEE9;
  color: #31506D;
}
tbody tr:last-child td {
  border-bottom: none;
}
/* FAQ */
dl { margin: 0 0 10px 0; }
dl dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: #31506D;
  margin-top: 17px;
}
dl dd {
  font-size: 1rem;
  color: #274261;
  margin-bottom: 6px;
  margin-left: 16px;
}
ul, ol {
  margin-bottom: 22px;
  margin-top: 10px;
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.about-section ul,
.about-team ul {
  margin-top: 14px;
  margin-bottom: 10px;
}
/*=====================/
      CONTACT INFO
======================*/
.contact-info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.map-placeholder {
  background: #EFEEE9;
  border-radius: 10px;
  padding: 28px 18px;
  color: #31506D;
  box-shadow: 0 2px 16px 0 rgba(49,80,109,0.045);
  margin-top: 26px;
}
/*=====================/
      SECTION SPACING
======================*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    margin-bottom: 32px;
    padding: 22px 8px;
  }
}
.cta {
  text-align: center;
  padding-bottom: 34px;
  background: linear-gradient(90deg, #F9F8F6 0%, #DBB05A 180%);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(49,80,109,0.06);
  margin-bottom: 40px;
}
.cta p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 1.03rem;
  margin-top: 14px;
  color: #274261;
}
.cta img {
  height: 21px;
  width: 21px;
  margin-right: 6px;
  vertical-align: middle;
}
/* Responsive flex containers */
@media (max-width: 768px) {
  .card-container, .content-grid, .feature-grid, .service-grid, .team-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-wrapper {
    padding: 0;
  }
}
/*=====================/
        FOOTER
======================*/
footer {
  background: linear-gradient(90deg, #31506D 0%, #274261 100%);
  color: #fff;
  padding: 38px 0 26px 0;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
footer nav a {
  color: #EFEEE9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  transition: color 0.18s, background 0.16s;
  padding: 5px 12px;
  border-radius: 18px;
}
footer nav a:hover {
  color: #DBB05A;
  background: #fff;
}
footer strong {
  color: #DBB05A;
}
footer div { opacity: 1; }
@media (max-width: 800px) {
  footer .container { font-size: 0.98rem; }
}
/*=====================/
    THANK YOU PAGE
======================*/
.thank-you {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: #fffbe6;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(49,80,109,0.09);
  padding: 48px 24px 36px 24px;
}
.thank-you h1 {
  color: #B1872E;
  margin-bottom: 18px;
}
.thank-you p, .thank-you ul {
  color: #31506D;
}
@media (max-width: 600px) {
  .thank-you { padding: 24px 4px 18px 4px; }
}
/*=====================/
    COOKIE BANNER
======================*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FFFBEA 0%, #DBB05A 100%);
  box-shadow: 0 -2px 24px 0 rgba(49,80,109,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 350;
  padding: 22px 14px 18px 14px;
  gap: 14px;
  font-size: 1.03rem;
  transition: transform 0.36s, opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 24px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0;
  cursor: pointer;
  transition: background 0.21s, color 0.22s, box-shadow 0.15s, transform 0.16s;
}
.cookie-banner .accept {
  background: linear-gradient(90deg,#DBB05A 0%, #B1872E 100%);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #B1872E;
  color: #fffceb;
}
.cookie-banner .reject {
  background: #F0F0F2;
  color: #31506D;
}
.cookie-banner .reject:hover {
  background: #e5e5e5;
}
.cookie-banner .settings {
  background: none;
  color: #B1872E;
  border: 1px solid #B1872E;
}
.cookie-banner .settings:hover {
  background: #F6EBCE;
}
@media (max-width:700px) {
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .cookie-banner {
    padding: 16px 6px 10px 6px;
    font-size: .97rem;
  }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 94vw;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 48px 0 rgba(49,80,109,0.21);
  z-index: 360;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 16px 18px 16px;
  transition: opacity 0.21s, transform 0.18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -40%) scale(0.97);
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 0px;
  color: #31506D;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F9F8F0;
  border-radius: 9px;
  padding: 10px 10px 10px 14px;
  color: #31506D;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal .category-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #DBB05A;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .category-switch:checked {
  background: #B1872E;
}
.cookie-modal .category-switch:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-modal .category-switch:checked:before {
  left: 20px;
}
/* Essential cookies always enabled */
.cookie-category.essential label {
  color: #B1872E;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-actions button {
  padding: 8px 22px;
  border-radius: 16px;
  border: none;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.18s, color 0.15s;
  cursor: pointer;
}
.cookie-modal .close {
  background: #F0F0F2;
  color: #31506D;
}
.cookie-modal .close:hover {
  background: #DFDFDF;
}
.cookie-modal .accept {
  background: linear-gradient(90deg,#DBB05A 0%, #B1872E 100%);
  color: #fff;
}
.cookie-modal .accept:hover {
  background: #B1872E;
}
/* Overlay for modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 359;
  left: 0; top:0; right:0; bottom:0;
  background: rgba(49,80,109,.30);
  width: 100vw;
  height: 100vh;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
/*=====================/
      UTILS & MICRO INTERACTIONS
======================*/
/* Fading headers (sticky transitions) */
header {
  transition: box-shadow 0.22s, background 0.21s;
}
header.scrolled {
  background: #FFF;
  box-shadow: 0 3px 18px 0 rgba(49,80,109,0.13);
}
/* Focused buttons/links accessibility */
button:focus-visible, input:focus-visible, .cta-primary:focus-visible {
  outline: 2px solid #DBB05A;
  outline-offset: 2px;
}
/* Subtle hover for all cards */
.card, .feature, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, background 0.13s, transform 0.12s;
}
.card:hover, .feature:hover, .feature-item:hover {
  box-shadow: 0 8px 36px 0 rgba(49,80,109,0.12);
  background: #FAF9F2;
  transform: translateY(-1.8px) scale(1.01);
}
@media (hover: none) {
  .card:hover, .feature:hover, .feature-item:hover { background: #fff; }
}
/*=====================/
      RESPONSIVE STYLES
======================*/
@media (max-width: 1040px) {
  header .container { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 640px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.16rem; }
  h3 { font-size: 1.04rem; }
  body { font-size: 0.98rem; }
}
@media (max-width: 680px) {
  .container { padding-left: 4px; padding-right: 4px; }
}
/* Hide fixed banner/modal on print */
@media print {
  .cookie-banner, .cookie-modal, .cookie-modal-overlay {
    display: none !important;
  }
}
/*=====================/
      END OF CSS
======================*/
