/**
* ============================================================
*  Urban Pulse — custom theme layer
*  Loaded AFTER style.css to re-skin the template with a
*  bold, modern, "urban & fun" African-inspired look.
*  Palette: sunset orange, hot pink, deep purple, gold, teal.
* ============================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --up-orange: #FF6B35;
  --up-pink: #FF3D81;
  --up-purple: #7C3AED;
  --up-gold: #FFC857;
  --up-teal: #06D6A0;
  --up-blue: #00B4D8;
  --up-dark: #100E1B;
  --up-dark2: #1B1730;
  --up-cream: #FFF8F0;

  --up-gradient: linear-gradient(135deg, var(--up-orange) 0%, var(--up-pink) 50%, var(--up-purple) 100%);
  --up-gradient-2: linear-gradient(135deg, var(--up-teal) 0%, var(--up-blue) 100%);
  --up-gradient-gold: linear-gradient(135deg, var(--up-gold) 0%, var(--up-orange) 100%);

  --up-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.35);
  --up-shadow-lg: 0 20px 50px -15px rgba(255, 61, 129, 0.35);
  --up-radius: 22px;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
body {
  font-family: "Outfit", sans-serif;
  color: #4a4768;
  background: var(--up-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fredoka", "Outfit", sans-serif;
  color: var(--up-dark);
}

a {
  color: var(--up-pink);
}

a:hover {
  color: var(--up-orange);
}

/* fun scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--up-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--up-gradient);
  border-radius: 10px;
}

/* generic gradient text helper */
.text-gradient {
  background: var(--up-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

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

@keyframes up-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 61, 129, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(255, 61, 129, 0); }
}

@keyframes up-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes up-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------
# Header / Navigation
--------------------------------------------------------------*/
#header {
  background: transparent;
  box-shadow: 0 4px 30px rgba(16, 14, 27, 0.15);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* glass effect lives on a pseudo-element so #header itself never becomes a
   containing block for fixed-position children (the mobile nav overlay) --
   backdrop-filter/filter on #header would otherwise trap .navbar-mobile
   inside the header's own box instead of covering the viewport. */
#header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 14, 27, 0.65);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

#header .logo,
#header .logo a {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 26px;
  background: var(--up-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.5px;
}

.navbar a,
.navbar a:focus {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #f5f0ff !important;
  padding: 10px 18px;
  margin: 0 4px;
  border-radius: 50px;
  transition: all 0.35s ease;
}

.navbar a:hover,
.navbar li:hover > a {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.navbar .active,
.navbar .active:focus {
  color: #100E1B !important;
  background: var(--up-gradient-gold);
  box-shadow: var(--up-shadow);
}

.mobile-nav-toggle {
  color: #fff;
}

.navbar-mobile {
  background: rgba(16, 14, 27, 0.97);
}

.navbar-mobile .mobile-nav-toggle {
  color: #fff;
}

.navbar-mobile ul {
  background: var(--up-dark2);
  border-radius: var(--up-radius);
  box-shadow: var(--up-shadow-lg);
}

.navbar-mobile a,
.navbar-mobile a:focus {
  color: #f5f0ff;
  border-radius: 12px;
  margin: 4px 10px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #100E1B;
  background: var(--up-gradient-gold);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  position: relative;
}

#hero .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 14, 27, 0.78) 0%, rgba(255, 107, 53, 0.35) 45%, rgba(124, 58, 237, 0.55) 100%);
  z-index: 1;
}

#hero .hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  pointer-events: none;
}

#hero .hero-content .hero-badge {
  pointer-events: auto;
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 22px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: up-float 4s ease-in-out infinite;
}

#hero .hero-content h1 {
  pointer-events: auto;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

#hero .hero-content h1 span {
  background: var(--up-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

#hero .hero-content p {
  pointer-events: auto;
  max-width: 640px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}

#hero .hero-buttons {
  pointer-events: auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

#hero .btn-up-primary,
#hero .btn-up-outline {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: 50px;
  transition: all 0.35s ease;
  display: inline-block;
}

#hero .btn-up-primary {
  background: var(--up-gradient);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: var(--up-shadow-lg);
  animation: up-gradient-shift 6s ease infinite;
}

#hero .btn-up-primary:hover {
  transform: translateY(-4px) scale(1.03);
  color: #fff;
}

#hero .btn-up-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

#hero .btn-up-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-4px);
}

#hero .carousel-indicators,
#hero .carousel-control-prev,
#hero .carousel-control-next {
  z-index: 6;
}

#hero .carousel-indicators li {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  width: 28px;
  height: 5px;
}

#hero .carousel-indicators li.active {
  background: var(--up-gradient-gold);
  width: 40px;
}

