@charset "UTF-8";
/*
Theme Name: Dobrá škôlka
Theme URI: https://www.dobraskolka.sk
Author: Boldpixel
Author URI: https://www.boldpixel.cz
Description: Téma dobrá škôlka
Version: 0.1.0
Text Domain: dobraskolka
*/
@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Quicksand:wght@300..700&display=swap");
:root {
  --background: #FFFEE7;
  --yellow: #FCF8AE;
  --light-pink: #F4C4F9;
  --pink: #FB8EDE;
  --purple: #45004C;
  --beige: #FFCE96;
  --brown: #321B00;
  --light-green: #24564A;
  --dark-green: #02281F;
  --light-blue: #AED8FC;
  --blue: #001C33;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--background);
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.custom-container {
  max-width: 1599px;
  padding: 0 1em;
  width: 100%;
  margin: 0 auto;
}

.hero-wrapper {
  min-height: 90dvh;
  position: relative;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: -1em;
  margin-right: -1em;
  padding: 1em;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero-wrapper {
    min-height: 70dvh;
  }
}
.hero-wrapper h1 {
  color: var(--light-green);
  font-size: 100px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.hero-wrapper h1:before {
  content: "";
  position: absolute;
  left: -160px;
  top: 50px;
  background: url(assets/images/heart.svg) no-repeat;
  background-size: contain;
  height: 290px;
  width: 290px;
  z-index: -1;
}
.hero-wrapper h1:after {
  content: "";
  position: absolute;
  right: -140px;
  top: -120px;
  background: url(assets/images/pink-asterisk.svg) no-repeat;
  background-size: contain;
  height: 290px;
  width: 290px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .hero-wrapper h1 {
    font-size: 46px;
  }
  .hero-wrapper h1:before {
    left: -50px;
    top: 25px;
    height: 140px;
    width: 140px;
  }
  .hero-wrapper h1:after {
    right: -60px;
    top: -60px;
    height: 120px;
    width: 120px;
  }
}
.hero-wrapper .hero-sub {
  max-width: 660px;
  color: var(--dark-green);
  font-size: 26px;
  font-weight: 500;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .hero-wrapper .hero-sub {
    font-size: 20px;
  }
}
.hero-wrapper .btn {
  margin-top: 1em;
  z-index: 5;
}
.hero-wrapper .clouds-divider {
  position: absolute;
  left: 0;
  bottom: 0;
}

.site-header {
  position: relative;
  z-index: 999;
}
.site-header .header-main {
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 999;
  width: 100%;
}
.site-header .header-main .custom-logo-link img {
  height: 50px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header .header-main .burger-icon {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.site-header .header-main .burger-icon div {
  width: 24px;
  height: 4px;
  background-color: var(--dark-green);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.site-header .header-main .burger-icon.open {
  transform: rotate(45deg);
}
.site-header .header-main .burger-icon.open div:first-child {
  opacity: 0;
}
.site-header .header-main .burger-icon.open div:nth-child(2) {
  transform: translateY(-2px) rotate(90deg);
}
.site-header .header-main .burger-icon.open div:nth-child(3) {
  transform: translateY(-10px) rotate(0);
}
.site-header .navbar {
  color: var(--text-color);
  width: 100%;
}
.site-header .navbar .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1em;
}
.site-header .navbar .navbar-nav li {
  color: var(--dark-green);
  font-weight: 600;
  position: relative;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  z-index: 5;
}
.site-header .navbar .navbar-nav li.menu-item-has-children a {
  pointer-events: none;
}
.site-header .navbar .navbar-nav li.menu-item-has-children::after {
  content: "";
  background: url(assets/images/arrow-down.svg) no-repeat;
  height: 16px;
  width: 16px;
  background-size: cover;
  display: block;
  transition: 0.2s;
  margin-bottom: -2px;
}
.site-header .navbar .navbar-nav li.menu-item-has-children:hover {
  background: transparent;
  transform: rotate(0);
}
.site-header .navbar .navbar-nav li.menu-item-has-children .sub-menu {
  display: none;
}
.site-header .navbar .navbar-nav li.menu-item-has-children .sub-menu a {
  pointer-events: auto;
}
.site-header .navbar .navbar-nav li:hover {
  border-radius: 6px;
  background: var(--pink);
  transform: rotate(-1deg);
}
.site-header .navbar .navbar-nav li:hover::after {
  transform: rotate(180deg);
}
.site-header .navbar .navbar-nav li:hover .sub-menu {
  margin: 0;
  padding: 0.5em 1em 1em 1em;
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: -1.3em;
  top: 1.7em;
  width: 230px;
  background: var(--background);
}
.site-header .navbar .navbar-nav li:hover .sub-menu li a {
  padding: 3px 6px;
  transition: 0.2s;
}
.site-header .navbar .navbar-nav li:hover .sub-menu li a:hover {
  border-radius: 6px;
  background: var(--pink);
  transform: rotate(-1deg);
}
@media screen and (max-width: 768px) {
  .site-header .navbar .navbar-nav {
    align-items: flex-start;
  }
}
.site-header .navbar .navbar-nav a {
  color: var(--text-color);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .site-header .navbar .navbar-collapse {
    padding: 1em;
    border-radius: 1em;
    position: fixed;
    top: 100px;
    width: 95%;
    left: 50%;
    transform: translate(-50%);
    background-color: var(--background);
    z-index: 99999;
  }
  .site-header .navbar .navbar-collapse .navbar-nav li {
    width: 100%;
    flex-wrap: wrap;
    transform: rotate(0) !important;
  }
  .site-header .navbar .navbar-collapse .navbar-nav li .sub-menu {
    left: 0;
    top: 0;
    padding: 0;
    position: relative !important;
    width: 100% !important;
    order: 3;
    flex: 1 1 100%;
  }
}

.site-footer {
  text-align: center;
}
.site-footer .mail-footer {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .site-footer .mail-footer {
    font-size: 36px;
  }
}
.site-footer .copyright {
  color: #6A6971;
  font-weight: 600;
  font-size: 14px;
}

.btn {
  border-radius: 1em;
  font-size: 1.1em;
  padding: 0.8em 1.6em;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  z-index: 1;
}
.btn.primary {
  background: var(--pink);
  color: var(--background);
  border: 2px solid var(--pink);
}
.btn.primary:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -150px;
  height: 150px;
  width: 300px;
  background: var(--background);
  border-radius: 50%;
  transition: 0.3s;
  z-index: -1;
}
.btn.primary:hover {
  color: var(--pink);
  background: transparent;
}
.btn.primary:hover:after {
  bottom: -50px;
}

main {
  padding: 0 1em;
  min-height: 100dvh;
}
main h1, main h2, main h3, main h4 {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-style: normal;
}

.single-page {
  padding-top: 5em;
}

.priority-wrapper .priority {
  max-width: 1280px;
  border-radius: 50px;
  padding: 2em;
  margin: 0 auto;
  margin-bottom: 3em;
  background: var(--light-pink);
}
.priority-wrapper .priority .priority-icon {
  height: 80px;
  width: 80px;
  padding-bottom: 0.5em;
}
.priority-wrapper .priority .priority-icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.priority-wrapper .priority .priority-title {
  padding-bottom: 0.5em;
}
.priority-wrapper .priority .priority-images {
  height: 100%;
  transform: rotate(1deg);
}
.priority-wrapper .priority .priority-images .priority-image {
  position: -webkit-sticky;
  position: sticky;
  top: 1em;
}
.priority-wrapper .priority .priority-images .priority-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2em;
}
.priority-wrapper .priority .priority-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  width: 100%;
}
.priority-wrapper .priority .priority-body .priority-content li {
  padding-bottom: 4px;
}
.priority-wrapper .priority .priority-body .priority-content li, .priority-wrapper .priority .priority-body .priority-content p {
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .priority-wrapper .priority .priority-body {
    grid-template-columns: 1fr;
  }
  .priority-wrapper .priority .priority-body .priority-content {
    order: 1;
  }
  .priority-wrapper .priority .priority-body .priority-images {
    order: 0;
  }
}
.priority-wrapper .priority:nth-child(2) {
  background: var(--light-blue);
}
.priority-wrapper .priority:nth-child(2) .priority-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  width: 100%;
}
.priority-wrapper .priority:nth-child(2) .priority-body .priority-content {
  order: 1;
}
.priority-wrapper .priority:nth-child(2) .priority-body .priority-images {
  order: 0;
}
@media screen and (max-width: 768px) {
  .priority-wrapper .priority:nth-child(2) .priority-body {
    grid-template-columns: 1fr;
  }
  .priority-wrapper .priority:nth-child(2) .priority-body .priority-content {
    order: 1;
  }
  .priority-wrapper .priority:nth-child(2) .priority-body .priority-images {
    order: 0;
  }
}
.priority-wrapper .priority:nth-child(2) .priority-images {
  transform: rotate(-1deg);
}
.priority-wrapper .priority:nth-child(3) {
  background: var(--beige);
}

