@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap');
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff1eb, #ace0f9);
  color: #ff9a9e;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
   font-family: "Bubblegum Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff0f5;
  color: #3b1c2d;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
   font-family: "Bubblegum Sans", sans-serif;
  color: #ff69b4;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff1493;
}

.cta-button {
  background: #ffb6c1;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.cta-button:hover {
  background: #ff69b4;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 240, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 2px dashed #ffc0cb;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo h1 {
  font-size: 1.5rem;
  color: #ff69b4;
  font-family: "Bubblegum Sans", sans-serif;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.site-nav a {
  font-weight: 600;
  color: #db4e8d;
  font-size: 1rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #ff69b4;
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ff69b4;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff0f5;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

.site-footer {
  background: #ffe4ea;
  padding: 4rem 5% 2rem;
  color: #4c2b34;
  font-size: 1rem;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 1rem;
  color: #85566e;
  line-height: 1.6;
}

.footer-contact h3,
.footer-hours h3 {
   font-family: "Bubblegum Sans", sans-serif;
  color: #ff69b4;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.footer-contact p,
.footer-hours p {
  margin-bottom: 0.5rem;
  color: #4c2b34;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.footer-socials img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.2);
}

.footer-links {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
}

.footer-links a {
  color: #b04c7c;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff69b4;
}

.footer-bottom {
  text-align: center;
  color: #a96e86;
  font-size: 0.85rem;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff0f5;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(255, 105, 180, 0.1);
  backdrop-filter: blur(8px);
  max-width: 90%;
  border: 2px dashed #ffc0cb;
}

.cookies-section p {
  margin: 0;
  color: #4c2b34;
 font-size: 1rem;
  flex: 1;
}

.cookies-button {
  background: #ffb6c1;
  color: white;
  border: none;
  padding: 0.5rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookies-button:hover {
  background: #ff69b4;
}

@media (max-width: 640px) {
  .cookies-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
  }

  .cookies-button {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 100vh;
  padding: 8rem 5% 4rem;
  background: linear-gradient(to bottom right, #ffe4f0, #fff0f5);
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  z-index: 2;
  max-width: 580px;
}

.hero-title {
  font-family: "Bubblegum Sans", sans-serif;
  font-size: 3rem;
  color: #ff69b4;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #5c3345;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 960px) {
  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-content {
    margin-top: 2rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

.popular-courses-section {
  background: #fff7fa;
  padding: 6rem 5% 4rem;
  text-align: center;
}

.popular-courses-section h2 {
  font-size: 2.5rem;
  color: #ff69b4;
  margin-bottom: 3rem;
 font-family: "Bubblegum Sans", sans-serif;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.course-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.course-card img {
  width: 100%;
  max-width: 120px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.course-card h3 {
  color: #db4e8d;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-family: "Bubblegum Sans", sans-serif;
}

.course-card p {
  font-size: 1rem;
  color: #5c3345;
  line-height: 1.5;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(255, 105, 180, 0.2);
}

.course-card:hover img {
  transform: scale(1.1);
}

.levels-section {
  background: #fff0f5;
  padding: 6rem 5% 4rem;
  text-align: center;
}

.levels-section h2 {
  font-size: 2.5rem;
  color: #ff69b4;
  margin-bottom: 3rem;
  font-family: "Pacifico", cursive;
}

.level-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.level-step {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(255, 105, 180, 0.15);
  transition: transform 0.3s ease;
}

.level-step:hover {
  transform: translateY(-6px);
}

.level-step img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.level-step h3 {
  color: #db4e8d;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.level-step p {
 font-size: 1rem;
  color: #5c3345;
  margin-top: 1rem;
}

.progress-bar {
  height: 12px;
  background: #ffe6f0;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 auto;
  width: 80%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #ffb6c1, #ff69b4);
  border-radius: 6px;
  transition: width 0.6s ease;
}

.gallery-section {
  background-color: #ffeaf3;
  padding: 6rem 5% 4rem;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  color: #ff69b4;
  margin-bottom: 3rem;
  font-family: "Bubblegum Sans", sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(255, 105, 180, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: linear-gradient(to top, rgba(255, 105, 180, 0.6), transparent);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  background: #fff5f9;
  padding: 6rem 5% 4rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
   font-family: "Bubblegum Sans", sans-serif;
  color: #ff69b4;
  margin-bottom: 1rem;
}

.contact-intro {
  font-size: 1.05rem;
  color: #5c3345;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.1);
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-6px);
}

.contact-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.contact-box h3 {
  color: #db4e8d;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-box p {
  color: #5c3345;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-box a {
  color: #ff69b4;
  font-weight: 600;
}

.about-page-section {
  background: #fff5f9;
  padding: 6rem 5% 4rem;
  text-align: center;
}

.about-page-section h2 {
  font-size: 2.5rem;
  font-family: "Bubblegum Sans", sans-serif;
  color: #ff69b4;
  margin-bottom: 1rem;
}

.about-intro {
  font-size: 1.05rem;
  color: #5c3345;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.about-slider {
  overflow: hidden;
  margin: 0 auto 3rem;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(255, 105, 180, 0.1);
}

.slider-track {
  display: flex;
  animation: scrollSlider 24s linear infinite;
}

.slide {
  flex: 0 0 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px 20px 0 0;
}

.slide-caption {
  background: #ffe0eb;
  color: #5c3345;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 0 0 20px 20px;
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0%);
  }
  33% {
    transform: translateX(-100%);
  }
  66% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-300%);
  }
}

.mission-box {
  background: #fff;
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(255, 105, 180, 0.08);
}

.mission-box h3 {
  font-size: 1.4rem;
  color: #db4e8d;
  margin-bottom: 1rem;
}

.mission-box p {
  color: #5c3345;
  font-size: 1rem;
  line-height: 1.7;
}

.course-details-section {
  background: #fffafc;
  padding: 6rem 5% 4rem;
  text-align: center;
}

.course-details-section h2 {
  font-size: 2.5rem;
   font-family: "Bubblegum Sans", sans-serif;
  color: #ff69b4;
  margin-bottom: 3rem;
}

.course-scroll-wrapper {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  scroll-behavior: smooth;
}

.course-page {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.15);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.course-page img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.course-info {
  padding: 1.5rem;
}

.course-info h3 {
  color: #db4e8d;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.course-info p {
  font-size: 1rem;
  color: #5c3345;
  line-height: 1.6;
}

.course-scroll-wrapper::-webkit-scrollbar {
  height: 10px;
}

.course-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ffb6c1;
  border-radius: 6px;
}

.title_background {
  background-color: #ffeaf3;
  padding: 6rem 5% 2rem;
  text-align: center;
  border-bottom: 2px dashed #ffc0cb;
}

.title_background .title {
  font-size: 2rem;
   font-family: "Bubblegum Sans", sans-serif;
  color: #ff69b4;
  letter-spacing: 1px;
}

.text_background {
  background-color: #fff5f9;
  padding: 4rem 5% 6rem;
}

.text_background .text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5c3345;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(255, 105, 180, 0.06);
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.5rem;
  }

  .text_background .text {
    font-size: 1rem;
    padding: 1.5rem;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff0f5;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-container {
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.loader-logo {
  width: 64px;
  height: 64px;
  animation: bounce 1.6s infinite ease-in-out;
  margin-bottom: 1rem;
}

.loader-text {
  color: #ff69b4;
  font-size: 1.1rem;
  font-weight: 600;
   font-family: "Bubblegum Sans", sans-serif;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#levels h2 {
  font-family: "Bubblegum Sans", sans-serif !important;
}