/* ------------------------------
   Lumen Vertex Scandinavian Clean
   Complete Responsive Site Styles
   ONLY FLEXBOX used for layouts
-------------------------------*/

/* =====================
   1. 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,main,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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F7F8FA;
  color: #22304A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
input,button,select,textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button { background: none; border: none; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style-position: inside; }
ul li, ol li { margin-bottom: 8px; }

/* =====================
   2. CUSTOM PROPERTIES
   ===================== */
:root {
  --lv-primary: #30427B;
  --lv-secondary: #1B263B;
  --lv-accent: #FFD966;
  --lv-bg: #F7F8FA;
  --lv-bg-light: #FFFFFF;
  --lv-text: #22304A;
  --lv-muted: #6F7A92;
  --lv-border: #E3E7F0;
  --lv-shadow: 0 2px 16px 0 rgba(48,66,123,0.06);
  --lv-radius: 12px;
}

/* =====================
   3. TYPOGRAPHY
   ===================== */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--lv-secondary);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--lv-text);
  margin-bottom: 16px;
}
strong { font-weight: 600; }
address {
  font-style: normal;
  color: var(--lv-muted);
  margin-bottom: 12px;
}

/* =====================
   4. UTILITIES & CLASSES
   ===================== */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: none;
}
.text-section {
  max-width: 760px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--lv-bg-light);
  border-radius: var(--lv-radius);
  box-shadow: var(--lv-shadow);
  padding: 32px 24px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(27,38,59,0.14);
  transform: translateY(-4px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--lv-bg-light);
  border-left: 5px solid var(--lv-accent);
  box-shadow: var(--lv-shadow);
  padding: 20px;
  border-radius: var(--lv-radius);
  margin-bottom: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(27,38,59,0.10);
  border-left: 6px solid var(--lv-primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.map-placeholder {
  border-radius: var(--lv-radius);
  background: var(--lv-border);
  color: var(--lv-muted);
  text-align: center;
  padding: 20px;
  font-style: italic;
  margin-top: 10px;
}

/* =====================
   5. HEADER & NAVIGATION
   ===================== */
header {
  width: 100%;
  background: var(--lv-bg-light);
  box-shadow: 0 1px 12px 0 rgba(48,66,123,0.07);
  padding-top: 18px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header img {
  height: 38px;
  width: auto;
  margin-right: 32px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  padding: 5px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--lv-secondary);
  transition: color 0.17s, border-bottom 0.18s;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a:focus {
  color: var(--lv-primary);
  border-bottom: 2px solid var(--lv-accent);
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 11px 28px;
  min-width: 120px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 8px;
  border: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
  text-align: center;
  box-shadow: 0 2px 10px rgba(48,66,123,0.04);
  cursor: pointer;
}
.btn-primary {
  color: var(--lv-secondary);
  background: var(--lv-accent);
  box-shadow: 0 2px 12px rgba(48,66,123,0.07);
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFEFA0;
  color: var(--lv-primary);
  box-shadow: 0 6px 16px 0 rgba(27,38,59,0.17);
}
.btn-secondary {
  color: var(--lv-primary);
  background: var(--lv-bg-light);
  border: 2px solid var(--lv-primary);
  margin-left: 12px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--lv-primary);
  color: #fff;
  border-color: var(--lv-secondary);
}

/* Mobile burger button */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 1001;
  font-size: 2rem;
  color: var(--lv-primary);
  background: var(--lv-bg-light);
  border-radius: 6px;
  box-shadow: 0 2px 8px 0 rgba(27,38,59,0.05);
  display: none;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border: none;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--lv-accent);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,38,59,0.75);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.25s, transform 0.34s cubic-bezier(.57,.21,.69,1.25);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--lv-accent);
  font-size: 2.1rem;
  align-self: flex-end;
  background: none;
  border: none;
  margin: 22px 32px 0 0;
  cursor: pointer;
  z-index: 21;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: rgba(27,38,59,0.03);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 54px;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0;
  transition: color 0.18s, background 0.12s;
  border-radius: 6px;
  width: 210px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--lv-accent);
  color: var(--lv-secondary);
}

/* =====================
   6. HERO & HIGHLIGHTS
   ===================== */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
#workshop-highlights .feature-grid,
#all-workshops .feature-grid,
#coaching-services .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 30px;
  justify-content: flex-start;
}
#workshop-highlights .feature-grid > div,
#all-workshops .feature-grid > div,
#coaching-services .feature-grid > div {
  background: var(--lv-bg-light);
  border: 1.5px solid var(--lv-border);
  border-radius: var(--lv-radius);
  box-shadow: 0 2px 10px rgba(27,38,59,0.04);
  padding: 28px 22px 24px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, border-color 0.22s;
  margin-bottom: 16px;
  gap: 10px;
}
#workshop-highlights .feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
#workshop-highlights .feature-grid > div:hover,
#all-workshops .feature-grid > div:hover,
#coaching-services .feature-grid > div:hover {
  box-shadow: 0 6px 24px 0 rgba(48,66,123,0.11);
  border-color: var(--lv-accent);
}

/* =====================
   7. FAQ & LISTS
   ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list h3 {
  color: var(--lv-primary);
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.faq-list p {
  margin-bottom: 3px;
}
ul, ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 20px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 0px;
  color: var(--lv-muted);
  font-size: 1rem;
}
ul li strong, ol li strong {
  color: var(--lv-primary);
}

/* =====================
   8. FORMS & INPUTS
   ===================== */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
