/* Theme 2 - Exact Unixwave Replica */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --t2-bg: #F8F3ED;
  --t2-darkbrown: #3C2921;
  --t2-footer: #301E17;
  --t2-orange: #FF6A28;
  --t2-yellow: #F6CE41;
  --t2-green: #6BCB5A;
  --t2-blue: #4BA2ED;
  --t2-light-blue: #40A4FF;
}

body {
  background-color: var(--t2-bg);
  font-family: 'Nunito', sans-serif;
  color: var(--t2-darkbrown);
  overflow-x: hidden;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none !important;
}

.t2-heading,
h1,
h2,
h3 {
  font-family: 'Fredoka', sans-serif;
  color: var(--t2-darkbrown);
  font-weight: 600;
}

.t2-heading {
  font-size: 2.8rem;
  letter-spacing: -1px;
}

.text-darkbrown {
  color: var(--t2-darkbrown) !important;
}

.bg-darkbrown {
  background-color: var(--t2-darkbrown) !important;
}

.bg-orange-solid {
  background-color: var(--t2-orange) !important;
}

.bg-green-solid {
  background-color: var(--t2-green) !important;
  color: #fff;
}

.bg-blue-solid {
  background-color: var(--t2-blue) !important;
  color: #fff;
}

.bg-yellow {
  background-color: var(--t2-yellow) !important;
}

.text-orange {
  color: var(--t2-orange) !important;
}

.text-blue {
  color: var(--t2-blue) !important;
}

.text-green {
  color: var(--t2-green) !important;
}

.btn-white {
  background: #fff !important;
  color: var(--t2-darkbrown);
  border-radius: 30px;
  padding: 10px 25px;
}

.t2-btn-orange {
  background-color: var(--t2-orange);
  color: #fff;
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
}

.t2-btn-orange:hover {
  background-color: #e55c29;
  color: #fff;
  transform: translateY(-2px);
}

.t2-btn-outline-dark {
  border: 1px solid rgba(60, 41, 33, 0.3);
  color: var(--t2-darkbrown);
  border-radius: 30px;
  padding: 8px 25px;
  font-weight: 700;
  font-size: 14px;
  background: white;
}

.t2-navbar {
  padding: 20px 0;
  background: transparent;
}

.t2-logo {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--t2-darkbrown) !important;
  letter-spacing: -1px;
}

.t2-nav-links .nav-link {
  color: var(--t2-darkbrown) !important;
  font-weight: 700;
  font-size: 13px;
  margin: 0 15px;
}

/* HERO */
.t2-hero {
  padding-bottom: 50px;
}

.t2-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-top: 10px;
}

.t2-hero-title span {
  color: var(--t2-darkbrown);
}

