@import url('https://fonts.googleapis.com/css2?family=Fredoka&display=swap'); 
:root {
  --cassiopeia-color-primary: #6B4C3B;     /* kávově hnědá */
  --cassiopeia-color-link: #A3D8F4;        /* světle modrá */
  --cassiopeia-color-hover: #FBE7A1;       /* žlutá */
  --cassiopeia-color-contrast: #4F4F4F;    /* textová šedá */
  --cassiopeia-color-bg: #FCFAF6;          /* smetanové pozadí */
}



.site-header {
  background-color: rgba(255, 255, 255, 0);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link .nav-logo {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-family: 'Balloo 2', sans-serif;
  font-size: 1.1rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4a837; /* kávově žlutá */
}

.nav-button {
  background-color: #4A90E2; /* modrá */
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #357ABD;
}
  body {
  background-color: var(--cassiopeia-color-bg); /* smetanová */
  background-image: url('/images/backgrounds/pozadi2.png');
  background-size: auto;
  background-repeat: repeat;
  background-position: center center;
  background-attachment: fixed;
  color: var(--cassiopeia-color-contrast);
  font-family: 'Baloo 2', Arial, sans-serif;
}
img[src*="Poofball-Logo.png"] {
  max-width: 200px !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}
.site-title {
  display: flex;
  align-items: center;
  gap: 1rem; /* mezera mezi logem a textem */
  flex-wrap: wrap; /* pro menší obrazovky */
}

.site-title .site-name,
.site-title .site-slogan {
  margin: 0;
  padding: 0;
}
.navbar-brand {
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  gap: 1rem; /* mezera mezi logem a sloganem */
  flex-wrap: nowrap;
}

.brand-logo {
  display: block;
}

.brand-logo img {
  max-height: 120px;
  height: auto;
  width: auto;
}

.site-description {
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  font-family: 'Baloo 2', sans-serif;
}
.hero-left {
  flex: 1;
  padding-right: 1rem;
}
.hero-right {
  flex: 1;
  text-align: right;
}
.hero-logo {
  max-width: 100%;
  height: auto;
}
.hero-buttons {
  margin-top: 1rem;
}
.btn {
  padding: 0.75rem 1.5rem;
  margin-right: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.btn-yellow {
  background-color: #FFD700;
  color: #000;
}
.btn-blue {
  background-color: #1E90FF;
  color: #fff;
}
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }
  .hero-right {
    text-align: center;
    margin-top: 1rem;
  }
}
.hero-slogan {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
}

.hero-subtitle {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  background-color: #FBE7A1; /* <-- sem můžeš změnit barvu nebo pozadí */
  color: #5a4633;
  font-family: 'Balloo 2', cursive;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1 1 250px;
  margin: 1rem;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle li a {
  text-decoration: none;
  color: #6B4C3B;
}

.footer-middle li a:hover {
  text-decoration: underline;
}

.footer-socials a {
  margin-right: 12px;
}

.social-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  background-color: #5a4633;
  color: #FBE7A1;
  font-size: 0.9rem;
}

/* Zajistí úplnou průhlednost všech obalů navigace */
.header.container-header,
.header.container-header.full-width,
.container-nav,
.grid-child.container-nav,
#mod-custom115,
header.site-header,
.nav-container,
.navbar,
.navbar-brand,
.navbar .container {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
/* Globální nastavení písma pro celý web */
body,
h1, h2, h3, h4, h5, h6,
.footer-left h4,
.footer-middle h4,
.footer-right h4 {
  font-family: 'Baloo 2', cursive;
}