#logo a {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

nav {
    z-index: 100!important;
}

hr {
    height: 3px;
}

.markdown-body p {
    margin: 1rem 0;
}
.markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4, .markdown-body h5, .markdown-body h6 {
    margin: 1.5rem 0 0.5rem 0;
}

.font-title,
.font-eb-garamond {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-body,
.font-josefin-sans {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.font-inconsolata {
  font-family: "Inconsolata", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.font-title {
    font-weight: 400;
}
.font-body {
    font-weight: 200;
}

.font-fun,
.font-vt323 {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}

ul li {
    margin-left: 1.5rem;
    list-style-type: disc;
}
ol li {
    margin-left: 1.5rem;
    list-style-type: decimal;
}

/* RGB Split / Glitch Effect */
.glitch {
  position: relative;
  color: #fff;
  text-shadow:
    -2px 0 #ff0055,
    2px 2px #00ff88;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: -1;
}

.glitch::before {
  animation: glitch-1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  color: #00ffff;
  text-shadow: -2px 0 #ff0055;
}

.glitch::after {
  animation: glitch-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  color: #ff00ff;
  text-shadow: 2px 0 #00ff88;
}

@keyframes glitch-1 {
  0% {
    clip-path: inset(40% 0 61% 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(92% 0 1% 0);
    transform: translate(-2px, 2px);
  }
  40% {
    clip-path: inset(43% 0 1% 0);
    transform: translate(-2px, -2px);
  }
  60% {
    clip-path: inset(25% 0 58% 0);
    transform: translate(2px, -2px);
  }
  80% {
    clip-path: inset(54% 0 7% 0);
    transform: translate(2px, 2px);
  }
  100% {
    clip-path: inset(58% 0 43% 0);
    transform: translate(0);
  }
}

@keyframes glitch-2 {
  0% {
    clip-path: inset(10% 0 85% 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(5% 0 58% 0);
    transform: translate(2px, -2px);
  }
  40% {
    clip-path: inset(77% 0 15% 0);
    transform: translate(2px, 2px);
  }
  60% {
    clip-path: inset(40% 0 59% 0);
    transform: translate(-2px, 2px);
  }
  80% {
    clip-path: inset(63% 0 22% 0);
    transform: translate(-2px, -2px);
  }
  100% {
    clip-path: inset(85% 0 10% 0);
    transform: translate(0);
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* Minden második sor (páros) kap egy világosszürke hátteret */
tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Minden első sor (páratlan) marad fehér */
tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

tbody tr td {
  padding: 5px;
}

/* A fejléc (thead) kaphat egy kicsit sötétebb színt a kontraszt miatt */
thead th {
  background-color: #e0e0e0;
  text-align: center;
}


/*
    filter list
*/

/* Highlight the chip when its corresponding checkbox is checked */
#q-ai:checked ~ .q1000-filter-group [for="q-ai"],
#q-neurodivergencia:checked ~ .q1000-filter-group [for="q-neurodivergencia"],
#q-startup:checked ~ .q1000-filter-group [for="q-startup"] {
  border: 1px solid white;
  padding: 5px;
}

/* Base logic: If ANY checkbox is checked, hide ALL items by default */
#q-ai:checked ~ .question-type-list span,
#q-neurodivergencia:checked ~ .question-type-list span,
#q-startup:checked ~ .question-type-list span {
  display: none;
  opacity: 0;
}

/* Exception logic: If a specific box is checked, show its matching items */
#q-ai:checked ~ .question-type-list .q-ai,
#q-neurodivergencia:checked ~ .question-type-list .q-neurodivergencia,
#q-startup:checked ~ .question-type-list .q-startup {
  display: block;
  opacity: 1;
}


.circle-text {
  border-radius: 50%;
  overflow: hidden;
  text-align: left; 
  hyphens: auto;          
  word-break: break-word; 
}

/* Create the left wrapping boundary */
.circle-text-leftcurve {
  float: left;
  width: 50%;
  height: 100%;
  shape-margin: 15px; 
  shape-outside: radial-gradient(farthest-side at right, transparent 100%, black 100%);
}

/* Create the right wrapping boundary */
.circle-text-rightcurve {
  float: right;
  width: 50%;
  height: 100%;
  shape-margin: 15px; 
  shape-outside: radial-gradient(farthest-side at left, transparent 100%, black 100%);
}

.circle-text-content {
  margin: 0;
  padding: 15px; /* Minimal padding just to keep text off the raw border */
}
