/* ========================== CSS RESET & NORMALIZE ======================== */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd { margin: 0; padding: 0; font-weight: normal; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; border: 0; }
button, input, select, textarea { font: inherit; background: none; border: none; outline: none; }
body { min-height: 100vh; }

/* ========================== VARIABLES & FONT IMPORTS ======================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
:root {
  --primary: #1A2C50;
  --primary-80: #253c6b;
  --secondary: #F7B32B;
  --accent: #FFFFFF;
  --gray-50: #F4F5F7;
  --gray-100: #E8EBEF;
  --gray-200: #D3D8E0;
  --gray-300: #B0B7CB;
  --gray-500: #697494;
  --gray-800: #2D3447;
  --shadow: 0 1px 6px 0 rgba(26,44,80,.08), 0 1.5px 10px 0 rgba(26,44,80,.07);
  --radius: 12px;
}

/* ========================== BASE TYPOGRAPHY ======================== */
body {
  background: var(--gray-50);
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
.subheadline { font-size: 1.25rem; margin-bottom: 24px; color: var(--gray-800); font-weight: 500; }
p { margin-bottom: 16px; color: var(--gray-800); }
strong { font-weight: 700; color: var(--primary-80); }
blockquote {
  quotes: '“' '”' '‘' '’';
  font-style: italic;
  color: var(--primary-80);
  font-size: 1.125rem;
  margin: 0 0 12px 0;
  padding: 0;
}

/* ========================== GLOBAL LAYOUT CONTAINERS ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
}

/* ========================== HEADER, DESKTOP / MOBILE NAV ==================== */
header {
  background: var(--accent);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1002;
  box-shadow: 0 2px 16px -6px #1A2C5055;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 12px;
}
.desktop-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  color: var(--primary-80);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
  padding: 6px 0;
  position: relative;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--secondary);
}
.cta-btn {
  background: var(--primary);
  color: var(--accent);
  border-radius: 22px;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px -8px #1A2C5033;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  outline: none;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 8px 0 #F7B32B33;
}

/* Hamburger Button Styles */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  border-radius: 7px;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  color: var(--primary);
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #F7B32B29;
  z-index: 1003;
  border: 0;
  transition: background 0.15s, color .15s;
}
.mobile-menu-toggle:active {
  background: var(--primary-80);
  color: var(--secondary);
}

/* ========================== MOBILE MENU ==================== */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.81,.39,.19,.84);
  z-index: 1200;
  padding-top: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.975;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 7px;
  border: none;
  align-self: flex-end;
  margin: 24px 28px 8px 0;
  cursor: pointer;
  box-shadow: 0 2px 8px #F7B32B20;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--primary-80);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 36px 0 0 40px;
  width: 80vw;
  max-width: 350px;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.16s;
  border-radius: 8px;
  padding: 8px 10px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Hide desktop nav & show burger on mobile */
