/* --- CSS RESET & BASE --- */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #231942;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #9F5F80;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 700;
}
a:hover, a:focus {
  color: #9d84e6;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #231942;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 { font-size: 2.8rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; margin-bottom: 6px; }

p, .text-section, .testimonial-meta, li, span, .feature-item {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #231942;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
}

strong {
  font-weight: 700;
}

/* --- LAYOUT FLEX CONTAINERS --- */
.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF1E6;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(35,25,66,0.05), 0 1.5px 3px #9F5F80;
}

.card-container, .feature-grid, .festival-highlights, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(158,95,128,0.09);
  padding: 24px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(35,25,66,0.11);
  transform: translateY(-6px) scale(1.02);
  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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(35,25,66,0.07);
  margin-bottom: 20px;
  min-height: 90px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(35,25,66,0.10);
  transform: translateY(-4px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.08rem;
  font-weight: 700;
  color: #231942;
  flex: 1;
  margin-bottom: 0;
}
.testimonial-meta {
  font-size: 0.95rem;
  color: #9F5F80;
  font-weight: 900;
  margin-left: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(35,25,66,0.06);
  padding: 28px 22px 25px 22px;
  min-width: 240px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.feature-grid > div img {
  width: 43px;
  height: 43px;
  margin-bottom: 15px;
  border-radius: 12px;
  background: #9F5F80;
  padding: 7px;
  box-shadow: 0 1.5px 8px #9F5F8033;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(35,25,66,0.13);
}

.text-section {
  margin-bottom: 32px;
}

.festival-highlights {
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 14px;
}
.festival-highlights ul {
  margin-left: 30px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFF1E6;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
}

.team-intro {
  margin-top: 24px;
  margin-bottom: 18px;
}
.keystats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 900;
  color: #9F5F80;
  margin-top: 24px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #231942;
  padding: 0;
  width: 100%;
  box-shadow: 0 2px 14px rgba(35,25,66,0.07);
  z-index: 13;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: 80px;
}
header img[alt='GlitzerFunk Events'] {
  height: 44px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
nav a {
  color: #FFF1E6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 8px;
  transition: color 0.15s;
}
nav a.button-primary {
  background: #9F5F80;
  color: #fff;
  font-size: 1rem;
  border-radius: 7px;
  padding: 9px 22px 9px 22px;
  box-shadow: 0 2px 10px rgba(158,95,128,0.08);
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
  text-transform: none;
  margin-left: 10px;
}
nav a.button-primary:hover, nav a.button-primary:focus {
  background: #231942;
  color: #FFF1E6;
  box-shadow: 0 4px 16px rgba(35,25,66,0.12);
}
nav a:not(.button-primary):after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #9F5F80;
  border-radius: 2px;
  transition: width 0.22s;
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  margin: auto;
}
nav a:not(.button-primary):hover:after, nav a:not(.button-primary):focus:after {
  width: 100%;
}

/* --- PRIMARY BUTTON --- */
.button-primary {
  background: #9F5F80;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 12px 32px;
  box-shadow: 0 3px 14px rgba(158,95,128,0.11);
  border: none;
  margin-top: 18px;
  margin-bottom: 8px;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s, transform 0.18s;
  display: inline-block;
  position: relative;
}
.button-primary:hover, .button-primary:focus {
  background: #231942;
  color: #FFF1E6;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(158,95,128,0.13);
}

/* --- FOOTER --- */
footer {
  background: #231942;
  color: #FFF1E6;
  width: 100%;
  padding: 0;
  border-radius: 0;
  margin: 0;
  box-shadow: 0 -1px 10px rgba(35,25,66,0.07);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 24px 0 12px 0;
}
.footer-nav a {
  color: #FFF1E6;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #9F5F80;
  text-decoration: underline;
}
.footer-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  justify-content: center;
  font-size: 0.99rem;
  padding-bottom: 18px;
  color: #FFF1E6;
}
.footer-meta img {
  width: 36px;
  height: 36px;
}
.footer-meta span {
  color: #FFF1E6;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  position: fixed;
  right: 22px;
  top: 18px;
  z-index: 27;
  background: #9F5F80;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  box-shadow: 0 2px 12px rgba(35,25,66,0.10);
  transition: background 0.16s, color 0.16s, box-shadow 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #231942;
  color: #FFF1E6;
}
.mobile-menu {
  position: fixed;
  z-index: 41;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,25,66,0.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.82,.04,.35,1.14);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: #9F5F80;
  font-size: 2.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border: none;
  align-self: flex-end;
  margin: 20px 24px 18px 0;
  cursor: pointer;
  transition: color 0.13s, transform 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFF1E6;
  transform: scale(1.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-top: 28px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #FFF1E6;
  padding: 18px 32px;
  font-size: 1.46rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  margin-left: 8px;
  letter-spacing: 0.06em;
  transition: background 0.15s, color 0.14s;
  min-width: 220px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #9F5F80;
  color: #FFF1E6;
}
.mobile-nav a.button-primary {
  background: #9F5F80;
  color: #FFF1E6;
  padding: 14px 20px;
  margin-top: 10px;
  margin-left: 8px;
}

