/* === STIMMZAUBER AKADEMIE MINIMALIST 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 {
  font-size: 16px;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #283D3B;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #283D3B;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:focus {
  outline: 2px solid #FFBA08;
  outline-offset: 2px;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
  list-style-position: outside;
}
ul li, ol li {
  margin-bottom: 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #283D3B;
  letter-spacing: 0.01em;
  margin-bottom: 0.75em;
  line-height: 1.22;
}
h1 { font-size: 2.5rem; margin-bottom: 0.8em; }
h2 { font-size: 2rem; margin-bottom: 0.7em; }
h3 { font-size: 1.3rem; margin-bottom: 0.6em; }
h4, h5, h6 { font-size: 1.10rem; }

p, address {
  font-size: 1.05rem;
  margin-bottom: 1.25em;
}
strong { font-weight: 700; }

/* === BRAND COLORS === */
:root {
  --primary: #283D3B;
  --secondary: #FFBA08;
  --accent: #FFECCC;
  --text: #283D3B;
  --muted: #4e5c59;
  --light: #fff;
  --border: #ebebeb;
  --shadow: 0 2px 12px rgba(40,61,59,0.07), 0 1.5px 3px rgba(40,61,59,0.03);
}

/* === CONTAINER & STRUCTURE === */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* === HEADER === */
header {
  width: 100%;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 11;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;
  color: var(--text);
  opacity: 0.90;
  padding: 7px 0;
  position: relative;
  transition: color 0.2s, opacity 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
  opacity: 1.0;
}

header img {
  max-height: 40px;
}

.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 12px 32px;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.15s, color 0.15s, box-shadow 0.19s;
  outline: none;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #ffeccc;
  color: var(--primary);
  box-shadow: 0 3px 18px rgba(40,61,59,0.13);
}

.btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--primary);
  color: var(--accent);
  border: none;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 12px 32px;
  margin-left: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.13s, color 0.13s, box-shadow 0.19s;
  outline: none;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #3d5451;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(40,61,59,0.19);
}

/* ==== BURGER MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 2rem;
  margin-left: 10px;
  cursor: pointer;
  z-index: 102;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--secondary);
  outline: 2px solid var(--secondary);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--light);
  box-shadow: 0 10px 30px rgba(40,61,59,0.07);
  z-index: 120;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.48,.53,.38,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  color: var(--secondary);
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 0 4px 0;
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
}

/* === HERO, SECTIONS, TYPOGRAPHY === */
section {
  background: transparent;
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  max-width: 800px;
}

h1, h2, h3 {
  margin-top: 10px;
  margin-bottom: 18px;
}

/* === FLEX CARD & GRID PATTERNS ===  */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--light);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  min-width: 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

/* === COURSE LIST/CARD === */
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.course-item {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
  max-width: 325px;
  flex: 1 0 210px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.course-item:hover,
.course-item:focus-within {
  box-shadow: 0 5px 18px rgba(40,61,59,.12);
  transform: translateY(-6px) scale(1.013);
}
.course-price {
  color: var(--primary);
  background: var(--secondary);
  padding: 6px 16px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 1.05rem;
  align-self: flex-start;
  margin-top: 8px;
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--light);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  font-size: 1.08rem;
  color: #283D3B;
  min-width: 240px;
  max-width: 520px;
  transition: box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 18px rgba(40,61,59,.13);
}
.testimonial-card strong {
  font-weight: 700;
  color: var(--primary);
}

/* === TABLES & FAQ === */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
}
.pricing-table th, .pricing-table td {
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 1.07rem;
  padding: 14px 12px;
}
.pricing-table th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
}
.pricing-table tbody tr:hover {
  background: #FFFBEF;
}

.price-highlights ul {
  list-style: disc outside;
  margin-left: 24px;
  margin-bottom: 16px;
}

/* === FAQ / DL === */
dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 0.2em;
  margin-top: 1.2em;
  font-size: 1.15rem;
}
dd {
  margin-left: 0;
  margin-bottom: 1em;
  color: var(--muted);
  font-size: 1.03rem;
}

/* === TEAM PROFILE === */
.team-profile {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
}

/* === MAP PLACEHOLDER === */
.map-placeholder {
  min-height: 140px;
  background: var(--accent);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* === FOOTER === */
footer {
  background: var(--light);
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 40px 0 30px 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
footer img {
  max-height: 28px;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.75;
  transition: color 0.18s, opacity 0.17s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--secondary);
  opacity: 1.0;
}
.footer-tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.footer-contact address,
.footer-contact p {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer-contact a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact a:hover {
  color: var(--secondary);
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent);
  border-top: 1px solid var(--border);
  box-shadow: 0 -3px 22px rgba(40,61,59,0.07);
  color: var(--primary);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 4000;
  gap: 18px;
  animation: slideInBanner 0.6s cubic-bezier(.48,.53,.38,1);
}
@keyframes slideInBanner {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 6px;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border: none;
  background: var(--primary);
  color: var(--accent);
  margin-right: 10px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #3d5451;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #FFD860;
  color: #283D3B;
}
.cookie-btn.settings {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 9px 17px;
  box-shadow: none;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--primary);
  color: #fff;
}

/* === Cookie Modal === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40,61,59,0.08);
  z-index: 4100;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(40,61,59,0.10);
  padding: 32px 26px;
  max-width: 350px;
  width: 94vw;
  color: #283D3B;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: slideInModal 0.41s cubic-bezier(.48,.53,.38,1);
}
@keyframes slideInModal {
  from { transform: translateY(32px) scale(0.96); opacity:0.6; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--secondary);
  width: 18px; height: 18px;
  margin-right: 5px;
}
.cookie-category-essential {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.06rem;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-btn {
  position: absolute;
  right: 12px; top: 13px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal .close-btn:hover,
.cookie-modal .close-btn:focus {
  color: var(--secondary);
}


/* === GENERIC SPACING, CARDS, FLEX REMINDER ===*/
.content-wrapper > *+* {
  margin-top: 0px;
}
.card + .card, .course-item + .course-item, .testimonial-card + .testimonial-card {
  margin-top: 0;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1180px) {
  .container {
    max-width: 95vw;
    padding: 0 14px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.12rem; }
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: auto;
    margin-right: 10px;
  }
  header .container {
    flex-direction: row;
    gap: 6px;
    min-height: 64px;
  }
  .container {
    padding: 0 8px;
  }
  .card-container, .course-list, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  section, .section {
    padding: 28px 6px;
    margin-bottom: 32px;
  }
  .testimonial-card, .course-item, .card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature-item {
    gap: 9px;
  }
  footer {
    padding: 30px 0 20px 0;
  }
  .footer-contact address, .footer-contact p {
    font-size: 0.93rem;
  }
}
@media (max-width: 490px) {
  .cookie-modal { padding: 18px 6px; }
}

/* === MICRO-INTERACTIONS & TRANSITIONS === */
button, a.btn-primary, a.btn-secondary, .course-item, .testimonial-card, .card {
  transition: box-shadow 0.18s, transform 0.15s, background 0.18s, color 0.14s;
}
button:active, a.btn-primary:active, a.btn-secondary:active {
  transform: scale(0.98);
}

/* === FOCUS STATES === */
.btn-primary:focus, .btn-secondary:focus, .course-item:focus-within, .cookie-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* === UTILITY CLASSES === */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }

/* === END STIMMZAUBER AKADEMIE MINIMALIST CSS === */
