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

.footer-logo-text-main {
  font-family: "Courgette", serif;
  font-size:20px;
}

:root {
  --bg-light: #f3f7ff;
  --bg-hero: #eef6ff;
  --bg-section: #f4f7ff;
  --bg-card-green: #d7f0df;
  --bg-card-blue:  #A1DcF3;
  --bg-card-peach: #ffd7c2;
  --accent-blue: #4c7dff;
  --accent-blue-dark: #2e63e5;
  --accent-text: #3266e3;
  --text-dark: #1f2933;
  --text-muted: #4b5563;
  --border-subtle: #e3e7f2;
  --white: #ffffff;
  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-full: 999px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#bubble-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: visible;

  z-index: 9999;
}
.bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.08)
  );
  opacity: 0.6;
  animation-name: bubble-rise;
  animation-timing-function: linear;
}
@keyframes bubble-rise {
  from {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  to {
    transform: translateY(-120vh) translateX(40px) scale(1.15);
    opacity: 0;
  }
}
.page {
  position: relative;
  z-index: 1;
}
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #accedf, #4aacdd, #accedf);
  color: var(--text-dark);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.page {
  width: 100%;
  max-width: none;
  margin: 0;
  box-shadow: none;
  background: linear-gradient(180deg, #accedf, #4aacdd, #accedf);
}
.page-transition-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30000;
  opacity: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 75%, rgba(204, 238, 255, 0.45), rgba(204, 238, 255, 0) 45%),
    radial-gradient(circle at 75% 30%, rgba(182, 226, 255, 0.4), rgba(182, 226, 255, 0) 52%),
    rgba(138, 196, 229, 0.4);
  backdrop-filter: saturate(115%) blur(2px);
  -webkit-backdrop-filter: saturate(115%) blur(2px);
}
.page-transition-overlay.active {
  animation: bubble-overlay-cover 1.98s ease-out both;
}
.transition-bubble {
  position: absolute;
  bottom: calc(var(--start-y, 20vh) * -1);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.62),
    rgba(255, 255, 255, 0.18)
  );
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.65);
  animation-name: bubble-burst-rise;
  animation-timing-function: cubic-bezier(0.16, 0.67, 0.18, 1);
  animation-fill-mode: both;
}
@keyframes bubble-burst-rise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.65);
    opacity: 0;
  }
  8% {
    opacity: 0.96;
  }
  48% {
    opacity: 0.98;
  }
  78% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(var(--drift-x, 0px), calc(var(--rise-y, 170vh) * -1), 0) scale(1.28);
    opacity: 0;
  }
}
@keyframes bubble-overlay-cover {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
   padding: 6px 36px;
 background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);

  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.logo-circle {
  
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #a3d5ff, #4f87ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
   width: 34px;
  height: 34px;
  font-size: 16px;
  position: relative;
}
.logo-circle::before,
.logo-circle::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.logo-circle::before {
  width: 22px;
  height: 22px;
}
.logo-circle::after {
  width: 15px;
  height: 15px;
}
.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.logo-text {
  margin-left: 0 !important;
  padding-left: 0 !important;
  font-weight: 400;
  font-size: 24px;
  font-family: "Courgette";
}
.nav-links {
  display: flex;
  gap: 68px;
  margin-left: auto;
  color: #475569;
  font-size: 16px;
  font-weight: 500;
}
.nav-link:hover {
  color: var(--accent-blue);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger-line {
  width: 30px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-link {
  position: relative;
  padding-bottom: 4px;
}
.nav-link.active {
  font-weight: 600;
  color: var(--text-dark);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: #76c7a0;
  left: 0;
  right: 0;
  bottom: -4px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.notif-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #1f2933;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.notif-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.avatar {
  border-radius: 999px;
  background: #6f88ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
   width: 30px;
  height: 30px;
  font-size: 15px;
}
.hero {
    padding: 90px 60px 100px;
  background: transparent;
  text-align: center;
}
.hero-title {
  font-family: "Lora", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}

.hero-title span {
  color: #97ffcd;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.hero-subtitle {
  margin-top: 24px;
  font-size: 25px;
  color: #97ffcd;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
  font-family: "Lora", serif;
  font-weight: 600;
  
}
.hero-title {
  text-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.hero-cta {
  margin-top: 30px;
}
.primary-btn {
  padding: 11px 26px;
  border-radius: var(--radius-full);
  background: linear-gradient(to bottom, var(--accent-blue), var(--accent-blue-dark));
  color: white;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(76, 125, 255, 0.35);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}
.primary-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(76, 125, 255, 0.4);
}
.section {
  padding: 36px 50px 45px;
  background: #f8f9fa;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  margin: 30px 50px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-family: "Lora", serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #4b5563;
}
.section-text {
  font-size: 16px;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
  color: #4b5563;
}
.partnerships-section {
  padding: 60px 40px;
  background: transparent;
}
.partnerships-title {
  font-family: "Lora", serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 48px;
  text-align: center;
}

.partnerships-stack {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.partnership-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partnership-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.partnership-card.left-text {
  grid-template-columns: 1fr 1fr;
}
.partnership-card.right-text {
  grid-template-columns: 1fr 1fr;
}
.partnership-card.right-text .partnership-image {
  order: -1;
}
.partnership-text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partnership-card-title {
  font-family: "Lora", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.partnership-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.partnership-image {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partnership-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.highlights-section {
  padding: 50px 60px;
  background: transparent;
}
.highlights-wrapper {
  margin-top: 0;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
.highlights-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.highlights-title {
  font-family: "Lora", serif;
  font-size: 26px;
  color: #ffffff;
}

.view-all-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid #ffffff;
  background: transparent;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
}
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.event-card {
  border-radius: 18px;
  padding: 24px 24px 18px;
  box-shadow: var(--shadow-soft);
  background: var(--bg-card-green);
  position: relative;
  overflow: hidden;
}

.clickable-card {
  cursor: pointer;
}
.event-card.blue {
  background: var(--bg-card-blue);
}
.event-card.peach {
  background: var(--bg-card-peach);
}
.event-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.meta {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-icon {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  border: 1px solid rgba(55, 65, 81, 0.2);
  position: relative;
}

.meta-icon::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(55, 65, 81, 0.3);
  top: 2px;
  left: 2px;
}
.meta-icon.location {
  border-radius: 999px;
}
.meta-icon.location::before {
  border-radius: 999px;
  height: 5px;
  width: 5px;
  border-width: 2px;
  top: 3px;
  left: 3px;
}
.learn-bar {
  margin-top: 12px;
  padding: 6px 10px;
  border: none;
  width: 100%;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  color: #6b7280;
}

.community-highlights-section {
  padding: 28px 60px 50px;
  background: transparent;
}
.community-highlights-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.community-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.community-highlight-card {
  background: #f8f9fa;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.community-highlight-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.community-highlight-content {
  padding: 14px 16px 16px;
}
.community-highlight-content h4 {
  font-family: "Lora", serif;
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.community-highlight-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.cta-section {
  padding: 60px 40px 70px;
  background: transparent;
  text-align: center;
}
.cta-title {
  font-family: "Lora", serif;
  font-size: 34px;
  margin-bottom: 14px;
  color: #ffffff;
}
.cta-subtitle {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 30px;
}
.cta-buttons {
  display: inline-flex;
  gap: 10px;
}
.secondary-btn {
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: 1px solid #d1d5db;
  font-size: 13px;
  font-weight: 500;
  background: #ffffff;
  color: #4b5563;
}
.footer {
  padding: 40px 60px 30px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
  color: #6b7280;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 24px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #a3d5ff, #4f87ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.footer-logo-circle::before,
.footer-logo-circle::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.footer-logo-circle::before {
  width: 22px;
  height: 22px;
}

.footer-logo-circle::after {
  width: 15px;
  height: 15px;
}
.footer-logo-text-main {
  font-weight: 600;
}
.footer-section-title {
  font-weight: 600;
  margin-bottom: 9px;
  color: #111827;
}
.footer-list {
  list-style: none;
  line-height: 1.7;
}
.footer-list a {
  color: inherit;
  text-decoration: none;
}
.footer-list a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(107, 114, 128, 0.5);
  text-underline-offset: 2px;
}
.footer-line {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 12px;
}
.footer-bottom {
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
}

.hov {
  transition: transform 0.25s ease;
}
.hov:hover {
  transform: scale(1.03);
}
.dark {
  transition: background-color 0.25s ease;
}
.dark:hover {
  background-color: rgb(237, 237, 237);
}
@media (max-width: 768px) {
  .nav {
    padding-inline: 20px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .nav-link:last-child {
    border-bottom: none;
  }
  .hero {
    padding: 60px 20px 70px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .section {
    padding: 28px 24px 36px;
    margin: 20px auto;
    max-width: calc(100% - 40px);
  }
  .highlights-section,
  .community-highlights-section,
  .cta-section,
  .footer,
  .partnerships-section {
    padding-inline: 20px;
  }
  .highlights-wrapper,
  .community-highlights-wrapper {
    padding-inline: 0;
  }
  .partnership-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .partnership-card.right-text .partnership-image {
    order: 0;
  }
  .partnership-image {
    height: 250px;
  }
  .cards-row {
    grid-template-columns: 1fr;
  }
  .community-highlights-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 16px 50px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .section {
    padding: 20px 16px 28px;
    margin: 12px auto;
    max-width: calc(100% - 24px);
  }
  .highlights-section,
  .community-highlights-section,
  .cta-section,
  .footer,
  .partnerships-section {
    padding-inline: 12px;
  }
  .highlights-wrapper,
  .community-highlights-wrapper {
    padding: 8px;
  }
  .highlights-title {
    font-size: 22px;
  }
  .partnerships-title {
    font-size: 26px;
  }
  .partnership-card {
    padding: 16px;
  }
  .community-highlight-image {
    height: 160px;
  }
  .footer {
    padding: 20px 16px;
  }
}