@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: flex !important; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ======================== SECTION PADDING & FLEX PATTERNS ================ */
main {
  margin-top: 0;
  min-height: 60vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 600px) {
  section { padding: 28px 8px; }
}
.hero {
  background: linear-gradient(90deg, #F4F5F7 0%, #FFFFFF 85%);
  box-shadow: 0 1.5px 12px -2px #69749419;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-200);
}

.features {
  background: var(--gray-50);
  border: none;
  box-shadow: none;
}

.cta {
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cta h2 { color: var(--accent); }
.cta p { color: var(--accent); }

/* Card and Flex Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .container {
    padding-left: 6px; padding-right: 6px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px #1A2C5022;
  margin-bottom: 24px;
  margin-top: 6px;
  min-width: 0;
}
.testimonial-card blockquote { color: var(--primary); }
.testimonial-card span {
  color: var(--gray-500);
  font-size: 1rem;
  font-weight: 500;
}

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

/* ======================== VARIOUS FEATURE GRIDS & LISTS ================= */
.feature-grid, .usp-list, .event-type-grid, .blog-teaser-list, .trend-highlights, .service-overview, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 36px;
  justify-content: flex-start;
  margin: 16px 0 0 0;
}
.feature-grid li, .usp-list li, .event-type-grid li, .blog-teaser-list li, .trend-highlights li, .service-overview li, .service-list li {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px 16px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
  transition: box-shadow .16s, transform .12s;
}
.feature-grid li img,
.usp-list li img,
.event-type-grid li img,
.trend-highlights li img,
.service-list li img {
  height: 36px;
  width: 36px;
  margin-bottom: 10px;
}
.feature-grid li:hover, .usp-list li:hover,
.event-type-grid li:hover,
.service-list li:hover {
  box-shadow: 0 10px 40px -14px #1A2C501a;
  transform: translateY(-2px) scale(1.015);
}
@media (max-width: 900px) {
  .feature-grid, .usp-list, .event-type-grid, .blog-teaser-list, .trend-highlights, .service-overview, .service-list {
    gap: 18px 0;
  }
}
@media (max-width: 600px) {
  .feature-grid, .usp-list, .event-type-grid, .blog-teaser-list, .trend-highlights, .service-overview, .service-list {
    flex-direction: column;
  }
  .feature-grid li, .usp-list li, .event-type-grid li,
  .service-list li, .trend-highlights li, .service-overview li {
    min-width: 160px;
    width: 99%;
  }
}

.trend-highlights li {
  background: var(--gray-100);
  color: var(--primary-80);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: none;
  padding: 14px 14px 14px 18px;
  min-width: unset;
  flex: 0 1 160px;
}

.blog-teaser-list li strong { font-size: 1.1rem; margin-bottom: 8px; }

/* Price tag styles (services page) */
.price {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 2px 10px;
  margin-left: 12px;
}

/* Step List (Festivals & Kontakt) */
ol {
  margin: 8px 0 24px 18px;
  color: var(--gray-800);
  font-size: 1rem;
}
ol li {
  margin-bottom: 12px;
}

/* ======================== DETAILED SERVICES, HOW-WE-WORK ================= */
.detailed-services, .how-we-work-steps {
  margin-top: 32px;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 18px 18px 15px 22px;
  box-shadow: 0 2px 8px #1A2C5020;
}
.how-we-work-steps h3, .detailed-services h3 {
  color: var(--primary-80);
  font-weight: 700;
  margin-bottom: 12px;
}

/* ========================== TEXT SECTION / CONTENT STYLE ================== */
.text-section {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.text-section ul, .text-section ol {
  margin: 0 0 16px 24px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

/* ========================== FOOTER =============================== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 36px 0 16px 0;
  border-top: 2.5px solid var(--secondary);
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
.contact-information {
  font-size: 0.98rem;
  color: var(--gray-100);
  margin-top: 2px;
}
.contact-information a {
  color: var(--secondary);
  text-decoration: underline dotted;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 2px;
}
.social-links img {
  width: 32px;
  height: 32px;
  opacity: 0.83;
  transition: opacity 0.2s;
}
.social-links img:hover { opacity: 1; }
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ========================== FORM ELEMENTS =================== */
textarea, input, select {
  border-radius: 8px;
  border: 1.5px solid var(--gray-300);
  padding: 10px 14px;
  font-size: 1rem;
  color: var(--primary-80);
  background: var(--gray-50);
  margin-bottom: 14px;
  transition: border-color .14s;
}
textarea:focus, input:focus, select:focus {
  border-color: var(--primary);
}

/* ======================= COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(80px);
  width: 96vw;
  max-width: 420px;
  background: #fff;
  color: var(--primary-80);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 16px -4px #1A2C5022;
  padding: 30px 24px 22px 24px;
  z-index: 1800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s, transform 0.34s cubic-bezier(.73,.21,.27,.84);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn,
.cookie-banner .cookie-settings-btn {
  padding: 9px 22px;
  border-radius: 22px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.12s;
  outline: none;
}
.cookie-banner .cookie-btn.accept {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .cookie-btn.accept:hover { background: var(--secondary); color: var(--primary); }
.cookie-banner .cookie-btn.reject {
  background: var(--gray-200);
  color: var(--primary-80);
}
.cookie-banner .cookie-btn.reject:hover { background: var(--primary-80); color: #fff; }
.cookie-banner .cookie-settings-btn {
  background: none;
  color: var(--primary-80);
  text-decoration: underline;
  padding: 7px 10px;
}
.cookie-banner .cookie-settings-btn:hover {
  color: var(--secondary);
}

/* ================== COOKIE MODAL ==================== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -44%) scale(0.98);
  z-index: 1900;
  background: #fff;
  color: var(--primary-80);
  border-radius: 18px;
  box-shadow: 0 2px 44px -10px #1A2C5038, 0 6px 24px 0 #6974940b;
  max-width: 440px;
  width: 96vw;
  padding: 26px 26px 22px 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s, transform .32s cubic-bezier(.79,.14,.21,.84);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 { font-size: 1.5rem; margin-bottom: 8px; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1.06rem;
}
.cookie-category:last-child { border-bottom: 0; }
.cookie-category .category-info { flex: 1; }
.cookie-category .toggle {
  position: relative;
  width: 36px;
  height: 20px;
  background: var(--gray-200);
  border-radius: 10px;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.cookie-category .toggle:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gray-500);
  transition: left 0.18s, background .16s;
}
.cookie-category input:checked+.toggle {
  background: var(--secondary);
}
.cookie-category input:checked+.toggle:before {
  background: var(--primary);
  left: 19px;
}
.cookie-modal .close-modal {
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.25rem;
  border-radius: 8px;
  border: none;
  padding: 6px 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal .close-modal:hover {
  background: var(--primary-80); color: #fff;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  border-radius: 18px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 1rem;
  background: var(--primary);
  color: var(--accent);
  border: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .modal-actions button:last-child {
  background: var(--secondary); color: var(--primary); }
.cookie-modal .modal-actions button:hover {
  filter: brightness(1.08);
}

/* ========================== RESPONSIVE TYPOGRAPHY ========================== */
@media (max-width: 1130px) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.11rem; }
  .subheadline { font-size: 1.05rem; }
}

/* ========================== MICRO-INTERACTIONS & TRANSITIONS =============== */
a, button, .cta-btn, .cookie-btn { transition: color 0.14s, background 0.16s, box-shadow 0.14s; }

/* ========================== SCROLLBAR STYLES (modern browsers) ============= */
::-webkit-scrollbar { width: 10px; background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 6px; }

/* ========================== UTILITY STYLES ========================== */
.hide { display: none !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* Fix overflow for mobile menu/modal on small screens */
@media (max-width: 480px) {
  .cookie-modal, .cookie-banner { max-width: 99vw; padding: 16px 5vw; }
  .mobile-nav { margin-left: 14px; }
}

/* ========================== Z-INDEXES ============================== */
.mobile-menu { z-index: 1200; }
.mobile-menu-toggle { z-index: 1201; }
.cookie-banner { z-index: 1800; }
.cookie-modal { z-index: 1900; }
header { z-index: 1002; }

/* min-height fix for mobile browser bars */
html, body { min-height: 100%; }

/* ========================== END =============================== */