@media (max-width: 768px) {
  #hero .hero-content h1 {
    font-size: 38px;
  }
  #hero .hero-content p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  background: var(--up-gradient);
  background-size: 200% 200%;
  animation: up-gradient-shift 10s ease infinite;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0, transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.1) 0, transparent 40%);
}

.breadcrumbs h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  position: relative;
}

.breadcrumbs ol {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 10px 22px;
  border-radius: 50px;
}

.breadcrumbs ol li,
.breadcrumbs ol li a {
  color: #fff;
  font-weight: 500;
}

.breadcrumbs ol li a:hover {
  color: var(--up-gold);
}

.breadcrumbs ol li + li::before {
  color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
# Section titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 0;
  position: relative;
  display: inline-block;
  background: var(--up-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-title h2::before,
.section-title h2::after {
  display: none;
}

.section-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 6px;
  margin: 16px auto 0;
  border-radius: 50px;
  background: var(--up-gradient-gold);
}

.section-title p {
  margin-top: 18px;
  color: #6e6a8a;
}

/*--------------------------------------------------------------
# About / Our Family section
--------------------------------------------------------------*/
.about img,
.story-intro img,
.featured-members img {
  border-radius: var(--up-radius);
  box-shadow: var(--up-shadow);
  transition: transform 0.4s ease;
}

.about img:hover,
.story-intro img:hover,
.featured-members img:hover {
  transform: scale(1.02) rotate(-0.5deg);
}

.about .content ul li {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px -10px rgba(124, 58, 237, 0.2);
  list-style: none;
  border: none;
}

.about .content ul li i {
  color: var(--up-pink);
  font-size: 20px;
  margin-right: 10px;
}

.about .content .btn-learn-more,
.btn-learn-more {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  color: #fff !important;
  background: var(--up-gradient);
  background-size: 200% 200%;
  box-shadow: var(--up-shadow-lg);
  transition: all 0.35s ease;
  margin-top: 6px;
}

.about .content .btn-learn-more:hover,
.btn-learn-more:hover {
  transform: translateY(-4px) scale(1.03);
  background: var(--up-gradient-gold);
  color: #100E1B !important;
}

/*--------------------------------------------------------------
# Recent photos / swiper
--------------------------------------------------------------*/
.recent-photos {
  background: var(--up-cream);
}

.recent-photos-slider .swiper-slide img {
  border-radius: 18px;
  box-shadow: 0 14px 30px -12px rgba(16, 14, 27, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.recent-photos-slider .swiper-slide img:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: var(--up-shadow-lg);
}

.recent-photos .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--up-gradient);
}

/*--------------------------------------------------------------
# Event list (Culture & History) cards
--------------------------------------------------------------*/
.event-list {
  background: var(--up-cream);
}

.event-list .card {
  border: none;
  border-radius: var(--up-radius);
  overflow: hidden;
  box-shadow: 0 14px 35px -15px rgba(16, 14, 27, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 30px;
}

.event-list .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--up-shadow-lg);
}

.event-list .card-img {
  overflow: hidden;
}

.event-list .card-img img {
  transition: transform 0.6s ease;
}

.event-list .card:hover .card-img img {
  transform: scale(1.08);
}

.event-list .card-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  color: var(--up-dark);
  position: relative;
  padding-bottom: 10px;
}

.event-list .card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  border-radius: 50px;
  background: var(--up-gradient);
}

.event-list .card:hover .card-body .card-title a {
  color: var(--up-pink);
}

/*--------------------------------------------------------------
# Members
--------------------------------------------------------------*/
.members {
  background: var(--up-cream);
}