.headline-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 2em;
  padding-top: 2em;
}
.headline-wrapper .headline {
  position: relative;
  max-width: 470px;
  font-size: 70px;
  color: var(--light-green);
}
@media screen and (max-width: 768px) {
  .headline-wrapper .headline {
    max-width: 300px;
    font-size: 42px;
  }
}
.headline-wrapper .headline:after {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  background: url(assets/images/blue-asterisk.svg) no-repeat;
  background-size: contain;
  height: 120px;
  width: 130px;
  z-index: -1;
}

.clouds-divider {
  max-width: 100%;
}

.footer-wrapper {
  background: var(--yellow);
  margin-bottom: -1em;
  padding: 3em 1em;
  position: relative;
}
.footer-wrapper footer {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.footer-wrapper footer .brand p {
  padding-top: 1em;
  font-size: 14px;
}
.footer-wrapper footer .footer-nav h4 {
  font-weight: 700;
  color: var(--dark-green);
}
.footer-wrapper footer .footer-nav ul {
  padding: 0;
  margin: 0;
}
.footer-wrapper footer .footer-nav ul li {
  list-style: none;
}
.footer-wrapper footer .footer-nav ul li a {
  text-decoration: none;
  color: var(--dark-green);
  transition: 0.2s;
}
.footer-wrapper footer .footer-nav ul li a:hover {
  font-weight: 600;
  text-decoration: underline;
}

.page-title {
  padding-bottom: 1em;
}

#site-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--dark-green);
}
#site-content a {
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  padding: 3px 6px;
  border-radius: 0.5em;
  display: inline-block;
  transition: 0.3s;
}
#site-content a:hover {
  transform: rotate(-1deg);
}
#site-content img {
  border-radius: 0.5em;
}

.home .header-main {
  background: var(--yellow);
}
/*# sourceMappingURL=style.css.map */