@charset "UTF-8";
/* Theme variables */
/* Reset + base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 60px 0 0 0;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #2B3240;
  background: linear-gradient(180deg, #ffffff 0%, #F7F8FC 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.section-title {
  font-family: "Baloo 2", system-ui, cursive;
  font-weight: 700;
  color: #1D2764;
  font-size: 2rem;
  margin: 0 0 14px 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}
.section-title .accent-underline {
  display: inline-block;
  position: relative;
}
.section-title .accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(238, 164, 33, 0.35), rgba(238, 164, 33, 0.9));
}

.section-lead {
  color: #616A7A;
  max-width: 760px;
  margin-bottom: 28px;
}

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  will-change: transform;
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus-visible {
  outline: 3px solid rgba(238, 164, 33, 0.65);
  outline-offset: 3px;
}

.btn-primary {
  background: #EEA421;
  color: #211C11;
  box-shadow: 0 6px 20px rgba(29, 39, 100, 0.08);
}
.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(29, 39, 100, 0.12);
}

.btn-secondary {
  background: #1D2764;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(29, 39, 100, 0.08);
}
.btn-secondary:hover {
  box-shadow: 0 10px 30px rgba(29, 39, 100, 0.12);
}

.btn-link {
  background: transparent;
  color: #1D2764;
  text-decoration: underline;
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid rgba(29, 39, 100, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}
.brand .logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #EEA421 0%, #f0b03d 40%, #FFD87A 80%);
  box-shadow: inset 0 6px 16px rgba(0, 0, 0, 0.08), 0 6px 16px rgba(29, 39, 100, 0.12);
  position: relative;
}
.brand .logo::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1D2764;
  box-shadow: 0 2px 6px rgba(29, 39, 100, 0.35);
  animation: float 3.5s ease-in-out infinite;
}
.brand .title {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand .title .name {
  font-family: "Baloo 2", cursive;
  color: #1D2764;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.2rem;
}
.brand .title .tag {
  color: #616A7A;
  font-size: 0.85rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nav-links a {
  color: #1D2764;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
}
.nav-links a:hover {
  background: rgba(29, 39, 100, 0.06);
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
  }
}

.hamburger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(29, 39, 100, 0.06);
  border: 1px solid rgba(29, 39, 100, 0.1);
  color: #1D2764;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  padding-bottom: 12px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 10px 12px;
  color: #1D2764;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
}
.mobile-menu a:hover {
  background: rgba(29, 39, 100, 0.06);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 48px;
}
@media (min-width: 768px) {
  .hero {
    padding: 48px 0 72px;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 42px;
  }
}

.hero h1 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  color: #1D2764;
  letter-spacing: 0.2px;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero-quote {
  font-style: italic;
  color: #616A7A;
  background: #fff;
  border-left: 6px solid #EEA421;
  padding: 12px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(29, 39, 100, 0.08);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  min-height: 260px;
  border-radius: 26px;
  background: radial-gradient(120px 120px at 20% 30%, rgba(238, 164, 33, 0.7), transparent 70%), radial-gradient(120px 120px at 80% 30%, rgba(29, 39, 100, 0.2), transparent 70%), linear-gradient(160deg, #fff 0%, #FDF6E5 60%, #FFF7CC 100%);
  box-shadow: 0 10px 30px rgba(29, 39, 100, 0.12);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-media {
    min-height: 320px;
  }
}

/* Generic grids */
.grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .grid {
    gap: 20px;
  }
}

.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Cards */
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(29, 39, 100, 0.08);
  padding: 18px;
}
@media (min-width: 768px) {
  .card {
    padding: 22px;
  }
}

.card-playful {
  position: relative;
  overflow: hidden;
}
.card-playful .pill {
  display: inline-block;
  background: rgba(238, 164, 33, 0.15);
  color: #1C1C1C;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.card-playful h3 {
  margin: 10px 0 8px 0;
  font-family: "Baloo 2", cursive;
  color: #1D2764;
  font-size: 1.25rem;
}
.card-playful p {
  color: #616A7A;
  margin: 0;
}
.card-playful .emoji {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 28px;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.08));
}

/* Highlight section */
.highlight {
  background: linear-gradient(180deg, #fff 0%, #FFF9E9 100%);
  border: 2px solid rgba(238, 164, 33, 0.45);
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(29, 39, 100, 0.08);
  padding: 20px;
}
@media (min-width: 768px) {
  .highlight {
    padding: 28px;
  }
}
.highlight h3 {
  margin: 0 0 8px 0;
  font-family: "Baloo 2", cursive;
  color: #1D2764;
  font-size: 1.5rem;
}
.highlight .meta {
  color: #2B3240;
  font-weight: 600;
  margin-bottom: 10px;
}
.highlight .list {
  margin: 10px 0 0 0;
  padding-left: 18px;
}
.highlight .list li {
  margin-bottom: 6px;
}
.highlight .price {
  font-weight: 800;
  color: #1C1C1C;
  font-size: 1.1rem;
  background: rgba(238, 164, 33, 0.25);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
}

.pswp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 12px;
}
@media (min-width: 768px) {
  .pswp-gallery {
    gap: 16px;
  }
}
.pswp-gallery img {
  border-radius: 14px;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Certificates */
.certs-grid .cert {
  border: 2px dashed rgba(29, 39, 100, 0.2);
  background: linear-gradient(135deg, rgba(29, 39, 100, 0.04), rgba(238, 164, 33, 0.06));
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  color: #616A7A;
  font-weight: 600;
}

/* Contact */
.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .contact-card {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-box {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(29, 39, 100, 0.08);
  padding: 18px;
}
@media (min-width: 768px) {
  .contact-box {
    padding: 22px;
  }
}
.contact-box .row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.contact-box .row .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(29, 39, 100, 0.08);
  border: 1px solid rgba(29, 39, 100, 0.12);
  font-size: 20px;
}
.contact-box .row .data {
  font-weight: 700;
  color: #1D2764;
}
.contact-box .row a {
  color: #1D2764;
  text-decoration: none;
}

/* Footer */
.footer {
  padding: 24px 0;
  color: #616A7A;
  font-size: 0.95rem;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* Accessibility preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/*Modal*/
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  margin-top: 73px;
  height: calc(95vh - 73px);
  width: 95vw;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/*# sourceMappingURL=style.css.map */