.t2-hero-checks {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

.t2-hero-checks span {
  margin: 0 15px;
  display: inline-flex;
  align-items: center;
}

.t2-hero-checks i {
  font-size: 10px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  margin-right: 8px;
}

.float-balloon {
  position: absolute;
  top: 0;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.float-ball {
  position: absolute;
  top: 20px;
  right: 15%;
  animation: float 5s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-img-col {
  height: 350px;
}

.hero-left-img-wrapper {
  width: 220px;
  height: 260px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero-right-img-wrapper {
  width: 220px;
  height: 260px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.hero-person {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.border-green {
  border-bottom: 30px solid var(--t2-green);
  padding: 5px;
  background: var(--t2-green);
}

.border-yellow {
  border-bottom: 30px solid var(--t2-yellow);
  padding: 5px;
  background: var(--t2-yellow);
  border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
}

.float-target {
  position: absolute;
  bottom: 20px;
  left: -20px;
  z-index: 3;
}

.float-backpack {
  position: absolute;
  bottom: 40px;
  right: -10px;
  z-index: 3;
}

/* STATS */
.t2-stats-strip {
  position: relative;
  z-index: 5;
  margin-top: -30px;
}

.t2-stats-box {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.bg-red-fade {
  background: #FF5A5F;
}

.bg-yellow-fade {
  background: #F6CE41;
  color: var(--t2-darkbrown) !important;
}

.bg-green-fade {
  background: #87CD52;
}

.stat-desc {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.3;
}

.border-left-dark {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.float-plane {
  position: absolute;
  right: -15px;
  top: -15px;
  transform: rotate(15deg);
}

/* CARDS */
.enroll-btn {
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

.fly-card {
  border-radius: 20px;
  height: 350px;
}

.fly-card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  z-index: 2;
}

.fly-title-center {
  text-align: center;
  margin-top: 20px;
}

.fly-card-img {
  width: 90%;
  height: 80%;
  object-fit: cover;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}

.fly-card-img-center {
  height: 75%;
  object-fit: cover;
  z-index: 2;
  align-self: center;
  border-radius: 20px;
}

.float-basketball {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
  z-index: 3;
}

/* FACULTY / SHAPING */
.faculty-img-wrapper {
  position: relative;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.faculty-img-wrapper img {
  z-index: 2;
  width: 80%;
  height: 90%;
  object-fit: cover;
  padding: 10px;
}

.shape-blue {
  background: #5EC1FF;
  border-radius: 40% 60% 70% 30% / 50%;
}

.shape-orange {
  background: #FF8F6B;
  border-radius: 50% 50% 0 0;
}

.shape-green {
  background: #87CD52;
  border-radius: 50%;
}

.shape-yellow {
  background: #F6CE41;
  border-radius: 30% 70% 60% 40% / 50%;
}

.float-sun {
  position: absolute;
  top: 0;
  left: 5%;
  width: 40px;
}

.float-heart {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 30px;
  transform: rotate(15deg);
}

/* BANNERS */
.t2-confidence-banner {
  display: flex;
  height: 320px;
  border-radius: 25px;
  overflow: visible;
  position: relative;
}

.conf-left {
  flex: 1;
  padding: 40px;
  border-radius: 25px 0 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conf-right {
  flex: 1;
  padding: 40px 40px 40px 60px;
  border-radius: 0 25px 25px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conf-title {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
}

.conf-center-kid {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  height: 380px;
  z-index: 5;
  display: flex;
  align-items: center;
}

.img-circle-crop {
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 50%;
}

.border-white-thick {
  border: 10px solid #fff;
}

.conf-float-backpack {
  position: absolute;
  bottom: 20px;
  right: 20%;
  width: 40px;
  z-index: 2;
}

.conf-float-star {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 30px;
  z-index: 2;
}

.conf-float-pinwheel {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 50px;
  z-index: 2;
}

/* EMPOWER */
.empower-arrow {
  position: absolute;
  bottom: -30px;
  left: 40%;
  width: 50px;
  transform: rotate(-45deg);
}

.empower-girl {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 60% 40% / 50% 50% 70% 30%;
  border-bottom: 30px solid var(--t2-blue);
  background: var(--t2-blue);
  padding: 10px;
}

.empower-img-bg {
  background: transparent;
}

.empower-heart {
  position: absolute;
  top: 40px;
  right: 10%;
  width: 35px;
  background: white;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.empower-globe {
  position: absolute;
  right: -30px;
  top: 50%;
  width: 60px;
  z-index: 4;
}

.empower-stats {
  position: absolute;
  bottom: -20px;
  left: -50px;
  width: 110%;
  z-index: 5;
  padding: 15px !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-icon-sm {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

/* EVENT BANNER */
.event-left {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

.event-right {
  border-radius: 0 20px 20px 0;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) sepia(20%) hue-rotate(80deg);
}

.bg-yellow-dark {
  background: #E6BD39;
}

.event-doodle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  opacity: 0.8;
}

/* FOOTER */
.t2-footer {
  background-color: var(--t2-footer);
}

.t2-footer a:hover {
  color: var(--t2-orange) !important;
}

/* RESPONSIVENESS */
@media (max-width: 1200px) {
  .t2-hero-title { font-size: 2.8rem; }
  .conf-center-kid { height: 320px; top: -20px; }
}

@media (max-width: 991px) {
  .hero-left-img-wrapper, .hero-right-img-wrapper { display: none; }
  .t2-hero { padding-top: 20px; text-align: center; }
  .t2-hero-checks { justify-content: center; }
  
  .t2-confidence-banner { flex-direction: column; height: auto; margin-top: 50px; }
  .conf-left { border-radius: 25px 25px 0 0; text-align: center; align-items: center; }
  .conf-right { border-radius: 0 0 25px 25px; padding: 40px; text-align: center; }
  .conf-center-kid { display: none; }
  
  .event-banner { flex-direction: column; }
  .event-left { border-radius: 25px 25px 0 0; height: 200px; min-height: 200px; }
  .event-right { border-radius: 0 0 25px 25px; text-align: center; }
  
  .empower-stats { position: relative; bottom: auto; left: auto; margin-top: 20px; width: 100% !important; flex-direction: column; gap: 15px; }
  .empower-stats > div { width: 100% !important; border: none !important; }
}

@media (max-width: 768px) {
  .t2-hero-title { font-size: 2.2rem; }
  .t2-heading { font-size: 2rem; }
  .border-left-dark { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; }
  .stat-item { justify-content: center; }
  .program-cards-mobile { flex-wrap: wrap; }
  
  .float-balloon, .float-ball, .float-plane, .float-basketball, .float-sun, .float-heart, .empower-globe, .empower-heart, .event-doodle { display: none !important; }
}

@media (max-width: 576px) {
  .t2-hero-title { font-size: 1.8rem; }
  .t2-navbar { padding: 10px 0; }
  .custom-container { padding: 0 15px; }
  .t2-stats-strip { margin-top: 0; }
  .t2-stats-box { border-radius: 15px; }
  .stat-item { padding: 15px 0; }
  .t2-review-card { padding: 25px; }
  .t2-logo { font-size: 1.5rem; }
  .t2-heading { font-size: 1.8rem; }
  
  /* Section Spacing */
  .t2-section { padding-top: 40px !important; padding-bottom: 40px !important; }
  .mt-5, .my-5 { margin-top: 30px !important; }
  
  /* Board Toppers Mobile */
  .topper-card { margin-bottom: 20px; }
  
  /* Notice Board Mobile */
  .notice-board { height: 350px !important; }
}