label {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--lv-secondary);
  font-weight: 500;
}
input[type="email"],
input[type="text"],
input[type="password"],
textarea {
  padding: 12px 14px;
  border-radius: 7px;
  border: 1.2px solid var(--lv-border);
  background: #FCFCFF;
  color: var(--lv-text);
  transition: border 0.16s, box-shadow 0.14s;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 8px;
}
input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: var(--lv-primary);
  outline: none;
  box-shadow: 0 0 0 2px var(--lv-accent);
}
button[type="submit"], .btn-primary, .btn-secondary {
  margin-top: 10px;
}

/* =====================
   9. FOOTER
   ===================== */
footer {
  background: var(--lv-bg-light);
  border-top: 1px solid var(--lv-border);
  padding: 24px 0;
  margin-top: 30px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  gap: 22px;
  margin-bottom: 0;
}
footer nav a {
  color: var(--lv-muted);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  border: none;
  transition: color 0.17s;
}
footer nav a:hover {
  color: var(--lv-accent);
}
footer p {
  color: var(--lv-muted);
  font-size: 0.96rem;
}

/* =====================
   10. COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--lv-bg-light);
  box-shadow: 0 -2px 14px 0 rgba(27,38,59,0.07);
  border-top: 1.5px solid var(--lv-border);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  gap: 22px;
  animation: cookie-slide-in 0.6s cubic-bezier(.52,.02,.22,1);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--lv-secondary);
  margin-bottom: 0;
  font-size: 1.04rem;
  flex: 1 0 180px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  border-radius: 7px;
  min-width: 120px;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--lv-accent);
  color: var(--lv-secondary);
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-btn.settings {
  background: var(--lv-primary);
  color: #fff;
}
.cookie-btn:hover {
  background: #FFEFA0;
  color: var(--lv-primary);
}
.cookie-btn.settings:hover {
  background: var(--lv-secondary);
  color: var(--lv-accent);
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(27,38,59,0.48);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--lv-bg-light);
  border-radius: var(--lv-radius);
  padding: 38px 30px 28px 30px;
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 10px 44px rgba(27,38,59,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  animation: modal-slide-in 0.4s cubic-bezier(.57,.21,.69,1.17);
  position: relative;
}
@keyframes modal-slide-in {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 14px;
  background: var(--lv-border);
  position: relative;
  transition: background 0.12s;
  margin-left: 10px;
}
.cookie-modal-content .cookie-toggle input[type="checkbox"] {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-modal-content .cookie-toggle .slider {
  position: absolute;
  left: 1.5px; top: 3px;
  width: 19px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 2px rgba(27,38,59,0.12);
}
.cookie-modal-content .cookie-toggle input[type="checkbox"]:checked + .slider {
  transform: translateX(19px);
}
.cookie-modal-content .cookie-toggle input[type="checkbox"]:checked ~ .cookie-toggle {
  background: var(--lv-accent);
}
.cookie-modal-content .cookie-actions {
  width: 100%;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.57rem;
  color: var(--lv-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.13s;
  border-radius: 5px;
}
.cookie-modal-content .cookie-modal-close:hover {
  background: rgba(27,38,59,0.09);
}

/* =====================
   11. RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1080px) {
  .container { max-width: 960px; }
  .header .container { padding: 0 14px; }
}
@media (max-width: 880px) {
  .container { max-width: 99vw; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    gap: 10px;
  }
  nav { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
  .section, section { padding: 22px 0 0 0; margin-bottom: 36px; }
  #workshop-highlights .feature-grid, #all-workshops .feature-grid, #coaching-services .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .card, .card-container, .testimonial-card { min-width: 0; }
  .testimonial-card { padding: 16px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px;
  }
  .mobile-nav { width: 100vw; }
  .mobile-nav a { width: 86vw; font-size: 1.11rem; }
  .mobile-menu-close { margin-right: 12px; }
  .footer .container, footer .container {
    padding-left: 8px; padding-right: 8px;
    gap: 11px;
  }
}
@media (max-width: 520px) {
  .container { padding: 0 4px; }
  h1, h2, h3, h4, h5 { margin-bottom: 10px; }
  .btn-primary, .btn-secondary, .cookie-btn { min-width: 0; padding: 9px 5vw; }
  .testimonial-card { padding: 12px; font-size: 0.96rem; }
  .cookie-modal-content { padding: 14px 5vw 10px 5vw; min-width: 0; }
}

/* Accessibility focus styles */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus {
  outline: 2px solid var(--lv-accent);
  outline-offset: 2px;
}

/* =====================
   12. MICRO INTERACTIONS
   ===================== */
.card, .testimonial-card, .feature-grid > div, .btn-primary, .btn-secondary, .cookie-btn, .mobile-nav a {
  transition: box-shadow 0.18s, transform 0.18s, color 0.14s, background 0.18s, border-color 0.14s;
}
.card:active, .testimonial-card:active, .feature-grid > div:active {
  transform: scale(0.98) translateY(2px);
}
.btn-primary:active, .btn-secondary:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* =========================
   13. ADDITIONAL COMPONENTS
   ========================= */
/* Map Placeholder Responsive */
.map-placeholder {
  font-size: 0.96rem;
}

/* Newsletter form spacing */
#newsletter form {
  max-width: 380px;
  margin-bottom: 5px;
}
#newsletter input[type="email"] {
  margin-bottom: 10px;
}

/* Hide cookie modal by default */
.cookie-modal { display: none; }
.cookie-modal.open { display: flex; }

/* =========================
   14. PRINT MEDIA
   ========================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  section, main, .container { background: #fff; color: #000; }
  body { background: #fff; color: #000; }
  a { color: #222; }
}

/* =========================
   15. Z-INDEX FOR INTERACTIVES
   ========================= */
.mobile-menu { z-index: 1050; }
.mobile-menu-toggle { z-index: 1001; }
.cookie-banner { z-index: 2000; }
.cookie-modal, .cookie-modal.open { z-index: 2100; }

/* =========================
   END LUMEN VERTEX STYLES
   ========================= */
