/* ====================================================================
  FUZZY ROAM MÜNCHEN – style.css                  
  Modern Bold | Responsive | Flexbox-only | No CSS Grid | No Columns
  ==================================================================== */

/* -------------------------------------------------------
   1.  CSS RESET & BASELINE SETUP
--------------------------------------------------------- */
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  border: 0;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}
ul, ol { list-style: none; }

/* -------------------------------------------------------
   2.  FONT-FACE & BRAND TYPOGRAPHY
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F3EE;
  color: #20587A;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  color: #20587A;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote { margin-bottom: 18px; }
strong, .bold { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.05rem; }
}

/* ----------------------------------------------
   3.  BRAND COLORS & UTILITIES
------------------------------------------------- */
:root {
  --primary: #20587A;
  --secondary: #FFFFFF;
  --bg-main: #F5F3EE;
  --accent: #9C4A00;
  --accent-light: #C97A40;
  --text-main: #20587A;
  --text-light: #ffffff;
  --shadow: 0 4px 12px 0 rgba(32,88,122,0.08);
  --radius: 18px;
  --radius-card: 22px;
}
.bg-primary { background: var(--primary) !important; color: var(--text-light) !important; }
.bg-secondary { background: var(--secondary) !important; color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }

/* ----------------------------------------------
   4.  REUSABLE LAYOUT CONTAINERS | FLEXBOX RULES
------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--secondary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  transition: transform 0.22s cubic-bezier(.23,1.05,.32,1), box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(32,88,122,0.16);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  border-left: 6px solid var(--primary);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(32,88,122,0.16);
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0;
  margin-right: 16px;
  letter-spacing: 0.01em;
  quotes: "\201c" "\201d";
}
.testimonial-card cite {
  color: var(--accent);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 500;
}

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

/* --------------------------------------------------------------
   HERO, FEATURES, ARTICLES, CATEGORY LINKS, CTA & HIGHLIGHTS
---------------------------------------------------------------- */
.hero {
  background: linear-gradient(94deg, var(--primary) 75%, var(--accent-light) 100%);
  color: var(--text-light);
  border-radius: 0 0 32px 32px;
  padding-top: 40px;
  padding-bottom: 50px;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(32,88,122,0.13);
}
.hero p {
  color: #f5f3ee;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.features .feature-grid,
.features .tip-grid,
.features .habit-grid,
.features .concentration-tips,
.features .mindfulness-practices,
.collection .article-previews,
.highlights .article-teasers,
.latest-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.features .feature-grid > div,
.features .tip-grid > div,
.features .habit-grid > div,
.features .concentration-tips > div,
.features .mindfulness-practices > div,
.collection .article-previews > div,
.highlights .article-teasers > div,
.latest-articles > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(32,88,122,0.08);
  padding: 26px 20px 24px 20px;
  min-width: 250px;
  min-height: 170px;
  flex: 1 1 260px;
  transition: box-shadow 0.22s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 4px solid var(--accent-light);
}
.features .feature-grid > div:hover,
.features .tip-grid > div:hover,
.features .habit-grid > div:hover,
.features .concentration-tips > div:hover,
.features .mindfulness-practices > div:hover,
.collection .article-previews > div:hover,
.highlights .article-teasers > div:hover,
.latest-articles > div:hover {
  box-shadow: 0 6px 18px 0 rgba(32,88,122,0.13);
  transform: translateY(-3px) scale(1.01);
}
.features .feature-grid img,
.features .tip-grid img,
.features .habit-grid img,
.features .concentration-tips img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}
.features h3, .collection h3, .highlight h3 {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 5px;
}
.features p,
.collection p,
.highlights p {
  color: var(--primary);
  opacity: 0.93;
  font-size: 1rem;
}

.category-links, .category-filter {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.category-links a, .category-filter a {
  color: var(--accent);
  margin: 0 4px;
  padding: 2px 6px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.category-links a:hover, .category-filter a:hover {
  background: var(--primary);
  color: #fff;
}

.cta {
  background: var(--accent-light);
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px 0 rgba(201,122,64,0.08);
  margin-bottom: 48px;
  padding: 48px 20px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 8px;
}
.cta p {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
}
/* -------------------------------------------------------
   5.  BUTTONS & INTERACTIVE ELEMENTS
--------------------------------------------------------- */
.button-primary, .cta-section .button-primary, .content-wrapper > a.button-primary {
  background: var(--accent);
  color: #fff !important;
  padding: 13px 34px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 2px 12px 0 rgba(156,74,0,0.07);
  border: none;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 14px;
  outline: none;
  transition: background 0.18s, box-shadow 0.22s, transform 0.18s;
  display: inline-block;
}
.button-primary:hover, .cta-section .button-primary:hover,
.button-primary:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px 0 rgba(32,88,122,0.19);
}
.button-secondary {
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 22px;
  border: 2px solid var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background 0.2s, color 0.18s, border 0.18s;
  margin-right: 8px;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--accent);
}

