/* --- CSS RESET & NORMALIZATION --- */
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;
}
article, aside, details, figcaption, figure,  
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAF6F2;
  color: #232C3C;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}
input, textarea, select {
  font-family: inherit;
  font-size: 100%;
}

/* ----------- BRAND COLOR PALETTE (WARM_FRIENDLY + BRAND) ----------- */
:root {
  --color-primary: #232C3C;
  --color-secondary: #8DA1B9;
  --color-accent: #EDEDED;
  --color-warm-bg: #FFF7F2;
  --color-warm-orange: #F9A174;
  --color-warm-yellow: #FFD072;
  --color-warm-rose: #F2B8B1;
  --color-card-bg: #FFF9F5;
  --color-cta: #F78670;
  --color-cta-hover: #EA6B4B;
  --color-footer: #232C3C;
  --color-footer-accent: #FFF7F2;
  --shadow-card: 0 4px 24px rgba(241, 153, 77, 0.07), 0 1.5px 6px rgba(150,40,27,0.03);
  --shadow-header: 0 2px 12px rgba(149, 96, 44, 0.05);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

/* ----------- TYPOGRAPHY ----------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.25;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
p, li, label, span {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.35rem;
  }
}

/* ----------- LAYOUT CONTAINERS + FLEXBOX ----------- */
.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 28px 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 260px;
  transition: box-shadow 0.17s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(241, 153, 77, 0.11), 0 2px 10px rgba(150,40,27,0.03);
}

.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;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fffbe9;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 32px rgba(249,161,116,0.11), 0 2px 6px rgba(150,40,27,0.05);
  border-left: 6px solid var(--color-warm-orange);
}
.testimonial-card p {
  color: #53341a;
  font-weight: 500;
}
.testimonial-details span {
  color: var(--color-primary);
  font-size: 1.05rem;
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 195px;
  background: var(--color-warm-bg);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  padding: 26px 18px 20px 18px;
  margin-bottom: 20px;
  gap: 12px;
  transition: box-shadow 0.2s, background 0.17s;
}
.feature-grid li img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.feature-grid li:hover {
  background: #ffe3d0;
  box-shadow: 0 8px 32px rgba(241, 153, 77, 0.13), 0 2px 12px rgba(150,40,27,0.03);
}

/* --- Responsive behavior, flex to column under 800px --- */
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li {
    min-width: 0;
    width: 100%;
  }
}

/* ----------- HEADER & NAVIGATION ----------- */
header {
  background: #fff;
  box-shadow: var(--shadow-header);
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px 12px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.13s, color 0.12s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-warm-yellow);
  color: var(--color-warm-orange);
}
.cta.primary {
  background: var(--color-cta);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 20px;
  box-shadow: 0 2px 12px rgba(247, 134, 112, 0.09);
  border: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-cta-hover);
  box-shadow: 0 6px 32px rgba(247, 134, 112, 0.23);
  transform: translateY(-2px) scale(1.035);
}
header img {
  height: 42px;
  width: auto;
  margin-right: 12px;
  border-radius: 0;
}