.members .member {
  background: #fff;
  border-radius: var(--up-radius);
  overflow: hidden;
  box-shadow: 0 14px 35px -15px rgba(16, 14, 27, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.members .member:hover {
  transform: translateY(-10px);
  box-shadow: var(--up-shadow-lg);
}

.members .member .member-img {
  border-radius: 0;
}

.members .member .member-img img {
  transition: transform 0.6s ease;
}

.members .member:hover .member-img img {
  transform: scale(1.08);
}

.members .member .social a {
  background: var(--up-gradient);
}

.members .member .social a:hover {
  background: var(--up-gradient-gold);
  color: #100E1B;
}

.members .member .member-info h4 {
  font-family: "Fredoka", sans-serif;
  color: var(--up-dark);
}

.members .member .member-info span {
  background: var(--up-gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  background: var(--up-cream);
}

.gallery #gallery-flters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery #gallery-flters li {
  background: #fff;
  border-radius: 50px;
  padding: 10px 26px;
  margin: 0;
  box-shadow: 0 6px 18px -8px rgba(16, 14, 27, 0.18);
  font-weight: 600;
  color: var(--up-dark);
  transition: all 0.3s ease;
}

.gallery #gallery-flters li:hover,
.gallery #gallery-flters li.filter-active {
  background: var(--up-gradient);
  color: #fff;
}

.gallery .gallery-wrap {
  border-radius: var(--up-radius);
  overflow: hidden;
  box-shadow: 0 14px 35px -15px rgba(16, 14, 27, 0.25);
}

.gallery .gallery-wrap::before {
  background: linear-gradient(180deg, rgba(16, 14, 27, 0) 30%, rgba(124, 58, 237, 0.85) 100%);
}

.gallery .gallery-wrap .gallery-links a {
  background: var(--up-gradient-gold);
  color: #100E1B;
}

.gallery .gallery-wrap .gallery-links a:hover {
  background: #fff;
  color: var(--up-pink);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-us iframe {
  border-radius: var(--up-radius);
  box-shadow: var(--up-shadow);
}

.contact-us .info {
  background: #fff;
  border-radius: var(--up-radius);
  padding: 30px;
  box-shadow: 0 14px 35px -15px rgba(16, 14, 27, 0.2);
}

.contact-us .info i {
  background: var(--up-gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
}

.contact-us .info h4 {
  font-family: "Fredoka", sans-serif;
}

.contact-us .php-email-form {
  background: #fff;
  border-radius: var(--up-radius);
  padding: 30px;
  box-shadow: 0 14px 35px -15px rgba(16, 14, 27, 0.2);
}

.contact-us .php-email-form .form-control {
  border-radius: 14px;
  border: 2px solid #f0ecff;
  padding: 12px 18px;
  transition: all 0.3s ease;
}

.contact-us .php-email-form .form-control:focus {
  border-color: var(--up-pink);
  box-shadow: 0 0 0 4px rgba(255, 61, 129, 0.12);
}

.contact-us .php-email-form button[type="submit"] {
  background: var(--up-gradient);
  background-size: 200% 200%;
  border: none;
  border-radius: 50px;
  padding: 14px 42px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--up-shadow-lg);
  transition: all 0.35s ease;
}

.contact-us .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--up-gradient-gold);
  color: #100E1B;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--up-dark);
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.18) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(124, 58, 237, 0.22) 0, transparent 45%);
}

#footer .container {
  position: relative;
}

#footer h3 {
  font-family: "Fredoka", sans-serif;
  background: var(--up-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

#footer p {
  color: rgba(255, 255, 255, 0.7);
}

#footer .social-links a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

#footer .social-links a:hover {
  background: var(--up-gradient);
  border-color: transparent;
  transform: translateY(-4px);
}

#footer .copyright,
#footer .credits {
  color: rgba(255, 255, 255, 0.55);
}

#footer .credits a {
  background: var(--up-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Back to top
--------------------------------------------------------------*/
.back-to-top {
  background: var(--up-gradient);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  animation: up-pulse 2.5s infinite;
}

.back-to-top i {
  color: #fff;
}

.back-to-top:hover {
  background: var(--up-gradient-gold);
  transform: translateY(-4px) scale(1.05);
}

.back-to-top:hover i {
  color: #100E1B;
}

/*--------------------------------------------------------------
# LEVEL UP — ambient blobs, glass cards, glow & reveal animations
--------------------------------------------------------------*/

/* ambient floating gradient blobs behind everything */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}

body::before {
  width: 480px;
  height: 480px;
  top: -160px;
  left: -140px;
  background: var(--up-gradient);
  animation: up-float 14s ease-in-out infinite;
}

body::after {
  width: 520px;
  height: 520px;
  bottom: -200px;
  right: -160px;
  background: var(--up-gradient-2);
  animation: up-float 18s ease-in-out infinite reverse;
}

/* extra accent blob for hero */
#hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 380px;
  height: 380px;
  top: 10%;
  right: 6%;
  border-radius: 50%;
  background: var(--up-gradient-gold);
  filter: blur(110px);
  opacity: 0.35;
  animation: up-float 10s ease-in-out infinite;
  pointer-events: none;
}

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.75s; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: 0.85s; }

/* section title kicker dot + glow */
.section-title h2 {
  position: relative;
  padding-bottom: 4px;
}

.section-title h2::before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--up-gradient-gold);
  box-shadow: 0 0 0 6px rgba(255, 200, 87, 0.18), 0 0 24px rgba(255, 107, 53, 0.55);
}

.section-title::after {
  background: var(--up-gradient-gold);
  background-size: 200% 200%;
  animation: up-gradient-shift 5s ease infinite;
}