@media (max-width: 1120px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
}
@media (max-width: 920px) {
  header .container, .footer-meta, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    gap: 14px;
  }
}
@media (max-width: 820px) {
  .content-wrapper {
    padding: 10px 0;
  }
  .section {
    padding: 24px 10px;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .content-grid, .feature-grid, .card-container, .festival-highlights, .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .card, .feature-grid > div {
    min-width: 90vw;
    max-width: 98vw;
    padding: 18px 11px 18px 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
  }
  .keystats {
    flex-direction: column;
    gap: 8px;
  }
  .footer-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 10px;
    align-items: flex-start;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}

/* --- SECTION COLORS/HIGHLIGHTS --- */
section {
  background: none;
  border: none;
  margin-bottom: 60px;
  padding: 0;
}
section .container {
  background: none;
  border: none;
  padding: 0 20px;
}

/* --- VISUAL EFFECTS AND DECORATIVE SHAPES --- */
.section {
  position: relative;
  overflow: hidden;
}
.section:before,
.section:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}
.section:before {
  width: 140px;
  height: 140px;
  background: #9F5F80;
  left: -60px;
  top: -75px;
}
.section:after {
  width: 90px;
  height: 90px;
  background: #231942;
  right: -35px;
  bottom: -45px;
}

/* --- COOKIE BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 71;
  background: #231942;
  color: #FFF1E6;
  padding: 24px 24px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 16px rgba(35,25,66,0.16);
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.32s cubic-bezier(.82,.04,.35,1.14), opacity 0.23s;
}
.cookie-consent-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-message {
  font-size: 1.1rem;
  color: #FFF1E6;
  font-weight: 600;
  margin-right: 10px;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 7px;
  padding: 11px 23px;
  margin-right: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  background: #9F5F80;
  color: #FFF1E6;
  border: none;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFF1E6;
  color: #231942;
}
.cookie-btn.reject {
  background: #FFF1E6;
  color: #231942;
  border: 2px solid #9F5F80;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #9F5F80;
  color: #FFF1E6;
}
.cookie-btn.settings {
  background: #231942;
  color: #FFF1E6;
  border: 2px solid #9F5F80;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #9F5F80;
  color: #FFF1E6;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,25,66,0.92);
  z-index: 93;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.23s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #FFF1E6;
  color: #231942;
  border-radius: 22px;
  padding: 48px 34px 37px 34px;
  min-width: 315px;
  max-width: 97vw;
  min-height: 100px;
  box-shadow: 0 8px 48px rgba(35,25,66,0.21);
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 23px;
  color: #231942;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 21px; right: 20px;
  color: #231942;
  background: transparent;
  font-size: 1.58rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 19px;
}
.cookie-category label {
  font-size: 1.07rem;
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 28px;
}
.cookie-toggle-switch {
  width: 47px;
  height: 25px;
  background: #9F5F80;
  border-radius: 24px;
  position: relative;
  transition: background 0.19s;
  flex-shrink: 0;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 3px;
  width: 21px; height: 21px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s cubic-bezier(.77,0,.175,1);
  box-shadow: 0 1.5px 5px #9F5F8033;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  transform: translateX(21px);
  background: #231942;
}
.cookie-category.essential .cookie-toggle-switch {
  background: #231942;
}
.cookie-category.essential label {
  opacity: 0.77;
  font-weight: 900;
}
.cookie-category.essential .cookie-toggle-switch .cookie-toggle-slider {
  background: #9F5F80;
}
.cookie-category.essential .cookie-toggle-switch {
  box-shadow: 0 0 0 1.5px #9F5F80;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 28px 7vw 23px 7vw;
    min-width: 0;
    font-size: 0.98rem;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 18px 8px;
  }
}

/* --- MICRO-ANIMATIONS --- */
.button-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.17s, background 0.17s, color 0.17s, transform 0.20s;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none!important;
    animation: none!important;
  }
}

/* --- UTILITY SPACING CLASSES (Override, as needed) --- */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-1 { margin-top: 8px!important; }
.mb-1 { margin-bottom: 8px!important; }
.mt-2 { margin-top: 24px!important; }
.mb-2 { margin-bottom: 24px!important; }

/* Keep minimum vertical margin between cards/sections */
.section + .section,
.feature-grid > div + div,
.testimonial-card + .testimonial-card,
.card + .card {
  margin-top: 20px;
}

/* --- SELECT FORM ELEMENTS --- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #231942;
  font-size: 1rem;
  padding: 10px 14px;
  border: 2px solid #9F5F80;
  border-radius: 5px; 
  margin-bottom: 16px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #231942;
  box-shadow: 0 2px 12px rgba(35,25,66,0.10);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar { width: 9px; background: #FFF1E6; }
::-webkit-scrollbar-thumb { background: #9F5F80; border-radius: 5px; }

/* --- GEOMETRIC DECORATIVE SHAPES (if needed) --- */
.feature-grid > div::after {
  content: '';
  display: block;
  width: 22px;
  height: 6px;
  border-radius: 3px;
  background: #9F5F80;
  margin-top: 14px;
  opacity: 0.23;
}

/* --- MISC --- */
:focus-visible {
  outline: 2.5px solid #9F5F80;
  outline-offset: 2px;
}
::selection {
  background: #9F5F80;
  color: #FFF1E6;
}

/* --- ACCESSIBILITY CONTRAST FIX FOR TESTIMONIALS ETC. --- */
.testimonial-card,
.feature-grid > div,
.card {
  background: #fff;
  color: #231942;
} 
.testimonial-card p,
.testimonial-card .testimonial-meta,
.card-content, .feature-item, .feature-grid h3, .feature-grid p,
.card h3, .card p {
  color: #231942 !important;
}
.testimonial-card .testimonial-meta {
  color: #9F5F80 !important;
  font-weight: 900;
}

/* --- END --- */
