@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Bitter:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Bitter:ital,wght@0,100..900;1,100..900&family=Comic+Relief:wght@400;700&display=swap');




h1,
h2,
h3,
h4,
h5 {
  /* font-family: "Anonymous Pro", monospace; */
}


.logo-font{
 /* font-family: "Comic Relief", system-ui; */
  font-weight: 700;
  font-style: normal;
}
.glow-on-hover:hover {
  color: #000;
  text-shadow: 0 0 6px #8f97a3;
  transition: text-shadow 0.3s ease;
}

.hero-gradient {
  /* background: #0000; */

  background: linear-gradient(90deg, #240e03 44%, #ffffff3b 89%);
}
.hero-bg {
  position: relative;
  /* Remove transform from here */
  background: none; /* Remove background-image from here */
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  pointer-events: none;
}
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gkps-header-text {
  color: #D62828;
  font-weight: 700;
}

.gkps-section-card {
  background: #fbf8f5;
}

.gkps-image-placeholder {
  background: linear-gradient(45deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 500;
}

.gkps-floating {
  animation: gkps-float 3s ease-in-out infinite;
}

@keyframes gkps-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.curriculum-card-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes heartFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(-10deg);
  }
  50% {
    transform: translateY(-20px) rotate(-15deg);
  }
}

@keyframes pencilFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(15deg);
  }
  50% {
    transform: translateY(-15px) rotate(20deg);
  }
}

.leadership-principal-card {
  border-radius: 0px 0px 22px 0px;
}
.gentleplay-book-float {
  animation: gentleplayBookFloat 4s ease-in-out infinite;
}

@keyframes gentleplayRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes gentleplayBookFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(-5deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.carousel-nav-btn {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}

.carousel-nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.carousel-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-indicator {
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-indicator.active {
  background: #4f46e5;
  transform: scale(1.2);
}

.carousel-progress {
  transition: width 0.1s linear;
}

/* Loading animation */
.carousel-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #4f46e5;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile touch indicators */
.touch-indicator {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-container:hover .touch-indicator {
  opacity: 1;
}

/* Smooth fade animation for slide content */
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.carousel-slide:hover .slide-content {
  transform: translateY(0);
}