/* -----------------------------------------------------------------
   6.  HEADER, NAVIGATION & MOBILE MENU (BURGER/NAV)
------------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,88,122,0.07);
  position: relative;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.logo img {
  max-height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
  margin-right: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent-light);
  color: #fff;
}
.main-nav .button-primary {
  margin-left: 12px;
  margin-bottom: 0;
}
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border-radius: 10px;
  padding: 4px 16px 4px 12px;
  margin-left: 16px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(32,88,122,0.08);
  transition: background 0.18s, transform 0.18s;
  cursor: pointer;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  transform: scale(1.07);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #20587Abb;
  transform: translateX(-100%);
  transition: transform 0.43s cubic-bezier(.47,1.64,.41,.8);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 22px;
  margin-right: 30px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.1rem;
  padding: 4px 18px 4px 10px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 3px 16px 0 rgba(32,88,122,0.15);
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 38px;
  margin-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  color: #fff;
  font-weight: 800;
  background: none;
  padding: 8px 16px;
  border-radius: 10px;
  margin-right: 0;
  transition: background 0.18s, color 0.18s;
  min-width: 190px;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-light);
  color: #fff;
}
@media (max-width:1100px) {
  .container { max-width: 95vw; }
}
@media (max-width: 980px) {
  .main-nav {
    gap: 13px;
  }
  .main-nav a { font-size: 0.98rem; }
}
@media (max-width: 820px) {
  .main-nav { gap: 8px; }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 850px) {
  .mobile-menu { display: flex; }
}
@media (max-width: 768px) {
  header .container { padding: 10px 11px; }
  .logo img { max-height: 36px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 2rem;
    margin-left: 8px;
  }
  .mobile-menu {
    padding-top: 0;
  }
  .mobile-nav {
    gap: 14px;
    margin-top: 32px;
    margin-left: 20px;
    font-size: 1.1rem;
  }
}

/* -----------------------------------------------------------------
    7.  SECTIONS, CARDS, SPACING, LAYOUTS (RESPONSIVE FLEXBOX)
------------------------------------------------------------------- */
section {
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .feature-grid, .tip-grid, .habit-grid, .concentration-tips, .mindfulness-practices, .article-teasers, .article-previews, .latest-articles {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  .section, section, .cta {
    padding: 28px 7px 32px 7px;
    margin-bottom: 32px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature-grid, .tip-grid, .habit-grid, .concentration-tips, .mindfulness-practices, .article-teasers, .article-previews, .latest-articles {
    flex-direction: column;
    gap: 8px;
  }
  .cta {
    border-radius: 18px;
    margin-bottom: 32px;
    padding: 32px 9px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 13px;
    gap: 10px;
  }
  .card {
    padding: 20px 13px;
    border-radius: 13px;
  }
}
.text-section, .cta-section, .next-steps-info {
  margin: 0 0 24px 0;
}
.text-section p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.text-section img {
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.9;
}
@media (max-width:900px) {
  .text-image-section { flex-direction: column; gap: 14px; }
}
/* Article lists */
.articles ul {
  padding: 0;
  margin-bottom: 0;
}
.articles li {
  margin-bottom: 14px;
  padding-left: 2px;
  font-weight: 500;
  font-size: 1.04rem;
}
.articles a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.15s;
}
.articles a:hover { color: var(--accent); }

/* -------------------------------------------------------
   8.  FOOTER STYLES
--------------------------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0;
  border-radius: 36px 36px 0 0;
  margin-top: 40px;
  box-shadow: 0 -2px 16px 0 rgba(32,88,122,0.08);
}
footer .container {
  padding: 30px 22px 12px 22px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 9px;
}
.footer-branding img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(32,88,122,0.06);
}
.footer-branding p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  opacity: 0.93;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a {
  color: #fff;
  opacity: 0.92;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover { background: var(--accent-light); color: #fff; }
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  background: #fff;
  border-radius: 7px;
  width: 29px; height:29px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px 0 rgba(32,88,122,0.09);
  transition: transform 0.15s, box-shadow 0.15s;
}
.footer-social a:hover {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 8px 20px 0 rgba(32,88,122,0.14);
  background: var(--accent-light);
}
.footer-social img {
  width: 18px; height: 18px;
}
@media (max-width: 700px) {
  .footer-branding { gap: 9px; }
  .footer-branding img { width:25px; height:25px; }
  .footer-social a { width: 23px; height: 23px; }
  .footer-social img { width: 14px; height:14px; }
  .footer-nav { gap: 8px; }
}

/* --------------------------------------------------------------
   9.  COOKIE CONSENT BANNER & MODAL (RESPONSIVE, ANIMATED)
------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 4000;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 24px 0 rgba(32,88,122,0.15);
  padding: 26px 22px 18px 22px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 16px;
  justify-content: space-between;
  animation: cookieBannerIn 0.5s cubic-bezier(.26,2.25,.3,.9);
  font-size: 1.05rem;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-banner button, .cookie-banner .button-primary {
  font-size: 1rem;
  padding: 9px 21px;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  cursor: pointer;
}
.cookie-banner .button-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}
.cookie-banner .button-primary:hover { background: var(--primary); }
.cookie-banner .button-secondary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.cookie-banner .button-secondary:hover { background: var(--accent-light); }
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 10px 10px 10px;
    font-size: 1rem;
    gap: 12px;
  }
  .cookie-banner .cookie-actions { gap:8px; }
}

.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(32,88,122,0.35);
  z-index: 4200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.23,1.05,.32,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  padding: 38px 29px 29px 29px;
  border-radius: 23px;
  box-shadow: 0 6px 44px 0 rgba(32,88,122,0.16);
  min-width: 290px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalIn 0.41s cubic-bezier(.26,2.14,.3,.97);
  position: relative;
}
@keyframes modalIn {
  from { transform: translateY(90px) scale(0.93); opacity: 0.1; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--primary);
}
.cookie-categories {
  margin-bottom: 38px;
  width: 100%;
}
.cookie-categories label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  font-weight: 700;
}
.cookie-categories input[type="checkbox"] {
  accent-color: var(--primary);
  width: 1.3em;
  height: 1.3em;
}
.cookie-categories .essential {
  color: var(--accent);
  font-weight: 700;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px; right: 18px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1.2;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  padding: 4px 12px;
}
.cookie-modal .close-modal:hover {
  background: var(--accent-light);
  color:#fff;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 8px;
}
.cookie-modal .modal-actions .button-primary { font-size: 1.06rem; }

/* -------------------------------------------------------
   10.  LEGAL SECTIONS, THANK YOU, MISC INFO
---------------------------------------------------------*/
.legal, .thank-you {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 18px 0 rgba(32,88,122,0.09);
  margin-bottom: 48px;
  padding: 40px 22px;
}
.legal h1, .thank-you h1 { color: var(--primary); font-size: 2.2rem; }
.legal h2, .thank-you h2 { color: var(--accent); margin-top: 16px; font-size: 1.32rem; }
.legal ul, .thank-you ul {
  padding-left: 17px;
  margin-bottom: 18px;
}
.legal li, .thank-you li { font-size: 1rem; margin-bottom: 6px; color: var(--primary); }
.legal a, .thank-you a { color: var(--accent); text-decoration: underline; }

.next-steps-info ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.next-steps-info li {
  margin-bottom:7px;
  color:var(--primary);
  font-size:1.1rem;
}

/* -------------------------------------------------------
   11.  RESPONSIVE DESIGN
---------------------------------------------------------*/
@media (max-width: 700px) {
  .container { padding-left:8px; padding-right:8px; }
  .legal, .thank-you {
    padding: 25px 6px;
    border-radius: 10px;
  }
  .cta {
    border-radius: 12px;
    padding: 22px 7px;
  }
}

/* -------------------------------------------------------
   12.  MICRO-INTERACTIONS, TRANSITIONS
---------------------------------------------------------*/
a, .button-primary, .button-secondary, .main-nav a, .footer-nav a,
.category-links a, .category-filter a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
.card, .feature-grid > div, .tip-grid > div, .habit-grid > div, .concentration-tips > div, .mindfulness-practices > div, .article-previews > div, .article-teasers > div, .latest-articles > div {
  transition: box-shadow 0.2s, transform 0.14s;
}

/* -------------------------------------------------------
   13.  MISC: FOCUS & ACCESIBILITY
---------------------------------------------------------*/
:focus {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}
::-moz-selection { background: var(--accent-light); color:#fff; }
::selection      { background: var(--accent-light); color:#fff; }

/* Hide non-interactive visually-only elements on mobile/small screens if needed */
@media (max-width: 360px) {
  h1, h2, h3, h4 { font-size: 1rem; }
}

/* ---------------------------------------------------------
   14.  PRINT (optional basic setup)
----------------------------------------------------------*/
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display:none !important; }
  .container { width: 100% !important; max-width: 98vw; padding: 0; }
}
