/*
Theme Name: Kubio-ish Psychologist OnePage
Theme URI: https://example.com/
Author: ChatGPT
Description: Lightweight block theme inspired by the clean “KorinekJanka”-style layout (quote hero, promo cards, info tiles, FAQ accordion, testimonials, contact).
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: kubioish-psy-theme
*/

/* Sticky top bar */
.wp-site-blocks > header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

/* Smooth anchors with sticky header offset */
html { scroll-behavior: smooth; }
:target { scroll-margin-top: 96px; }

/* Card utility (used by Groups) */
.kubio-card{
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 14px 40px rgba(17,24,39,0.10);
}

/* Details (accordion) look */
.wp-block-details{
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 28px rgba(17,24,39,0.08);
}
.wp-block-details > summary{
  cursor:pointer;
  font-weight: 650;
  list-style:none;
}
.wp-block-details > summary::-webkit-details-marker{display:none;}
.wp-block-details[open] > summary{margin-bottom:10px;}

/* Buttons: nicer focus ring */
.wp-block-button__link:focus{
  outline: 3px solid rgba(167, 139, 250, 0.55);
  outline-offset: 2px;
}