/* glass / gradient-border treatment for key cards */
.members .member,
.event-list .card,
.gallery .gallery-wrap,
.contact-us .info,
.contact-us .php-email-form {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.members .member::after,
.event-list .card::after,
.gallery .gallery-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: inset 0 0 0 2px transparent;
  background: var(--up-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  padding: 2px;
}

.members .member:hover::after,
.event-list .card:hover::after,
.gallery .gallery-wrap:hover::after {
  opacity: 1;
}

/* glow pulse on primary CTA buttons */
.about .content .btn-learn-more,
.btn-learn-more,
.contact-us .php-email-form button[type="submit"] {
  position: relative;
}

.about .content .btn-learn-more::before,
.btn-learn-more::before,
.contact-us .php-email-form button[type="submit"]::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: var(--up-gradient);
  background-size: 200% 200%;
  filter: blur(14px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  animation: up-gradient-shift 4s ease infinite;
}

.about .content .btn-learn-more:hover::before,
.btn-learn-more:hover::before,
.contact-us .php-email-form button[type="submit"]:hover::before {
  opacity: 0.8;
}

/* hero scroll cue */
#hero .scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  pointer-events: none;
}

#hero .scroll-cue::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--up-gold);
  animation: up-scroll-cue 1.8s ease infinite;
}

@keyframes up-scroll-cue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* swiper / recent photos depth */
.recent-photos-slider .swiper-slide {
  transition: transform 0.4s ease;
}

.recent-photos-slider .swiper-slide-active img {
  box-shadow: var(--up-shadow-lg);
}

/* members social icons float on hover */
.members .member .social a {
  transition: transform 0.3s ease, background 0.3s ease;
}

.members .member:hover .social a:nth-child(1) { transform: translateY(-4px); transition-delay: 0.05s; }
.members .member:hover .social a:nth-child(2) { transform: translateY(-4px); transition-delay: 0.12s; }
.members .member:hover .social a:nth-child(3) { transform: translateY(-4px); transition-delay: 0.19s; }

/* responsive tweaks for ambient blobs on small screens */
@media (max-width: 768px) {
  body::before,
  body::after,
  #hero::before {
    display: none;
  }
}

/*--------------------------------------------------------------
# MORE DESIGN — ticker, angled edges, stats, tilt, newsletter
--------------------------------------------------------------*/

/* angled / wave edge under hero & breadcrumbs */
#hero,
.breadcrumbs {
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

@media (max-width: 768px) {
  #hero,
  .breadcrumbs {
    clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
  }
}

/* scrolling culture ticker */
.urban-ticker {
  background: var(--up-dark);
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  white-space: nowrap;
}

.urban-ticker::before,
.urban-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.urban-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--up-dark), transparent);
}

.urban-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--up-dark), transparent);
}

.urban-ticker .ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: up-ticker 28s linear infinite;
  will-change: transform;
}

.urban-ticker .ticker-track span {
  display: inline-flex;
  align-items: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 28px;
  background: var(--up-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.urban-ticker .ticker-track span::after {
  content: "✦";
  margin-left: 28px;
  background: var(--up-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@keyframes up-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* stats / counters band */
.stats-band {
  background: var(--up-dark2);
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.25) 0, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 214, 160, 0.22) 0, transparent 45%);
}

.stats-band .container {
  position: relative;
}

.stats-band .stat-item {
  text-align: center;
  padding: 20px 10px;
}

.stats-band .stat-item .stat-icon {
  font-size: 34px;
  margin-bottom: 10px;
  display: inline-block;
  animation: up-float 5s ease-in-out infinite;
}

.stats-band .stat-item .stat-number {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 42px;
  background: var(--up-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.1;
}

.stats-band .stat-item .stat-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

/* tilt-on-hover for images & cards */
.tilt {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.2s ease;
}

/* newsletter box in footer */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--up-radius);
  padding: 30px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
}

.footer-newsletter h4 {
  font-family: "Fredoka", sans-serif;
  background: var(--up-gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 6px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 18px;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Outfit", sans-serif;
}

.footer-newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--up-gold);
}

.footer-newsletter button {
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  background: var(--up-gradient);
  background-size: 200% 200%;
  color: #fff;
  transition: all 0.35s ease;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background: var(--up-gradient-gold);
  color: #100E1B;
  transform: translateY(-3px);
}

/* divider with center icon, used between sections */
.urban-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 0 46px;
}

.urban-divider span {
  height: 2px;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.35));
}

.urban-divider span:last-child {
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.35), transparent);
}

.urban-divider i {
  font-size: 20px;
  background: var(--up-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
