/* Fellzauber Mainz • style.css • Playful Dynamic Theme */

/* 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, 
main, 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 { height: 100%; }
body { height: 100%; line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: color .2s; }
img { border: 0; display: inline-block; max-width: 100%; }

/* FONT-FACES */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #E1F0E5;
  color: #2B3A42;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, .hero h1, .about-hero h1, .services-hero h1, .price-hero h1,
.gdpr-policy h1, .privacy-policy h1, .terms-conditions h1, .thank-you h1 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: #2B3A42;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.14;
}
h2 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #F2B138;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  color: #2B3A42;
  margin-bottom: 12px;
  font-weight: 700;
}
p, ul li, ol li, dl, dd {
  font-size: 1rem; line-height: 1.7; color: #2B3A42;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/*********************************
 *  PLAYFUL COLOR SCHEME
 *********************************/
:root {
  --color-primary: #2B3A42;
  --color-secondary: #F2B138;
  --color-accent: #E1F0E5;
  --color-pink: #FF6F96;
  --color-cyan: #27D2B7;
  --color-blue: #31A2EF;
  --color-purple: #B193F6;
  --color-white: #fff;
  --color-shadow-1: #e0e0e054;
  --radius-card: 20px;
  --shadow-card: 0 6px 32px 0 #E1F0E555;
  --shadow-button: 0 4px 16px 0 #B193F666;
}

/*********************************
 *  SPACING & LAYOUT
 *********************************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 0 12px 36px 0 #B193F688;
}
.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;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 560px;
  flex: 1 1 290px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #FF6F9615, 0 2px 8px #B193F688;
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 18px 12px 18px 0;
}

/*********************************
 *  HEADER & NAVIGATION
 *********************************/
header {
  background: linear-gradient(90deg, #F2B138 60%, #27D2B7 100%);
  box-shadow: 0 2px 16px #2B3A4220;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
header img {
  height: 54px;
  margin-right: 22px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #2B3A42;
  padding: 8px 18px;
  border-radius: 18px;
  transition: background .16s, color .16s, box-shadow .16s;
  position: relative;
}
nav a:not(.cta):hover, nav a.active {
  background: #fff9d1;
  color: #F2B138;
  box-shadow: 0 2px 10px #F2B13825;
}
nav a.cta {
  background: linear-gradient(90deg,#FF6F96,#F2B138);
  color: #fff;
  padding: 9px 26px;
  font-size: 1.08rem;
  border-radius: 22px;
  box-shadow: var(--shadow-button);
  transition: filter .18s, box-shadow .18s, transform .14s;
  font-weight: 900;
}
nav a.cta:hover {
  filter: brightness(1.09) drop-shadow(0 1px 4px #FF6F9610);
  transform: scale(1.037) rotate(-2deg);
}

/*****  MOBILE NAVIGATION  *****/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #2B3A42;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1202;
  padding: 8px 16px;
  border-radius: 10px;
  line-height: 1;
  transition: background .2s;
}
.mobile-menu-toggle:hover {
  background: #fff8c6;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.77,.24,.33,1.12);
  box-shadow: 0 8px 64px #2B3A4288;
  z-index: 1201;
  padding-top: 30px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #2B3A42;
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 34px;
  z-index: 1202;
  transition: background .21s;
  padding: 10px 16px;
  border-radius: 12px;
}
.mobile-menu-close:hover {
  background: #E1F0E5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 48px;
  padding-left: 30px;
}
.mobile-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.22rem;
  color: #2B3A42;
  padding: 12px 0 12px 8px;
  border-radius: 18px;
  font-weight: 700;
  transition: background .13s, color .13s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a.cta, .mobile-nav a.active {
  background: #F2B13820;
  color: #F2B138;
}

@media (max-width: 1020px) {
  nav { gap: 10px; }
  header .container { flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
}
@media (max-width: 950px) {
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 650px) {
  header .container img { height: 42px; }
}

/*********************************
 *  HERO SECTIONS
 *********************************/
.hero, .about-hero, .services-hero, .price-hero, .hero-simple, .thank-you, .contact-hero {
  background: linear-gradient(120deg, #F2B138 85%, #31A2EF 100%);
  color: #2B3A42;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 8px 36px #F2B13833;
  padding: 60px 0 36px 0;
  margin-bottom: 60px;
  position: relative;
}
.hero .content-wrapper, .about-hero .content-wrapper, .services-hero .content-wrapper, .hero-simple .content-wrapper, .thank-you .content-wrapper, .contact-hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  background: none;
}
.hero a.cta, .about-hero a.cta, .services-hero a.cta { margin-top: 10px; }

/*********************************
 *  BUTTONS & CTA
 *********************************/
a.cta, button.cta, .cta .cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg,#FF6F96 30%,#F2B138 100%);
  color: #fff;
  padding: 12px 34px;
  min-width: 190px;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  box-shadow: var(--shadow-button);
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  border: none;
  outline: none;
  cursor: pointer;
  transition: box-shadow .18s, transform .16s, filter .18s;
  border: 2px solid transparent;
  text-align: center;
  margin-top: 4px;
  position: relative;
}
a.cta:hover, button.cta:hover, .cta .cta:hover {
  box-shadow: 0 8px 22px #FF6F9633;
  filter: brightness(1.07);
  transform: scale(1.035) rotate(-2deg);
}
a.cta:focus, button.cta:focus, .cta .cta:focus {
  outline: none;
  box-shadow: 0 0 0 4px #B193F677, var(--shadow-button);
}

/*********************************
 *  ICONS, LISTS, AVATAR IMAGES
 *********************************/
ul li, .about-snippet ul li, .services-snippet ul li, .service-categories ul li,
.content-wrapper ul li, .contact-details ul li, .footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-left: 0;
  font-size: 1.05rem;
  color: #2B3A42;
}
ul li img, .service-categories ul li img, .services-snippet ul li img {
  width: 29px; height: 29px;
  margin-right: 10px;
}
.about-snippet ul li, .services-snippet ul li { font-size: 1.09rem; }

/*********************************
 *  TESTIMONIALS & REVIEWS
 *********************************/
.testimonials, .testimonial-list {
  margin-bottom: 60px;
}
.rating-highlight {
  margin-top: 18px;
  font-size: 1.22rem;
  font-weight: 800;
  color: #31A2EF;
  letter-spacing: .02em;
  background: #fff8c6;
  padding: 8px 24px;
  border-radius: 16px;
  display: inline-block;
}

blockquote {
  font-style: italic;
  font-size: 1.09rem;
  color: #2B3A42;
  margin: 0;
  margin-bottom: 10px;
}
.testimonial-card p {
  margin: 0;
  color: #2B3A42;
  font-weight: 700;
  font-size: .99rem;
}

/*********************************
 *  CARDS & VALUES, FEATURES
 *********************************/
.values ul li, .service-benefits ul li {
  background: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  margin-bottom: 14px;
  box-shadow: 0 3px 14px #B193F611;
  font-size: 1.07rem;
  color: #2B3A42;
  display: flex;
  align-items: center;
  gap: 10px;
}

/*********************************
 *  TABLES & FAQ
 *********************************/
dt {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 6px;
  margin-top: 18px;
  color: #F2B138;
}
dd {
  font-size: 1rem;
  color: #2B3A42;
  margin-bottom: 0;
}

/*********************************
 *  FOOTER
 *********************************/
footer {
  background: #2B3A42;
  color: #fff;
  padding: 44px 0 24px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
footer img {
  height: 42px;
  margin-right: 16px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  padding: 3px 0;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  border-radius: 6px;
  transition: background .13s, color .14s;
}
footer nav a:hover {
  background: #F2B138;
  color: #2B3A42;
  padding-left: 7px;
}
.footer-contact p {
  color: #fff;
  font-size: .97rem;
  margin-bottom: 7px;
  gap: 8px;
}
.footer-contact img {
  width: 18px; height: 18px;
}

/*********************************
 *  COOKIE CONSENT BANNER & MODAL
 *********************************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: linear-gradient(90deg, #F2B138 85%, #FF6F96 100%);
  color: #2B3A42;
  padding: 18px 22px 18px 22px;
  z-index: 1300;
  box-shadow: 0 -2px 24px 0 #2B3A4270;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  gap: 18px;
  animation: cookieDrop .86s cubic-bezier(.16,1.2,.31,1.01);
  border-radius: 16px 16px 0 0;
  min-height: 56px;
}
@keyframes cookieDrop {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1;}
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #fff;
  color: #F2B138;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 9px 22px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1px 12px #B193F611;
  transition: background .15s, color .15s, transform .13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #2B3A42;
  color: #fff;
  transform: scale(1.03);
}
.cookie-banner .cookie-banner__settings {
  background: #31A2EF;
  color: #fff;
}
.cookie-banner .cookie-banner__settings:hover,
.cookie-banner .cookie-banner__settings:focus {
  background: #FF6F96;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2B3A4270;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .28s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal__box {
  background: #fff;
  color: #2B3A42;
  border-radius: 24px;
  max-width: 410px;
  box-shadow: 0 8px 48px #F2B13844, 0 1px 18px #B193F633;
  padding: 30px 30px 17px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPop .37s cubic-bezier(.15,1.93,.44,1.01);
}
@keyframes modalPop {
  from {transform: scale(.9) translateY(80px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal__box h2 {
  font-size: 1.3rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
}
.cookie-modal__prefs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 14px 0 0 0;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-family: 'Nunito', Arial, sans-serif;
}
.cookie-modal__category input[type="checkbox"] {
  accent-color: #F2B138;
  transform: scale(1.16);
}
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal__close {
  background: none;
  color: #2B3A42;
  font-size: 1.3rem;
  border: none;
  position: absolute;
  top: 12px; right: 24px;
  cursor: pointer;
}

/*********************************
 *  GENERAL SECTION STYLES
 *********************************/
.about-snippet, .services-snippet, .values, .faq-list, .service-categories, .service-benefits, .price-table, .price-notes, .contact-form, .contact-details, .map-snippet, .cookie-policy, .gdpr-policy, .privacy-policy, .terms-conditions {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-snippet a, .services-snippet a {
  color: #31A2EF;
  font-weight: 700;
  transition: color .15s;
}
.about-snippet a:hover, .services-snippet a:hover {
  color: #FF6F96;
}
.map-snippet {
  background: #E1F0E5;
  border-radius: 16px;
  margin-top: 18px;
  padding: 14px 16px;
  font-size: .98rem;
  box-shadow: 0 1px 9px #B193F622;
}

/*********************************
 *  PRICE TABLE
 *********************************/
.price-table ul li, .price-notes ul li {
  background: #F2B13815;
  border-radius: 16px;
  padding: 12px 18px;
  margin-bottom: 8px;
  font-size: 1.07rem;
  color: #2B3A42;
}
.price-table h3 {
  color: #FF6F96;
  margin-top: 18px;
  margin-bottom: 7px;
  font-size: 1.08rem;
}

/*********************************
 *  RESPONSIVENESS – MOBILE FIRST
 *********************************/
@media (max-width: 890px) {
  .container, footer .container {
    max-width: 96vw;
    padding-left: 8px; padding-right: 8px;
  }
  .section, .about-snippet, .services-snippet,
  .values, .faq-list, .service-categories, .service-benefits, .price-table, .price-notes, .contact-form, .contact-details, .map-snippet {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .section, .about-snippet, .services-snippet,
  .values, .faq-list, .service-categories, .service-benefits, .price-table, .price-notes, .contact-form, .contact-details, .map-snippet {
    margin-bottom: 34px;
    border-radius: 17px;
    padding: 28px 5px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 98vw;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .about-snippet, .values, .faq-list,
  .service-categories, .service-benefits, .price-table, .price-notes {
    gap: 14px;
  }
  .hero, .about-hero, .services-hero, .price-hero, .hero-simple, .thank-you, .contact-hero {
    padding: 32px 0 20px 0;
    margin-bottom: 33px;
    border-radius: 0 0 22px 22px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  h1, .hero h1, .about-hero h1, .services-hero h1, .price-hero h1 {
    font-size: 1.57rem;
  }
  h2 { font-size: 1.17rem; }
}
@media (max-width: 600px) {
  .testimonial-card { padding: 11px 6px; }
  .section, .about-snippet, .services-snippet,
  .values, .faq-list, .service-categories, .service-benefits, .price-table, .price-notes, .contact-form, .contact-details, .map-snippet {
    padding: 13px 3px !important;
    border-radius: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  footer nav { flex-direction: row; flex-wrap: wrap; gap: 16px 8px; }
}

/*********************************
 *  SMALL DECORATIVE/PLAYFUL EFFECTS
 *********************************/
.hero .content-wrapper h1:after {
  content: '🐾';
  margin-left: 8px;
  font-size: 1.15em;
  animation: happybounce .95s infinite alternate cubic-bezier(.72,-0.33,.6,1.51);
  display: inline-block;
}
@keyframes happybounce { 0% {transform: translateY(0);} 100% {transform: translateY(-6px) scale(1.11);} }

.testimonial-card:before {
  content: '“';
  font-size: 2.6rem;
  color: #F2B138CC;
  position: absolute;
  left: 16px;
  top: 2px;
  z-index: 1;
  pointer-events: none;
}
.testimonial-card blockquote {
  margin-left: 36px;
  z-index: 2;
}

/*********************************
 *  ANIMATIONS/MICRO-INTERACTIONS
 *********************************/
.card, .testimonial-card, .section, .about-snippet, .services-snippet, .values, .faq-list, .service-categories, .service-benefits {
  transition: box-shadow .18s, transform .14s, background .34s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .card:hover, .section:hover,
  .about-snippet:hover, .services-snippet:hover, .values:hover, .service-categories:hover {
    box-shadow: 0 10px 44px #B193F644, 0 2px 16px #FF6F9622;
    background: #fffbee;
  }
}
/* Fade in for all main content */
main { animation: fadeIn .44s; }

/*********************************
 *  MISC SMALL ELEMENTS
 *********************************/
.privacy-policy a, .gdpr-policy a, .terms-conditions a, .contact-details a {
  color: #31A2EF;
  text-decoration: underline;
  transition: color .13s;
}
.privacy-policy a:hover, .gdpr-policy a:hover, .terms-conditions a:hover, .contact-details a:hover {
  color: #F2B138;
}

/* Hide scroll on mobile menu open */
body.mobile-menu-open { overflow: hidden; }

/*********************************
 *  PRINT STYLING (for privacy/terms)
 *********************************/
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}
