/* ==========================================================================
   | Velora Path Hochzeiten – Playful Dynamic CSS Theme (Flexbox Only) |
   ===========================================================================
   Brand Colors: #26344A (primary), #C0B7B1 (secondary), #F5EDE7 (accent),
   Fun pop colors for playful/dynamic highlight and buttons
   ---------------------------------------------------------------------------*/

/* --- CSS RESET & BASE STYLES --- */
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,
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,
body {
  height: 100%;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F5EDE7;
  color: #26344A;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img, picture {
  max-width: 100%;
  display: block;
}
a { color: #3467d9; text-decoration: none; transition: color 0.22s; }
a:hover, a:focus { color: #FA70B5; outline: none; }
ul, ol { list-style: none; }

/* --- FONT FACE --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Nunito:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6, .brand-title {
  font-family: 'Playfair Display', serif;
  color: #26344A;
  font-weight: 700;
  letter-spacing: -0.015em;
}

h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.2rem; }

p,
ul, ol,
li, blockquote {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #26344A;
}

strong { font-weight: 700; }

/* --- GENERAL LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 rgba(250, 112, 181, 0.09);
  transition: box-shadow 0.3s;
}
.section:target,
.section:hover {
  box-shadow: 0 12px 48px 0 rgba(250, 112, 181, 0.17);
}


/* ==========================================================================
   ================ HEADER + NAV ===============
   ========================================================================== */
header {
  background: #F5EDE7;
  border-bottom: 2px solid #FAE6B1;
  position: relative;
  z-index: 101;
  padding-top: 8px;
  padding-bottom: 8px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #26344A;
  padding: 8px 12px;
  border-radius: 24px;
  transition: background 0.22s, color 0.22s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FA70B5;
  color: #fff;
  outline: none;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 28px;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 28px;
  border: none;
  outline: none;
  background: #FA70B5;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(250,112,181,0.13);
  cursor: pointer;
  text-decoration: none;
  margin-left: 16px;
  margin-right: 0;
  transition: background 0.2s, box-shadow 0.22s, transform 0.14s;
  font-family: 'Nunito', Arial, sans-serif;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #FCB315;
  color: #26344A;
  box-shadow: 0 8px 32px 0 rgba(252,179,21,0.18);
  transform: translateY(-2px) scale(1.045) rotate(-1deg);
}
.btn-secondary {
  background: #FCB315;
  color: #26344A;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FA70B5;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(250,112,181,0.10);
  transform: scale(1.05) rotate(1deg);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #FA70B5;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  box-shadow: 0 4px 16px 0 rgba(250,112,181,0.11);
  transition: background 0.23s, box-shadow 0.21s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FCB315;
  color: #26344A;
  outline: none;
}

/* --- MOBILE SLIDE MENU --- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100dvh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 30px 0;
  box-shadow: 0 0 48px 0 rgba(40,20,45,0.11);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.66,-0.12,.34,1.1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.44s cubic-bezier(.66,-0.12,.34,1.1);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 14px 0;
  background: #FCB315;
  color: #26344A;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.7rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(252,179,21,0.11);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FA70B5;
  color: #fff;
  outline: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  gap: 20px;
  margin-top: 28px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #26344A;
  padding: 12px 0;
  transition: color 0.23s, background 0.23s, padding-left 0.14s;
  border-radius: 0 32px 32px 0;
  display: block;
  width: 90%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FA70B5;
  background: #F5EDE7;
  padding-left: 12px;
  outline: none;
}

@media (max-width: 1020px) {
  .main-nav { gap: 10px; }
  .btn-primary{ min-width: unset; margin-left: 8px; }
}

@media (max-width: 900px) {
  .main-nav { gap: 5px; }
}

@media (max-width: 820px) {
  header .container {
    flex-wrap: wrap;
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none; /* hide main nav for mobile */
  }
  .btn-primary{ margin-left: 0; }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width:769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -- Ensure .open state gets priority for mobile menu -- */
@media (max-width: 768px) {
  .mobile-menu { display: flex; }
}

/* ==========================================================================
   =========== PLAYFUL ANIMATION KEYFRAMES =============
   ========================================================================== */
@keyframes fun-pop {
  0% { transform: scale(1) rotate(-2deg); }
  50% { transform: scale(1.08) rotate(3deg); }
  100% { transform: scale(1) rotate(-1deg); }
}
@keyframes cta-shadow {
  0% { box-shadow: 0 1px 4px rgba(250,112,181,0.085); }
  50%{ box-shadow: 0 16px 32px rgba(252,179,21,0.17); }
  100%{ box-shadow: 0 2px 8px rgba(250,112,181,0.13); }
}
@keyframes fadeInUp {
  from { opacity:0;transform:translateY(40px);} to { opacity:1;transform:translateY(0);}
}
@keyframes cookieIn {
  from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   ================ HERO & SECTIONS ===============
   ========================================================================== */
.hero {
  background: #FA70B5;
  background: linear-gradient(102deg, #FA70B5 70%, #FCB315 100%);
  color: #fff;
  padding: 70px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
  animation: fadeInUp 0.68s ease;
}
.hero h1 { color: #fff; font-size: 2.7rem; letter-spacing: -0.02em; }
.hero p { color: #fff; font-size: 1.22rem; }
.hero .btn-primary {
  margin-top: 20px;
  font-size: 1rem;
  animation: fun-pop 2.4s ease-in-out infinite;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: #FCB315;
  color: #26344A;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 42px 10px;
  box-shadow: 0 4px 24px 0 rgba(252,179,21,0.08);
  animation: cta-shadow 8s infinite alternate;
}
.cta-banner .content-wrapper{
  align-items: center;
  text-align: center;
}
.cta-banner h2 {
  color: #26344A; font-size: 2.1rem; margin-bottom: 10px;
}
.cta-banner p { font-size: 1.08rem; }

/* ==========================================================================
   ============ FEATURES, CARDS, GRID =============
   ========================================================================== */
.features,
.services-preview,
.services-detailed,
.process,
.inspiration,
.blog-list,
.contact-section,
.map-section,
.team,
.confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(250,112,181,0.04);
  min-width: 0;
}
.features h2,
.services-preview h2,
.services-detailed h2,
.process h2,
.inspiration h2,
.blog-list h2,
.team h2,
.confirmation h1 {
  color: #FA70B5;
  font-size: 2rem;
}

.features ul,
.services-preview ul,
.about-short ul,
.inspiration ul,
.text-section ul,
.service-highlights ul,
.category-filter ul,
.confirmation ul { 
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 18px;
  margin-bottom: 10px;
  padding-left: 0;
}

.features ul li,
.services-preview ul li,
.service-highlights ul li,
.text-section ul li,
.inspiration ul li,
.category-filter ul li,
.confirmation ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #26344A;
  background: #FFFAF3;
  border-radius: 24px;
  padding: 10px 18px;
  box-shadow: 0 1px 8px rgba(252,179,21,0.05);
  font-weight: 600;
  transition: background 0.19s, box-shadow 0.21s;
  min-height: 32px;
}
.features ul li:hover,
.services-preview ul li:hover,
.inspiration ul li:hover {
  background: #FA70B5;
  color: #fff;
  box-shadow: 0 3px 16px rgba(250,112,181,0.09);
}
.features ul li img {
  height: 26px; width: auto;
  margin-right: 6px;
  filter: drop-shadow(0 1px 3px #FCB31580);
}

/* --- ICONS-GRID in SERVICES --- */
.icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 26px 0 18px 0;
}
.icons-grid > div {
  background: #FCB315;
  color: #26344A;
  border-radius: 22px;
  padding: 22px 18px;
  flex: 1 1 190px;
  min-width: 150px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(252,179,21,0.10);
  margin-bottom: 20px;
  transition: transform 0.21s, box-shadow 0.23s, background 0.18s;
  animation: fadeInUp 1.2s linear;
}
.icons-grid > div:hover {
  background: #FA70B5;
  color: #fff;
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 8px 32px rgba(250,112,181,0.14);
}
.icons-grid img {
  height: 48px; margin-bottom: 10px;
}
.icons-grid h3 {
  color: #26344A; font-size: 1.15rem; margin-bottom: 4px;
}
.icons-grid > div:hover h3,
.icons-grid > div:hover p {
  color: #fff;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CARD CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 24px; box-shadow: 0 2px 12px rgba(250,112,181,0.06); padding: 14px 28px; transition: box-shadow 0.18s; }
.card:hover { box-shadow: 0 6px 16px 0 #FCB31526; }

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.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;
}


/* ==========================================================================
   =========== TESTIMONIALS & SLIDER =============
   ========================================================================== */
.testimonials-preview,
.testimonials {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(250,112,181,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials-preview h2, .testimonials h2 {
  color: #FA70B5; font-size: 2rem;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin: 22px 0 9px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 22px 34px;
  background: #FAE6B1;
  border-radius: 24px;
  color: #26344A;
  font-size: 1.1rem;
  box-shadow: 0 2px 20px rgba(252,179,21,0.09);
  min-width: 270px;
  max-width: 370px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: background 0.22s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(250,112,181,0.14);
  background: #FCB315;
  color: #fff;
}
.testimonial-card strong,
.testimonial-card p { color: #26344A; text-align: center; }
.testimonial-card:hover strong,
.testimonial-card:hover p { color: #fff; }

.testimonials .testimonial-card { background: #FAE6B1; }

blockquote.highlight-quote {
  display: block;
  background: #FA70B5;
  color: #fff;
  padding: 28px 34px;
  font-size: 1.2rem;
  border-radius: 22px;
  margin: 40px 0 0 0;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 6px 28px rgba(250,112,181,0.14);
  position: relative;
}

/* ==========================================================================
   ============ BLOG & POST PREVIEW ============
   ========================================================================== */
.post-preview {
  background: #fff7e5;
  border-left: 6px solid #FA70B5;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(250,112,181,0.05);
  padding: 18px 22px;
  margin-bottom: 20px;
  transition: border-left 0.22s, box-shadow 0.17s;
}
.post-preview h3 { margin-bottom: 7px; font-size: 1.19rem; font-family: 'Playfair Display', serif; color: #FA70B5; }
.post-preview:hover {
  border-left: 6px solid #FCB315;
  box-shadow: 0 5px 18px 0 #FCB31522;
}

.category-filter {
  background: #fff8e1;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 3px 14px rgba(252,179,21,0.09);
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.category-filter h4 {
  color: #FCB315; font-weight: 700; font-size: 1.08rem; margin-bottom: 8px;
}

/* ==========================================================================
   =========== TEXT BLOCKS & INFO SECTIONS ===========
   ========================================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul { gap: 10px; }
.text-section img { height: 22px; vertical-align: middle; margin-right: 6px; }

.next-steps, .service-highlights {
  margin-top: 14px;
  padding-left: 5px;
}

/* ============= TEAM SECTION ================ */
.team-member, .team-values {
  background: #F5EDE7;
  border-radius: 20px;
  box-shadow: 0 1px 12px rgba(250,112,181,0.05);
  padding: 18px 22px;
  margin-bottom: 20px;
}
.team-member h3, .team-values h3 { color: #FCB315; margin-bottom: 8px; font-size: 1.1rem; }

/* ============ CONTACT INFO ================ */
.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

/* =========== MAP SECTION ================ */
.map-section {
  background: #fff9ee;
}

/* =========== LEGAL/GDPR/COOKIE/TERMS =============== */
.legal {
  background: #FCB315;
  color: #26344A;
  border-radius: 28px;
  box-shadow: 0 2px 20px 0 #FCB31515;
  margin-bottom: 60px;
  padding: 30px 20px;
}
.legal h1 { color: #26344A; font-size: 2.1rem; margin-bottom: 18px; }
.legal h2, .legal h3 { color: #FA70B5; }
.legal .text-section { background: transparent; }
.legal .cookie-note { background: #fff; color: #FA70B5; border-radius: 14px; padding: 10px 16px; margin: 20px 0 8px; font-weight: bold; }

/* ==========================================================================
   ============ FOOTER STYLES ============
   ========================================================================== */
footer {
  background: #26344A;
  color: #fff;
  padding: 43px 0 18px 0;
  margin-top: 60px;
  font-size: 1rem;
  position: relative;
  z-index: 50;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.footer-info img { height: 48px; }
.footer-info strong { color: #FCB315; font-weight: 800; font-size: 1.05rem; margin-bottom: 5px; display: block; }

.social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.social-links a {
  display: flex;
  align-items: center;
  background: #FA70B5;
  border-radius: 50%;
  width: 38px; height: 38px;
  justify-content: center;
  transition: background 0.21s;
}
.social-links a:hover { background: #FCB315; }
.social-links img { height: 22px; width: 22px; }

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 8px 0 0 0;
}
.footer-menu a {
  color: #fff;
  opacity: 0.85;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-bottom 0.17s, color 0.22s, opacity 0.22s;
}
.footer-menu a:hover, .footer-menu a:focus {
  border-bottom: 2px solid #FCB315;
  color: #FCB315;
  opacity: 1;
  outline: none;
}
.location-text {
  margin-top: 14px;
  color: #fff;
  opacity: 0.88;
  font-size: 1em;
}

@media (max-width: 1020px) {
  footer .container { padding-left: 14px; padding-right: 14px; }
  .footer-menu { gap: 8px; }
  .footer-info { gap: 15px; }
}
@media (max-width: 820px) {
  .footer-info { flex-direction: column; gap: 12px; }
  .footer-menu { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .footer-info { flex-direction: column; gap: 8px; }
}

/* ==========================================================================
   ============ COOKIE CONSENT BANNER & MODAL ============
   ========================================================================== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 20000;
  background: #FCB315;
  color: #26344A;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px 20px 22px;
  box-shadow: 0px -4px 14px rgba(252,179,21,0.15);
  font-size: 1rem;
  animation: cookieIn 0.7s;
  gap: 20px;
}
#cookie-banner p { flex: 1; font-weight: 500; }
.cookie-btn-group {
  display: flex;
  gap: 14px;
}
#cookie-banner button {
  min-width: 120px;
  padding: 9px 18px;
  border-radius: 22px;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  background: #FA70B5;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(250,112,181,0.10);
  transition: background 0.22s, color 0.17s;
  outline: none;
}
#cookie-banner .cookie-accept {
  background: #FA70B5;
}
#cookie-banner .cookie-accept:hover, #cookie-banner .cookie-accept:focus {
  background: #26344A;
}
#cookie-banner .cookie-reject {
  background: #fff;
  color: #FA70B5;
  border: 1px solid #FA70B5;
}
#cookie-banner .cookie-reject:hover, #cookie-banner .cookie-reject:focus {
  background: #FCB315;
  color: #26344A;
}
#cookie-banner .cookie-settings {
  background: #FCB315;
  color: #fff;
  border: 1px solid #fffaa1;
}
#cookie-banner .cookie-settings:hover, #cookie-banner .cookie-settings:focus {
  background: #FA70B5; color: #fff;
}

/* Cookie Modal Styles */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100dvh;
  z-index: 22000;
  background: rgba(38,52,74,0.75);
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.6s;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 40px 24px 30px 24px;
  min-width: 320px;
  max-width: 90vw;
  color: #26344A;
  box-shadow: 0 6px 36px 0 #FCB31513;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp 0.5s;
}
.cookie-modal-content h3 {
  color: #FA70B5; font-size: 1.4rem; margin-bottom: 12px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FAE6B1;
  border-radius: 14px;
  padding: 14px 14px;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #FCB315;
  background: #FA70B5;
}
.cookie-category .cookie-essential {
  font-weight: bold;
  color: #FCB315;
}
.cookie-modal-btn-group {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  align-items: center;
}
#cookie-modal .cookie-save {
  background: #FA70B5;
}
#cookie-modal .cookie-cancel {
  background: #fff;
  color: #26344A;
  border: 1px solid #FA70B5;
}
#cookie-modal .cookie-save:hover, #cookie-modal .cookie-save:focus {
  background: #26344A; color: #fff;
}
#cookie-modal .cookie-cancel:hover, #cookie-modal .cookie-cancel:focus {
  background: #FCB315; color: #fff;
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 17px 12px;
    font-size: 0.95rem;
  }
  .cookie-btn-group{
    width: 100%;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-modal-content { min-width: 0; padding: 24px 7vw 24px 7vw; }
}

/* ==========================================================================
   =========== RESPONSIVENESS, MOBILE-FIRST FLEX-ADAPTATION ===========
   ========================================================================== */
@media (max-width: 1180px) {
  .container { max-width: 98vw; }
}

@media (max-width: 900px) {
  .icons-grid { gap: 17px; }
  .card-container { gap: 16px; }
}
@media (max-width: 800px) {
  .section, .features, .services-preview, .about-short, .services-detailed, .process, .inspiration, .blog-list, .testimonials-preview, .testimonials, .cta-banner, .confirmation {
    padding: 30px 5vw;
    margin-bottom: 38px;
  }
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .icons-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
  }
  .testimonial-slider,
  .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card,
  .icons-grid > div,
  .card {
    max-width: 99vw;
    min-width: unset;
    width: 100%;
  }
  .features,
  .services-preview,
  .services-detailed,
  .process,
  .inspiration,
  .blog-list,
  .contact-section,
  .map-section,
  .testimonials,
  .testimonials-preview {
    padding: 30px 7vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 540px) {
  .container, .section { padding-left: 2vw; padding-right: 2vw; font-size: 0.92rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding: 40px 0 26px 0; }
  .cta-banner { padding: 22px 2vw; }
  .post-preview, .testimonial-card, .team-member, .team-values, .legal, .footer-info, .about-short { padding: 12px 8px; }
  .cta-banner h2 { font-size: 1.13rem; }
  .footer-info img { height: 32px; }
}

/* ==========================================================================
   ============ ADDITIONAL MICRO-INTERACTIONS & UTILITY ===========
   ========================================================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #F5EDE7;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #FA70B5BB;
  border-radius: 12px;
}
:focus {
  outline: 2px solid #FA70B5;
  outline-offset: 2px;
}

/* Visually hidden class for accessibility */
.visually-hidden {
  position: absolute!important;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ==========================================================================
   |
   |      ===== PLAYFUL DYNAMIC SPECIAL EFFECTS =====
   |
   ========================================================================== */

/* Subtle random rotation for list items, playfulness */
.features ul li:nth-child(1) { transform: rotate(-2deg); }
.features ul li:nth-child(2) { transform: rotate(1.5deg); }
.features ul li:nth-child(3) { transform: rotate(-1deg); }
.features ul li:nth-child(4) { transform: rotate(2deg); }
.features ul li:nth-child(5) { transform: rotate(-1deg); }

.btn-primary, .btn-secondary {
  animation: fun-pop 3.5s infinite alternate;
}


/* ===========================================================================
| FLEXBOX LAYOUT ENFORCEMENT – NO GRID, NO COLUMNS
============================================================================ */
/* --- All grid-type classes use flex layouts, flex-wrap & gap, enforced above --- */
/* Do not use grid, column, or absolute positioning for main content! */


/* END OF PLAYFUL_DYNAMIC THEME */
