.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background-color: #efffd8;
}

.font-display {
  font-family: 'Baloo 2', cursive;
}

.font-body {
  font-family: 'Nunito Sans', sans-serif;
}

.kvs-brand-nav {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 24px;
  color: #2e5e14;
}

@media (max-width: 480px) {
  .kvs-brand-nav {
    font-size: 16px;
  }
  .kvs-logo {
    height: 36px;
  }
}

.kvs-brand-footer {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
}

.kvs-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* WhatsApp floating button */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-pulse {
  animation: pulse-glow 2s infinite;
}

.whatsapp-container:hover .whatsapp-tooltip {
  visibility: visible !important;
  opacity: 1 !important;
}

.whatsapp-tooltip {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
}

/* Marquee animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 12s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

/* Program Cards */
.program-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.program-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.program-card.open {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.program-years {
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out;
}

.program-card.open .program-years {
  max-height: 600px !important;
  opacity: 1 !important;
}

.program-card.open #primary-icon,
.program-card.open #secondary-icon {
  transform: rotate(180deg);
}

/* Social Icons */
.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
