
@font-face {
  font-family: 'Boldonse';
  src: url("/fonts/Boldonse/Boldonse-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --bg: #ffeebb;
  --fg: #391D0C;
  --muted: #8f7261;
}

* { box-sizing: border-box }
html, body { min-height: 100% }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}


a { 
  color: inherit;
  text-decoration: none; 
}


#page-landing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
  min-height: 100vh; /* Zajistí centrování na výšku */
}
#page-landing-logo {
  font-family: 'Boldonse', system-ui, -apple-system, sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem); /* Responzivní velikost */
  font-weight: 400;
  margin-bottom: 0;
}
#page-landing-slogan {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--muted);
  margin-top: 4px;
  max-width: 400px;
}
#page-landing-heading {
  font-family: 'Boldonse', system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
#tag-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
}
.tag-button {
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--fg);
  color: var(--fg);
  transition: all 0.15s ease;
  cursor: pointer;
}
.tag-button:hover, .tag-button:focus {
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(57, 29, 12, 0.1);
}

/* UPRAVENO: Styl pro "zobrazit vše" */
.tag-button.tag-vse {
  background-color: var(--fg);
  color: var(--bg);
  
  /* ODSTRANĚNO: Přesun na nový řádek */
  /* flex-basis: 100%; */
  /* margin-top: 1.5rem; */ /* Přesunuto na obal v JS */
}