/* Bliss Burst Redekunst – Minimalist Flexbox CSS Theme */
/* ==== 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;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1E375A;
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background-color: #F5F7FA;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:focus, a:hover { color: #1E375A; outline: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }
button { background: none; border: none; cursor: pointer; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid #1E375A; outline-offset: 2px; }

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1E375A;
  margin-bottom: 12px;
  line-height: 1.22;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; }

p, li, span, strong {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1E375A;
}
strong { font-weight: 700; }

.section h2, .section h1, .content-wrapper h2, .content-wrapper h1 {
  letter-spacing: -0.5px;
  margin-top: 0;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(30,55,90,0.05);
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .section { padding: 32px 8px; margin-bottom: 40px; }
}

/* ==== FLEXBOX LAYOUT GROUPS ==== */
.feature-grid,
.service-list,
.service-cards,
.course-list,
.benefit-list,
.key-benefits,
.feature-list,
.method-list,
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li,
.service-list > .service-teaser,
.service-cards > .service-teaser,
.course-list > .service-teaser,
.method-list li,
.benefit-list li,
.key-benefits li,
.feature-list li,
.post
{
  flex: 1 1 calc(50% - 24px);
  min-width: 220px;
}
@media (max-width: 700px) {
  .feature-grid,
  .service-list,
  .service-cards,
  .course-list,
  .benefit-list,
  .key-benefits,
  .feature-list,
  .method-list,
  .post-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li,
  .service-list > .service-teaser,
  .service-cards > .service-teaser,
  .course-list > .service-teaser,
  .method-list li,
  .benefit-list li,
  .key-benefits li,
  .feature-list li,
  .post {
    min-width: unset;
    flex: 1 1 100%;
  }
}

/* ==== CARDS & REPEATERS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30,55,90,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(30,55,90,0.09);
}

/* ==== HERO / CTA ==== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 48px;
  padding: 0.8em 2.2em;
  min-width: 170px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30,55,90,0.07);
  margin-top: 8px;
  margin-bottom: 8px;
}
.cta.primary {
  background: #1E375A;
  color: #fff;
  border: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #E6C31B;
  color: #1E375A;
  box-shadow: 0 4px 24px rgba(30,55,90,0.13);
  transform: translateY(-3px) scale(1.035);
}
.cta.secondary {
  background: #E6C31B;
  color: #1E375A;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #1E375A;
  color: #fff;
  box-shadow: 0 3px 16px rgba(30,55,90,0.10);
  transform: translateY(-2px) scale(1.03);
}

/* ==== SERVICE & BLOG SECTIONS ==== */
.service-teaser, .post, .featured-post {
  background: #F5F7FA;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(30,55,90,0.04);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, background 0.18s;
}
.service-teaser:hover, .post:hover {
  background: #fffbe6;
  box-shadow: 0 3px 20px rgba(230,195,27,0.13);
}
.price {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 14px;
  color: #E6C31B;
  font-family: 'Montserrat', Arial, sans-serif;
}
.featured-post {
  background: #fffbe6;
  margin-top: 28px;
  border-left: 6px solid #E6C31B;
  box-shadow: 0 1px 14px rgba(230, 195, 27, 0.07);
}

/* ==== TESTIMONIALS ==== */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(30,55,90,0.05);
  min-width: 260px;
  transition: box-shadow 0.15s, background 0.14s;
  font-size: 1.10rem;
  color: #212d3b;
}
.testimonial-card p {
  color: #212d3b;
  margin-bottom: 0;
  font-size: 1.06rem;
  letter-spacing: -0.1px;
}
.testimonial-card strong {
  color: #1E375A;
  font-weight: 600;
  font-size: 0.98rem;
}
.testimonial-card:hover {
  background: #F5F7FA;
  box-shadow: 0 3px 18px rgba(30,55,90,0.12);
}
@media (max-width: 700px) {
  .testimonial-slider,.testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==== NAVIGATION ==== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(30,55,90,0.03);
  position: sticky;
  top: 0;
  z-index: 1100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0px;
  max-width: 1200px;
  margin: 0 auto;
}
.main-nav > a > img {
  height: 44px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 24px;
  transition: background 0.18s, color 0.16s;
  color: #1E375A;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #E6C31B;
  color: #1E375A;
}
.main-nav .cta.primary {
  margin-left: 16px;
}
/* Hide hamburger on desktop */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1020px) {
  .main-nav { padding: 16px 0; }
  .main-nav ul { gap: 12px; }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: #1E375A;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-right: 8px;
    border: none;
    position: absolute;
    top: 22px;
    right: 20px;
    z-index: 1120;
    transition: background 0.15s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #E6C31B;
    color: #1E375A;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,55,90,0.96);
  z-index: 1200;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.30s cubic-bezier(.35,.9,.33,1.45), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  color: #E6C31B;
  background: none;
  font-size: 2.0rem;
  border: none;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 1220;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 40px;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  padding: 16px 0 10px 8px;
  border-radius: 6px;
  transition: background 0.13s, color 0.14s;
  min-width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6C31B;
  color: #1E375A;
}

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

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 1px solid #f0f1f3;
  padding: 34px 0 24px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #535d6c;
  padding: 3px 10px;
  border-radius: 8px;
  transition: background 0.18s;
}
.footer-nav a:hover {
  color: #1E375A;
  background: #E6C31B;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 0.97rem;
  margin-bottom: 16px;
  color: #7c879a;
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.footer-logo img {
  height: 44px;
}
@media (max-width: 700px) {
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 9px;
    text-align: center;
  }
  .footer-logo img { height: 42px; }
}

