/* ==== 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; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { border-style: none; display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F6F4F0;
  color: #194485;
  min-height: 100vh;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #194485;
  font-weight: 900;
  text-shadow: 1px 2px 0 #75B84211;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
.subtitle {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #75B842;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  animation: pulse-title 3s infinite alternate ease;
}
@keyframes pulse-title {
  from { text-shadow: 0 2px 16px #75B84255; }
  to   { text-shadow: 0 4px 24px #75B842bb; }
}
strong { font-weight: 700; color: #194485; }
/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px #19448511;
  position: relative;
  transition: box-shadow .3s;
}
.section:hover {
  box-shadow: 0 16px 48px #75B84233;
}
/* ==== HEADER & NAVIGATION ==== */
header {
  background: #194485;
  color: #fff;
  width: 100%;
  padding: 0 0 0 0;
  z-index: 40;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 32px;
}
header img {
  height: 54px;
  width: auto;
  margin-right: 24px;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.09rem;
  padding: 10px 16px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
  background: none;
  position: relative;
  z-index: 1;
}
nav a:hover, nav a:focus {
  background: #75B842;
  color: #194485!important;
  box-shadow: 0 4px 16px #75B84244;
}
nav a.cta-primary {
  background: #75B842;
  color: #194485;
  font-weight: 900;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1.15rem;
  transition: background .22s, color .22s, box-shadow .22s;
  box-shadow: 0 2px 10px #75B84233;
  animation: buttonwiggle 2.2s infinite alternate ease;
}
@keyframes buttonwiggle {
  0%   { transform: translateY(0) rotate(-1deg); }
  7%   { transform: translateY(-2px) rotate(1.5deg); }
  13%   { transform: translateY(0) rotate(-1deg); }
  100% { transform: translateY(0); }
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: #fff;
  color: #75B842;
  box-shadow: 0 8px 24px #19448522;
  outline: 0;
}
nav a.cta-secondary {
  background: #194485;
  color: #fff;
  border: 2px solid #75B842;
  padding: 11px 27px;
  font-weight: 700;
  font-size: 1.09rem;
}
nav a.cta-secondary:hover {
  background: #75B842;
  color: #194485;
}
/* ===== Mobile Menu ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 20px;
  background: #75B842;
  color: #194485;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  z-index: 101;
  box-shadow: 0 2px 16px #75B84244;
  transition: background .24s, color .24s;
  outline: none;
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #194485;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #194485e6;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.43,.08,.56,1.24);
  padding: 0 0 40px 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #75B842;
  color: #194485;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: relative;
  left: 22px;
  top: 22px;
  margin-bottom: 20px;
  z-index: 140;
  box-shadow: 0 2px 10px #75B84233;
  transition: background .24s, color .24s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #75B842;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 32px;
  gap: 12px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.19rem;
  padding: 16px 0;
  width: 100%;
  font-weight: 700;
  transition: background .19s, color .19s;
  border-radius: 12px;
  outline: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #75B842;
  color: #194485;
}
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
/* ===== MAIN LAYOUT & FLEXBOX GRIDS ===== */
.feature-grid, .workshop-grid, .service-list, .event-list, .art-course-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > li, .workshop-grid > li, .service-list > li, .event-list > li, .art-course-list > li, .workshop-list > li {
  background: #FFF3E2;
  border-radius: 20px;
  box-shadow: 0 2px 10px #75B84224;
  padding: 32px 24px 24px;
  flex: 1 1 240px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow .24s, background .18s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  z-index: 3;
  border: 2px dashed #75B84233;
  animation: bounceAppear .6s cubic-bezier(.28,.14,.55,1.39);
}
@keyframes bounceAppear {
  0% { transform: scale(.95) translateY(16px); opacity: 0; }
  85% { transform: scale(1.05) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.feature-grid > li:hover, .workshop-grid > li:hover, .service-list > li:hover, .event-list > li:hover, .art-course-list > li:hover, .workshop-list > li:hover {
  background: #F6F4F0;
  box-shadow: 0 4px 24px #75B84244, 0 0 0 4px #75B84222;
  z-index: 5;
}
.feature-grid img, .workshop-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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: 28px;
  box-shadow: 0 6px 26px #19448511;
  font-size: 1.09rem;
  min-height: 110px;
  margin-bottom: 24px;
  transition: box-shadow .2s, transform .23s;
  flex: 1 1 280px;
  max-width: 480px;
  position: relative;
  z-index: 2;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #194485;
  font-style: italic;
  font-size: 1.08rem;
  margin-right: 12px;
  line-height: 1.6;
}
.testimonial-card cite {
  color: #75B842;
  font-weight: 700;
  font-size: 1.05rem;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 12px 34px #75B84233, 0 0 0 4px #75B84216;
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 16px;
}
/* ==== Responsive adjustments ==== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper, .feature-grid, .workshop-grid, .service-list, .event-list, .art-course-list, .workshop-list {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    padding: 28px 6px;
    border-radius: 18px;
  }
  header .container {
    min-height: 54px;
    gap: 10px;
  }
  .feature-grid > li, .workshop-grid > li, .service-list > li, .event-list > li, .art-course-list > li, .workshop-list > li {
    min-width: 140px;
    padding: 22px 11px 18px;
    font-size: 1rem;
    border-radius: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    min-height: 78px;
    border-radius: 15px;
    font-size: .97rem;
    max-width: 100%;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
}
/* ==== BUTTONS, LINKS, CTAs ==== */
.cta-primary, .cta-secondary, .button, button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  border: none;
  outline: none;
  padding: 14px 32px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 900;
  transition: background .23s, color .23s, box-shadow .23s, transform .13s;
  box-shadow: 0 2px 7px #75B84233;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.cta-primary, .cta-primary:visited {
  background: #75B842;
  color: #194485;
  border: 2px solid #75B842;
}
.cta-primary:hover, .cta-primary:focus {
  background: #194485;
  color: #fff;
  border: 2px solid #194485;
  box-shadow: 0 8px 18px #75B84244, 0 0 0 4px #19448522;
  transform: translateY(-2px) scale(1.01);
}
.cta-secondary {
  background: #fff;
  color: #194485;
  border: 2px solid #75B842;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #75B842;
  color: #fff;
  border-color: #194485;
  transform: translateY(-2px) scale(1.01);
}
.button {
  background: #194485;
  color: #fff;
  font-weight: 700;
  border: 2px solid #75B842;
  border-radius: 18px;
}
.button:hover, .button:focus {
  background: #75B842;
  color: #194485;
}
/* ==== Special chips, tags, chips-like UI elements ==== */
.chip {
  display: inline-block;
  background: #75B842;
  color: #fff;
  padding: 7px 18px;
  border-radius: 14px;
  font-size: 0.97rem;
  font-weight: 700;
  margin-right: 8px;
  margin-bottom: 6px;
  box-shadow: 0 1px 4px #75B84233;
}
.chip-accent {
  background: #194485;
  color: #fff;
}
/* ==== Utility: whitespace & spacing ==== */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 32px; }
.mb-4 { margin-bottom: 52px; }
.p-1 { padding: 8px; }
.p-2 { padding: 20px; }
.p-3 { padding: 32px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 20px; }
/* ==== Text Block Style (for About, Impressum etc.) ==== */
.text-section {
  font-size: 1.1rem;
  color: #194485;
  margin-bottom: 12px;
  line-height: 1.7;
  background: #F6F4F0cc;
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: 0 1px 4px #75B84211;
  word-break: break-word;
}
.text-section strong {
  color: #75B842;
  font-size: 1.02em;
  font-weight: 900;
}
/* ==== Images & Team Photo Placeholder ==== */
.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 164px; height: 164px;
  background: #F6F4F0;
  border-radius: 50%;
  border: 3px dashed #75B842aa;
  box-shadow: 0 2px 10px #75B84233;
  margin-bottom: 16px;
  padding: 10px;
}
/* ==== Pricing / Highlights / Info Bar ==== */
.pricing-highlights, .price-info, .pricing-overview, .service-highlights, .special-highlights, .materials-info, .instructor-bios, .creative-benefits, .event-calendar, .event-categories, .project-highlights, .skill-levels, .course-dates {
  background: #E5FCB9;
  color: #194485;
  border-radius: 16px;
  padding: 14px 18px;
  margin: 16px 0 16px 0;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px #75B84222;
}
.special-highlights {
  background: #FFF3E2;
  color: #75B842;
  font-weight: 700;
}
/* ==== Footer ==== */
footer {
  background: #194485;
  color: #fff;
  padding: 38px 0 24px 0;
  width: 100%;
  font-size: 1rem;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-top: 60px;
  box-shadow: 0 -6px 32px #75B84219;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1rem;
}
footer nav a {
  color: #fff;
  opacity: .89;
  transition: opacity .19s, text-decoration .19s;
  border-bottom: 2px dotted #75B84200;
}
footer nav a:hover, footer nav a:focus {
  opacity: 1;
  border-bottom: 2px solid #75B842;
  color: #75B842;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 4px 0;
}
.footer-brand img {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 2px 4px #75B84233);
}
footer p { text-align: center; margin-top: 0; margin-bottom: 0; opacity: .8; }
/* ==== Animations & Microinteractions ==== */
.card:hover, .feature-grid > li:hover, .workshop-grid > li:hover {
  animation: cardshake .28s cubic-bezier(.19,.62,.62,1.81) 1;
}
@keyframes cardshake {
  0%   { transform: scale(1) rotate(-1deg); }
  13%  { transform: scale(1.04) rotate(1.5deg); }
  21%  { transform: scale(0.99) rotate(-1.5deg); }
  33%  { transform: scale(1.036) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.cta-primary, .cta-secondary, .button {
  animation: bouncein 0.73s cubic-bezier(.28,.14,.55,1.39);
}
@keyframes bouncein {
  0%   { transform: scale(.91) translateY(10px); opacity: 0.3; }
  80%  { transform: scale(1.08) translateY(-3px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
/* ==== Cookie Consent Banner & Modal ==== */
.cookie-banner {
  position: fixed;
  z-index: 1600;
  left: 0; right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #FFF3E2;
  color: #194485;
  padding: 24px 18px 24px 18px;
  box-shadow: 0 -4px 32px #75B84233;
  border-radius: 18px 18px 0 0;
  font-size: 1.07rem;
  animation: bannerpop .9s cubic-bezier(.28,.14,.55,1.39);
}
@keyframes bannerpop {
  0% { transform: translateY(150px) scale(.97); opacity: 0; }
  70% { transform: translateY(-10px) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); }
}
.cookie-banner .cookie-btn {
  background: #75B842;
  color: #194485;
  border: none;
  padding: 12px 20px;
  margin: 0 6px;
  border-radius: 14px;
  font-weight: 900;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #75B84224;
  transition: background .21s, color .21s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #194485;
  color: #fff;
}
.cookie-banner .cookie-btn-settings {
  background: #fff;
  color: #194485;
  border: 2px dashed #75B842;
  font-weight: 700;
}
.cookie-banner .cookie-btn-settings:hover, .cookie-banner .cookie-btn-settings:focus {
  background: #75B842;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1700;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #19448544;
  align-items: center;
  justify-content: center;
  animation: fadein .28s;
}
@keyframes fadein {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #194485;
  border-radius: 24px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 8px 40px #19448522;
  padding: 32px 14px 28px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  position: relative;
  animation: popmodal .55s cubic-bezier(.28,.14,.55,1.39);
}
@keyframes popmodal {
  0% { transform: scale(.9) translateY(20px); opacity: 0; }
  85% { transform: scale(1.06) translateY(-3px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: #75B842;
  color: #194485;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 2px 8px #75B84224;
  transition: background .18s, color .18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #194485;
  color: #fff;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #194485;
  font-weight: 500;
  cursor: pointer;
  margin-left: 2px;
}
.cookie-category input[type='checkbox'] {
  accent-color: #75B842;
  width: 22px;
  height: 22px;
  border-radius: 7px;
}
.cookie-category input[disabled] {
  filter: grayscale(1) opacity(.54);
  cursor: not-allowed;
}
.cookie-modal .cookie-btn,
.cookie-modal .cookie-btn-settings {
  display: inline-block;
  margin-right: 7px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.03rem;
}
/* ==== Forms & Notices ==== */
.contact-form-notice {
  background: #FFF3E2;
  color: #944485;
  border: 1px dashed #75B84288;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 1.02rem;
  margin: 12px 0;
}
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 10px 14px;
  font-size: 1rem;
  color: #194485;
  background: #f8f8f8;
  border-radius: 8px;
  border: 2px solid #75B84233;
  margin-bottom: 15px;
  transition: border .17s, box-shadow .17s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #75B842;
  box-shadow: 0 0 0 3px #75B84222;
}
/* ==== Table, List, and OL/UL ==== */
ul li, ol li {
  margin-left: 18px;
  margin-bottom: 8px;
  list-style-type: disc !important;
  text-align: left;
}
ol li {
  list-style-type: decimal !important;
}
ul ul, ul ol, ol ul, ol ol {
  margin-left: 14px;
}
@media (max-width: 540px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .footer-brand img, header img { height: 44px; }
}
/* ==== Decorative Playful Effects ==== */
.section:before {
  content: '';
  display: block;
  position: absolute;
  right: 35px;
  top: 18px;
  width: 40px;
  height: 40px;
  pointer-events: none;
  opacity: .13;
  background: url('../assets/logo-mark.svg') no-repeat center center/contain;
  z-index: 0;
}
@media (max-width: 768px) {
  .section:before { right: 14px; top: 12px; width: 28px; height: 28px; }
}
.feature-grid > li:after, .workshop-grid > li:after, .event-list > li:after {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  bottom: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #75B84244;
  z-index: 0;
  animation: bubblefloat 6s infinite alternate ease-in;
}
@keyframes bubblefloat {
  0%   { transform: translateY(0) scale(1) rotate(-5deg); }
  100% { transform: translateY(-12px) scaleX(1.13) rotate(17deg); }
}
/***** Scrollbar styling for playful dynamic feel *****/
::-webkit-scrollbar {
  width: 12px;
  background: #F6F4F0;
}
::-webkit-scrollbar-thumb {
  background: #75B84299;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #75B842;
}
/***** Hide scrollbars for overlay on mobile menu, modal *****/
.mobile-menu, .cookie-modal-overlay {
  scrollbar-width: thin;
  scrollbar-color: #75B842 #F6F4F0;
}
/****** Accessibility focus style ******/
:focus {
  outline: 2px solid #75B842;
  outline-offset: 2px;
}

/***** End of playful_dynamic style! *****/