/* --- Mobile burger menu --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-warm-orange);
  color: #fff;
  font-size: 2.2rem;
  padding: 4px 16px;
  border-radius: var(--radius-md);
  border: none;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 110;
  line-height: 1;
}
.mobile-menu-toggle:hover {
  background: var(--color-warm-yellow);
  color: var(--color-primary);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 4px;
  }
}

/* --- Mobile menu overlay --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(252,246,237, 0.98);
  box-shadow: -2px 0 18px rgba(241, 153, 77, 0.13);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.52,.31,.32,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.5rem;
  color: var(--color-warm-orange);
  background: none;
  border: none;
  margin: 28px 0 24px 22px;
  cursor: pointer;
  align-self: flex-start;
  transition: color .16s;
}
.mobile-menu-close:hover {
  color: var(--color-warm-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-left: 30px;
}
.mobile-nav a {
  padding: 15px 0;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-warm-yellow);
  color: var(--color-warm-orange);
  padding-left: 10px;
}

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

/* --- HERO STYLES --- */
.hero, .about-hero, .tour-hero, .concepts-hero, .analysen-hero, .workshops-hero, .contact-hero, .thankyou {
  background: linear-gradient(110deg, var(--color-warm-bg) 90%, #FFE3D0 100%);
  margin-bottom: 60px;
  padding: 54px 0 54px 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-height: 340px;
}
.hero .container, .about-hero .container, .tour-hero .container, .concepts-hero .container,
.analysen-hero .container, .workshops-hero .container, .contact-hero .container, .thankyou .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper, .about-hero .content-wrapper, .tour-hero .content-wrapper, .concepts-hero .content-wrapper,
.analysen-hero .content-wrapper, .workshops-hero .content-wrapper, .contact-hero .content-wrapper, .thankyou .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1, .about-hero h1, .tour-hero h1, .concepts-hero h1,
.analysen-hero h1, .workshops-hero h1, .contact-hero h1, .thankyou h1 {
  color: var(--color-warm-orange);
  font-weight: 900;
}
.hero p, .about-hero p, .tour-hero p, .concepts-hero p, .analysen-hero p, .workshops-hero p, .contact-hero p, .thankyou p {
  font-size: 1.18rem;
  color: var(--color-primary);
  font-weight: 400;
}

@media (max-width:768px) {
  .hero, .about-hero, .tour-hero, .concepts-hero, .analysen-hero, .workshops-hero, .contact-hero, .thankyou {
    padding: 36px 0 36px 0;
    min-height: 210px;
    margin-bottom: 30px;
  }
  .hero .content-wrapper, .about-hero .content-wrapper, .tour-hero .content-wrapper {
    gap: 11px;
  }
}

/* ----------- SECTION & CARD-LIKE SECTIONS ----------- */
.about-home, .services-home, .about-story, .about-features, .concepts-services, .concepts-features,
.analysen-services, .analysen-features, .workshops-overview, .workshops-features, .cookie-policy, .privacy-overview, .gdpr-overview, .terms-usage, .thankyou {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

section:not(.hero):not(.about-hero):not(.tour-hero):not(.concepts-hero):not(.analysen-hero):not(.workshops-hero):not(.contact-hero):not(.thankyou) {
  margin-bottom: 60px;
  padding: 38px 18px 32px 18px;
}
@media (max-width: 768px) {
  section:not(.hero):not(.about-hero):not(.tour-hero):not(.concepts-hero):not(.analysen-hero):not(.workshops-hero):not(.contact-hero):not(.thankyou) {
    margin-bottom: 32px;
    padding: 18px 6px 18px 6px;
  }
}

/* ----------- CTA BUTTONS ----------- */
.cta, a.cta {
  background: var(--color-cta);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(247, 134, 112, 0.14);
  border: none;
  transition: background 0.17s, box-shadow 0.17s, transform 0.14s;
  cursor: pointer;
  outline: none;
  margin-top: 18px;
  display: inline-block;
}
.cta:hover, .cta:focus, a.cta:hover, a.cta:focus {
  background: var(--color-cta-hover);
  color: #fff;
  box-shadow: 0 8px 28px rgba(247, 134, 112, 0.21);
  transform: translateY(-2px) scale(1.025);
}

/* ----------- LISTS ----------- */
ul, ol {
  margin-left: 18px;
  margin-bottom: 15px;
}
.features ul, .about-features ul, .about-story ul, .services-home ul, .concepts-services ul,
.concepts-features ul, .analysen-services ul,.analysen-features ul, .workshops-overview ul, .workshops-features ul {
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.features ul li, .about-features ul li, .about-story ul li, .services-home ul li, .concepts-services ul li,
.concepts-features ul li, .analysen-services ul li,.analysen-features ul li, .workshops-overview ul li, .workshops-features ul li {
  margin-bottom: 13px;
}

/* ----------- TESTIMONIALS ----------- */
.testimonials {
  background: linear-gradient(110deg,#fffbe9 80%,#ffeede 100%);
  border-radius: var(--radius-lg);
  padding: 38px 22px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-card);
}
.testimonials h2 {
  color: var(--color-warm-orange);
  margin-bottom: 18px;
}
.testimonials .content-wrapper {
  gap: 14px;
}
.testimonial-card {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 21px 6px;
    margin-bottom: 36px;
  }
}

/* ----------- CONTACT SECTIONS --- */
.contact-details, .contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.contact-details img, .contact-list img {
  width: 22px;
  margin-bottom: -4px;
  margin-right: 7px;
  vertical-align: middle;
}
.contact-details span, .contact-list span {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  margin-bottom: 4px;
  display: inline-block;
}

/* ----------- FOOTER ----------- */
footer {
  background: var(--color-footer);
  color: var(--color-footer-accent);
  padding: 32px 0 20px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer img {
  height: 34px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 16px 0 8px 0;
  justify-content: center;
}
.footer-nav a {
  color: var(--color-footer-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--color-warm-orange);
  color: #fff;
}
.footer-contact {
  color: #e3dcd2;
  font-size: 0.97rem;
  margin-top: 6px;
  text-align: center;
}
@media (max-width: 700px) {
  footer .container {
    gap: 8px;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.95rem;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fffbe9;
  border-top: 4px solid var(--color-warm-orange);
  box-shadow: 0 -4px 16px rgba(249, 161, 116, 0.07);
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 20px 16px;
  font-size: 1rem;
  animation: banner-slide-in 0.35s cubic-bezier(.51,.31,.31,1);
}
.cookie-consent-banner p {
  color: #54421a;
  margin: 0 10px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--color-warm-orange);
  color: #fff;
  border-radius: var(--radius-md);
  border: none;
  padding: 10px 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.13s;
  box-shadow: 0 1.5px 6px rgba(241, 153, 77, 0.09);
}
.cookie-btn.reject {
  background: var(--color-warm-rose);
  color: var(--color-primary);
}
.cookie-btn:hover, .cookie-settings-btn:hover, .cookie-btn.reject:hover {
  background: var(--color-warm-yellow);
  color: var(--color-primary);
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@keyframes banner-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,44,60,0.57);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: modal-fade-in 0.38s cubic-bezier(.42,.31,.21,1);
}
.cookie-modal-content {
  background: #fffbe9;
  box-shadow: 0 6px 28px rgba(241, 153, 77, 0.22), 0 2px 8px rgba(150,40,27,0.09);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  max-width: 445px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-size: 1rem;
}
.cookie-modal-content h2 {
  color: var(--color-warm-orange);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.cookie-modal-content input[type=checkbox] {
  width: 18px; height: 18px;
  accent-color: var(--color-warm-orange);
  margin-right: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 19px; right: 19px;
  font-size: 1.9rem;
  color: var(--color-warm-orange);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: color 0.14s;
}
.cookie-modal-close:hover { color: var(--color-warm-yellow); }
@keyframes modal-fade-in {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* --- MISC / MICRO-INTERACTIONS --- */
a, button {
  transition: color 0.13s, background 0.15s, box-shadow 0.15s, border 0.11s, transform 0.12s;
}
.card, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.18s, background 0.14s, transform 0.14s;
}
.card:active, .feature-grid li:active, .testimonial-card:active {
  transform: scale(0.98) translateY(2px);
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-warm-yellow);
}

/* ----------- CUSTOM UTILITIES ----------- */
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow-card { box-shadow: var(--shadow-card); }
.bg-warm { background: var(--color-warm-bg); }

/* ----------- RESPONSIVE ADJUSTMENTS ----------- */
@media (max-width: 700px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 8px;
  }
  footer {
    padding: 18px 0 12px 0;
    margin-top: 18px;
  }
}

/* ----------- ACCENT TEXT COLOR AND SELECTION ----------- */
::selection {
  background: var(--color-warm-orange);
  color: #fff;
}

/* ----------- UTILITY: HIDE ON MOBILE ----------- */
.hide-mobile { display: block !important; }
@media (max-width: 700px) {
  .hide-mobile { display: none !important; }
}

/* ----------- UTILITY: VISIBLY FOCUSABLE ----------- */
:focus-visible {
  outline: 2px solid var(--color-warm-orange) !important;
  outline-offset: 2px !important;
}

/* ----------- END OF STYLE.CSS ----------- */