/* ==== UTILITY CLASSES ==== */
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-20 { gap: 20px !important; }

/* ==== CUSTOM LISTS / ICONS ==== */
.feature-grid li, .method-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  background: #f9fafb;
  padding: 16px 14px;
  border-radius: 12px;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(30,55,90,0.03);
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-grid li img, .method-list li img {
  width: 28px;
  height: 28px;
}

/* ==== SPACING ==== */
.service-list, .service-cards, .course-list { gap: 24px; }
.post-list, .testimonial-slider, .testimonial-list { gap: 24px; }
.section:not(:last-child) { margin-bottom: 60px !important; }
@media (max-width: 700px) {
  .section:not(:last-child) { margin-bottom: 38px !important; }
}

/* ==== CONTENT GRID ==== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.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; }
}

/* ==== FEATURED PROMO ITEM ==== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F7FA;
  border-radius: 12px;
  padding: 18px 13px;
}

/* ==== MICRO-INTERACTIONS ==== */
button, .cta, .main-nav ul li a, .mobile-nav a, .service-teaser, .post, .testimonial-card {
  transition-duration: 0.18s;
  transition-timing-function: cubic-bezier(0.4,0.0,0.2,1);
}

/* ==== FORM ELEMENTS ==== */
input, textarea, select {
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid #e0e4ea;
  background: #f5f7fa;
  margin-bottom: 16px;
  width: 100%;
  font-size: 1rem;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #E6C31B;
  outline: none;
}
label { font-size: 1rem; font-weight: 500; display: block; margin-bottom: 6px; color: #35505c; }

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-banner.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-banner-inner {
  background: #fff;
  color: #1E375A;
  border-radius: 18px 18px 0 0;
  padding: 26px 32px 22px 32px;
  box-shadow: 0 -4px 32px rgba(30,55,90,0.12);
  max-width: 420px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
  align-items: flex-start;
}
.cookie-banner-inner p { font-size: 0.98rem; margin-bottom: 0; }
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 0.66em 1.7em;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  box-shadow: 0 1px 6px rgba(30,55,90,0.06);
}
.cookie-btn.accept {
  background: #1E375A;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #E6C31B;
  color: #1E375A;
}
.cookie-btn.reject {
  background: #E6C31B;
  color: #1E375A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #1E375A;
  color: #fff;
}
.cookie-btn.settings {
  background: #F5F7FA;
  color: #1E375A;
  border: 1px solid #E6C31B;
  font-weight: 500;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E6C31B;
  color: #1E375A;
  border-color: #1E375A;
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,55,90,0.78);
  z-index: 10010;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 44px 40px 32px 40px;
  box-shadow: 0 8px 52px rgba(30,55,90,0.19);
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cookie-modal-category label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  color: #1E375A;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  border-radius: 16px;
  background: #e3e4e7;
  position: relative;
  transition: background 0.2s;
  outline: none;
  cursor: pointer;
}
.cookie-toggle:checked { background: #E6C31B; }
.cookie-toggle::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.18s, background 0.18s;
  box-shadow: 0 1px 6px rgba(30,55,90,0.06);
}
.cookie-toggle:checked::before { left: 22px; background: #fff1b0; }
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 2rem;
  background: none;
  color: #1E375A;
  border: none;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #E6C31B;
}

@media (max-width: 480px) {
  .cookie-modal { padding: 32px 9vw 22px 9vw; max-width: 98vw; }
  .cookie-banner-inner { padding: 18px 8px 14px 8px; }
}

/* ==== RESPONSIVE ELEMENTS ==== */
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.08rem; }
  .cta { font-size: 0.97rem; padding: 0.8em 1.3em; }
  .main-nav > a > img, .footer-logo img { height: 36px; }
}

/* ==== END OF STYLES ==== */
