/* --------------------------------------------------------
   COLOR THEME (YOUR PALETTE)
-------------------------------------------------------- */
:root {
  --bg: #E9E3DF;
  --primary: #FF7A30;
  --secondary: #465C88;
  --black: #000000;
  --white: #ffffff;
  --muted: #6b6b6b;
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--black);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------------
   WHITE CLEAN NAV BAR
-------------------------------------------------------- */
.main-clean-nav {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}

.clean-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 55px;
}

.clean-nav-links {
  list-style: none;
  display: flex;
  gap: 34px;
  padding: 0;
  margin: 0;
}

.clean-nav-links li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  transition: 0.2s ease;
}

.clean-nav-links li a:hover,
.clean-nav-links li a.active {
  color: var(--primary);
}

/* --------------------------------------------------------
   HERO SECTION
-------------------------------------------------------- */
.hero-mission {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  color: white;
}

/* Background Image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg3.jpg') center/cover no-repeat;
  filter: blur(3px) brightness(0.8);
  z-index: 1;
}

/* Animated Gradient Overlay */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg,
      rgba(255, 122, 48, 0.45),
      rgba(70, 92, 136, 0.45),
      rgba(233, 227, 223, 0.35),
      rgba(255, 122, 48, 0.45));
  background-size: 400% 400%;
  animation: gradientFlow 14s ease infinite;
  z-index: 2;
}

/* Soft Black Overlay for Readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 3;
}

/* Gradient Animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  text-align: left;
}

.hero-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  animation: fadeUp 1.3s ease forwards;
  opacity: 0;
}

.hero-title span {
  color: #ffe8d9;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 650px;
  color: #f2f2f2;
  animation: fadeUp 1.8s ease forwards;
  opacity: 0;
}

.hero-cta-buttons {
  display: flex;
  gap: 14px;
  animation: fadeUp 2.2s ease forwards;
  opacity: 0;
}

/* Buttons */
.hero-btn {
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  background: #e16925;
  box-shadow: 0 6px 18px rgba(255, 122, 48, 0.35);
}

.hero-btn-outline {
  padding: 14px 28px;
  border: 2px solid white;
  color: white;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

/* Fade Up Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */

/* ===========================
   ABOUT SECTION (GLASS CARD, NO IMAGE)
=========================== */
.about-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(255, 122, 48, 0.12),
      transparent 55%),
    radial-gradient(circle at bottom right,
      rgba(70, 92, 136, 0.14),
      transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.about-glass-card {
  position: relative;
  z-index: 2;
  padding: 34px 34px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-subtitle {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 13px;
  text-transform: uppercase;
}

.about-title {
  font-size: 34px;
  font-weight: 800;
  margin: 10px 0 12px;
  line-height: 1.2;
}

.about-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* small stats row */
.about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.about-stat-pill {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-stat-pill .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #777;
}

.about-stat-pill .value {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Mission & Vision cards */
.mv-cards {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.mv-card {
  flex: 1;
  padding: 18px 18px 16px;
  background: rgba(248, 248, 248, 0.96);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.mv-icon {
  width: 32px;
  margin-bottom: 8px;
}

.mv-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--secondary);
}

.mv-card p {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

/* Button */
.about-btn {
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  transition: 0.25s ease;
  box-shadow: 0 10px 26px rgba(255, 122, 48, 0.18);
}

.about-btn:hover {
  background: #e16925;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 122, 48, 0.3);
}

/* Responsive */

/* CTA BANNER SECTION */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: white;
  overflow: hidden;
}

.cta-banner .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(1px);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  margin: 18px 0 30px;
  line-height: 1.3;
}

.cta-btn {
  padding: 14px 35px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #e16925;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 122, 48, 0.35);
}

/* ========================
   INDEX PAGE CTA BACKGROUND
======================== */
.glass-cta-index .glass-cta-bg {
  background: url('assets/cta-banner.jpg') center/cover no-repeat !important;
  filter: brightness(0.55) saturate(0.9);
}

/* =====================================================
   FOOTER : GLASS EFFECT + BLUR BG + FLOAT SHAPES + REVEAL
===================================================== */

.glass-footer {
  position: relative;
  padding: 80px 0 30px;
  color: #eee;
  margin-top: 80px;
  overflow: hidden;
}

/* Background Image (soft blur) */
.footer-bg {
  position: absolute;
  inset: 0;
  background: url('assets/footer-bg3.jpg') center/cover no-repeat;
  filter: blur(2.5px) brightness(0.55);
  /* reduced blur */
  opacity: 0.70;
  /* smoother */
  z-index: 0;
  transform: scale(1.05);
  /* removes pixel edges */
}

/* Dark Glass Overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  /* slightly reduced opacity */
  backdrop-filter: blur(3px);
  /* glass effect */
  z-index: 1;
}

/* Floating Glow Shapes */
.float-shape {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 122, 48, 0.16);
  filter: blur(26px);
  animation: float 12s infinite ease-in-out alternate;
  z-index: 2;
}

.shape1 {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.shape2 {
  bottom: 15%;
  right: 12%;
  animation-delay: 2s;
}

.shape3 {
  top: 50%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0);
    opacity: 0.45;
  }

  100% {
    transform: translateY(-22px);
    opacity: 0.85;
  }
}

/* Content Above Everything */
.footer-inner {
  position: relative;
  z-index: 5;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 60px;
}

/* Columns */
.footer-col {
  min-width: 240px;
}

/* Logo */
.footer-logo {
  width: 120px;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
  transition: 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-6px) scale(1.03);
}

/* Text */
.footer-text {
  color: #f2f2f2;
  line-height: 1.6;
  font-size: 15px;
}

/* Headings */
.footer-heading {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 700;
}

/* Links */
.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 15px;
  transition: 0.25s ease;
}

.footer-links-list a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* Social Icons */
.footer-social a img {
  width: 42px;
  padding: 10px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 6px 18px rgba(255, 122, 48, 0.25);
  transition: 0.3s ease;
}

.footer-social a img:hover {
  transform: translateY(-6px) scale(1.08);
  background: #e16925;
}

/* Copyright Bar */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  text-align: center;
  color: #cfcfcf;
  font-size: 14px;

  position: relative;
  z-index: 20 !important;
  /* SUPER IMPORTANT FIX */
}

/* ================= REVEAL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.45s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= Responsive ================= */

/* --------------------------------------------------------
   RESPONSIVE
-------------------------------------------------------- */

/* ======== ABOUT PAGE STYLES ========  */

.about-hero {
  position: relative;
  min-height: 85vh;
  /* 🔥 Bigger hero section */
  padding: 180px 0 140px;
  /* More top & bottom spacing */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Background Image */
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/about-hero-banner.jpg') center/cover no-repeat;
  filter: brightness(0.48) blur(1.5px);
  /* 🔥 Keep image dim so text is readable */
  z-index: 1;
}

/* Dark overlay for text contrast */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* 🔥 Slightly darker for text visibility */
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

/* Breadcrumb */
.about-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 12px;
}

/* Main Title */
.about-hero h1 {
  font-size: 52px;
  /* 🔥 Bigger, clearer */
  margin: 10px 0 14px;
  font-weight: 800;
  color: #ffffff !important;
  /* 🔥 Force white text always */
}

/* Subtext */
.about-hero .lead {
  color: rgba(255, 255, 255, 0.92) !important;
  /* Fix black text issue */
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
}

/* ================================
          INTRO GRID
=================================*/
.about-intro {
  padding: 70px 0;
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  align-items: center;
}

.stacked-images {
  position: relative;
  width: 100%;
}

.stacked-images .img-primary {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* makes the container a perfect square */
  object-fit: cover;
  /* crop edges, perfect clean square */
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.stacked-images .img-sm {
  width: 84px;
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.img-sm-1 {
  left: -14px;
  top: 14px;
  transform: rotate(-6deg);
}

.img-sm-2 {
  right: -10px;
  bottom: -12px;
  transform: rotate(6deg);
}

.intro-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.intro-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ABOUT PAGE CTA BUTTON */
.about-btn {
  padding: 12px 26px;
  background: var(--primary);
  color: white !important;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s ease;
  font-size: 15px;
}

.about-btn:hover {
  background: #e16925;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(255, 122, 48, 0.35);
}

/* ================================
        WHY IIA CARDS
=================================*/
.why-section {
  padding: 50px 0;
  background: var(--bg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  text-align: left;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  transition: 0.28s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 48px;
  margin-bottom: 10px;
}

/* ================================
            VISION
=================================*/
.vision-section {
  padding: 30px 0;
  background: var(--white);
}

.vision-box {
  background: linear-gradient(90deg,
      rgba(255, 122, 48, 0.08),
      rgba(70, 92, 136, 0.05));
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.vision-box h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 8px;
}

.vision-box p {
  color: #333;
  line-height: 1.7;
}

/* ================================
            MISSION
=================================*/
.mission-section {
  padding: 50px 0;
  background: var(--bg);
}

.mission-list {
  max-width: 900px;
  margin: 10px auto 0;
  list-style: disc;
  padding-left: 22px;
  color: #333;
  line-height: 1.7;
}

/* ================================
          WHAT WE DO
=================================*/
.what-section {
  padding: 50px 0;
  background: var(--white);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.what-card {
  background: linear-gradient(145deg, #e0e0e0, #f7f7f7);
  /* 🔥 Darkened cards */
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  /* Stronger depth */
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: .25s ease;
}

.what-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #dadada, #f0f0f0);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.what-card h4 {
  color: var(--secondary);
  margin-bottom: 6px;
}

.what-card p {
  color: #444;
  line-height: 1.6;
}

/* ================================
            RESPONSIVE
=================================*/

/* ============================
   MEMBERSHIP PAGE SECTIONS
============================ */

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--black);
}

/* SECTION 1 — WHY MEMBER */
.why-member-section {
  padding: 70px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  padding: 26px;
  background: var(--bg);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--black);
  /* ← now black */
}

/* SECTION 2 — BENEFITS */
.benefits-section {
  padding: 70px 0;
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-card {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.benefit-card h4 {
  margin-bottom: 8px;
  color: var(--secondary);
}

/* SECTION 3 — UNIQUE / DIFFERENCE */
.unique-section {
  padding: 70px 0;
  background: var(--white);
}

.unique-list {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #333;
}

.unique-list li {
  margin-bottom: 12px;
}

/* FINAL CTA */
.glass-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  --cta-height: 320px;
}

/* background image (using your uploaded file path) */
.glass-cta-bg {
  position: absolute;
  inset: 0;
  background: url('assets/membership-cta-banner.jpg') center/cover no-repeat;
  filter: brightness(0.55) saturate(0.9);
  transform: scale(1.03);
  z-index: 0;
}

/* dark tint for contrast */
.glass-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6,6,6,0.48), rgba(14,12,20,0.45));
  z-index: 1;
}

/* floating warm glow shapes */
.glass-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.18;
  z-index: 2;
  transform: translateY(0);
  animation: floatY 12s ease-in-out infinite alternate;
}
.glass-shape.s1 { left: 6%; top: 10%; background: rgba(255,122,48,0.22); animation-delay: 0s; }
.glass-shape.s2 { right: 4%; bottom: 8%; background: rgba(70,92,136,0.14); animation-delay: 2s; }

@keyframes floatY {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-18px) scale(1.03); }
}

/* main card container */
.glass-cta-inner {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: var(--cta-height);
  padding: 30px 20px;
}

/* frosted card */
.glass-cta-card {
  width: 100%;
  max-width: 1080px;
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 28px;
  align-items: center;
  backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 40px rgba(3,3,3,0.45);
  transition: transform .36s cubic-bezier(.2,.9,.2,1), box-shadow .36s ease;
}

/* slightly scale up on hover */
.glass-cta-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 60px rgba(3,3,3,0.6);
}

/* left text */
.cta-left {
  flex: 1.3;
  color: #fff;
}
.glass-cta-card h2 {
  font-size: 30px;
  margin: 0 0 8px;
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.cta-sub {
  color: rgba(255,255,255,0.9);
  margin: 6px 0 0;
  font-size: 15px;
}

/* right buttons */
.cta-right {
  flex: 0 0 340px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content:center;
}

/* primary button (rounded pill) */
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg,var(--primary), #E16925);
  color: white;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255,122,48,0.18);
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

/* hover micro-interaction */
.cta-primary:hover {
  transform: translateY(-6px) scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 20px 48px rgba(255,122,48,0.26);
}

/* ghost secondary */
.cta-ghost {
  display:inline-block;
  color: #fff;
  background: rgba(255,255,255,0.06);
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  font-weight:600;
  width: 100%;
  text-align: center;
}

/* subtle shine animation layer */
.glass-shine {
  position: absolute;
  left: -40%;
  top: 0;
  width: 60%;
  height: 100%;
  transform: skewX(-18deg) translateX(-100%);
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  z-index: 4;
  pointer-events: none;
  animation: shineMove 6.2s linear infinite;
  opacity: 0.6;
}

@keyframes shineMove {
  0% { transform: skewX(-18deg) translateX(-100%); opacity: 0.0; }
  12% { opacity: 0.06; }
  50% { transform: skewX(-18deg) translateX(120%); opacity: 0.12; }
  100% { transform: skewX(-18deg) translateX(120%); opacity: 0; }
}

/* small responsive tweaks */

/* RESPONSIVE */

/* =========================================
   BECOME A MEMBER PAGE (register.html)
   ========================================= */

/* --- Register Hero (reusing hero-mission layout) --- */

/* Alag background image sirf register hero ke liye */
.hero-register .hero-bg-image {
  background-image: url('assets/register-hero-bg.jpg'); /* yahan apni image ka path rakh sakta hai */
}

/* Chhota label "Membership" */
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.86);
}

/* Register hero ke heading/desc ke liye halka tweak */
.hero-register .hero-title {
  font-size: 46px;
}

.hero-register .hero-desc {
  max-width: 640px;
}

.page-register .register-section {
  padding: 4rem 0 5rem;
}

.page-register .register-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-register .eyebrow-text {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-register .section-title {
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
}

.page-register .section-title span {
  color: var(--secondary);
}

/* REGISTER PAGE – Faster reveal */
.register-section .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out !important;
}

.register-section .reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ------ Form Card + Grid ------ */

.form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-field {
  position: relative;
}

/* ------ Floating Labels ------ */

.floating-label {
  position: relative;
  display: block;
}

.floating-label input,
.floating-label textarea,
.floating-label select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 0.85rem 0.9rem;
  font-size: 0.95rem;
  background: #f5f5f5;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, transform 0.15s ease;
}

.floating-label textarea {
  resize: vertical;
  min-height: 80px;
}

.floating-label span {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: #888;
  pointer-events: none;
  transition: all 0.2s ease;
}

.floating-label textarea + span {
  top: 0.9rem;
  transform: none;
}

.floating-label.is-filled span,
.floating-label input:focus + span,
.floating-label textarea:focus + span,
.floating-label select:focus + span {
  top: -0.55rem;
  font-size: 0.75rem;
  background: #fff;
  padding: 0 0.35rem;
  border-radius: 999px;
  color: var(--secondary);
}

.floating-label input:focus,
.floating-label textarea:focus,
.floating-label select:focus {
  background: #fff;
  border-color: var(--secondary);
  box-shadow: 0 0 0 1px rgba(70, 92, 136, 0.2),
    0 14px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* To show Select, Date & File inputs label above */
.floating-label select + span,
.floating-label input[type="date"] + span,
.floating-label input[type="file"] + span {
  top: -0.55rem;
  transform: none;
  font-size: 0.75rem;
  background: #fff;
  padding: 0 0.35rem;
  border-radius: 999px;
  color: var(--secondary);
}

/* custom select arrow */

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: #777;
  pointer-events: none;
}

/* Errors */

.form-field.has-error .floating-label input,
.form-field.has-error .floating-label textarea,
.form-field.has-error .floating-label select {
  border-color: #ff4b4b;
}

.form-field .error-message {
  font-size: 0.75rem;
  color: #ff4b4b;
  margin-top: 0.25rem;
}

/* ------ Category Pills ------ */

.category-section h3,
.social-section h3,
.upload-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.section-help {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: #f1f1f1;
  cursor: pointer;
  font-size: 0.85rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.category-pill input {
  accent-color: var(--primary);
}

.category-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* ------ File Inputs ------ */

.file-label input[type="file"] {
  padding-block: 0.75rem;
  background: #f1f1f1;
  cursor: pointer;
}

/* ------ Dividers + Status Text ------ */

.section-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 2rem 0 1.8rem;
}

/* Submit section – center align */
.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #666;
}

/* Status text under the button */
.form-status {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  text-align: center;
  min-height: 1.2rem;
}

/* success */
.form-status.success {
  color: #188038;
  background: rgba(24, 128, 56, 0.12);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
}

/* error */
.form-status.error {
  color: #ff4b4b;
  background: rgba(255, 75, 75, 0.12);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
}

#formStatus {
  display: block !important;
  min-height: 24px;
}

/* Global primary button – premium black CTA */
.btn-primary {
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  padding: 0.95rem 2.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

/* Hover: lift + glow */
.btn-primary:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.45);
  filter: brightness(1.08);
}

/* ------ Global CTA style (used on this page too) ------ */

.cta-parallax-section {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

.cta-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(4px);
}

.cta-parallax-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta-parallax-inner h2 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.cta-parallax-inner p {
  max-width: 620px;
  margin: 0 auto 1.6rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

/* Button */
.btn-parallax {
  display: inline-block;
  padding: 1rem 2.8rem;
  font-weight: 700;
  background: #000;
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.btn-parallax:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* ------ Responsive (Register page) ------ */

/* =========================================
   ADMIN PANEL PAGE (admin.html)
   ========================================= */

.page-admin .hero-admin {
  /* admin hero background image */
  background-image: url("assets/admin-hero-bg.jpg");
}

.admin-section {
  padding: 3.5rem 0 5rem;
}

/* ------ Stats Cards ------ */

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.admin-stat .stat-label {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.35rem;
}

.admin-stat .stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
}

/* ------ Filters + Actions ------ */

.admin-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.admin-search-group input {
  min-width: 240px;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
}

.admin-filter-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.admin-filter-group select {
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
}

.control-label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
  color: #555;
}

.admin-actions-group {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

/* ------ Table ------ */

.admin-table-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table thead {
  background: #f5f5f5;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  font-weight: 600;
  color: #444;
  border-bottom: 1px solid #e0e0e0;
}

.admin-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.admin-table tbody tr:hover {
  background: #f0f6ff;
}

/* ------ Status Pills ------ */

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pending {
  background: #fff4ce;
  color: #8a6d00;
}

.status-approved {
  background: #d4f3e2;
  color: #096b39;
}

.status-rejected {
  background: #ffe0e0;
  color: #b3261e;
}

/* ------ Row Actions ------ */

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.row-actions button {
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.btn-mini-secondary {
  background: #eef2ff;
  color: var(--secondary);
}

.btn-mini-secondary:hover {
  background: var(--secondary);
  color: #fff;
}

.btn-mini-danger {
  background: #ffe6e6;
  color: #b3261e;
}

.btn-mini-danger:hover {
  background: #ffb3b3;
}

/* ------ Empty State ------ */

.empty-state {
  padding: 1rem 1.25rem 1.2rem;
  font-size: 0.85rem;
  color: #666;
}

/* Simple label for non-floating fields (like datetime) */
.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 0.35rem;
}


/* =========================================
   CONTACT PAGE (contact.html) – LIGHT PREMIUM
========================================= */

/* Contact hero uses same structure as about page,
   only background image is different */
.page-contact .about-hero-bg {
  background-image: url('assets/contact-hero-bg.jpg');
}

/* Soft light background with subtle warm tint */
.contact-main {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(circle at top left,
      rgba(255, 122, 48, 0.10),
      transparent 60%),
    radial-gradient(circle at bottom right,
      rgba(70, 92, 136, 0.10),
      transparent 60%),
    #f5f2ef;
}

/* Main 2-column layout */
.contact-main-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: flex-start;
}

/* ===========================
   PREMIUM SOFT CARDS (BOTH)
=========================== */
.contact-form-card,
.contact-info-card {
  position: relative;
  background: radial-gradient(circle at top left,
              #ffffff 0%,
              #fbf7f4 45%,
              #f3eee9 100%);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.10),
    0 32px 80px rgba(0, 0, 0, 0.09);
  padding: 26px 26px 30px;
  overflow: hidden;
}

/* Soft top highlight for glossy feel */
.contact-form-card::before,
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.55),
      transparent 40%
  );
  pointer-events: none;
}

/* Small hover depth (no movement) */
.contact-form-card:hover,
.contact-info-card:hover {
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.04),
    0 22px 55px rgba(0, 0, 0, 0.12),
    0 36px 90px rgba(0, 0, 0, 0.10);
}

/* ----- Left: form card ----- */
.contact-form-card h2 {
  font-size: 26px;
  margin: 0 0 6px;
}

.contact-intro {
  color: #666;
  margin: 0 0 18px;
  font-size: 0.95rem;
}

/* Form grid */
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
}

/* Inputs + textarea – light fields */
.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: #f8f8f8;
  color: #222;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.12s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

/* Focus state: slight lift + orange border */
.contact-form input:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: rgba(255, 122, 48, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 122, 48, 0.45),
    0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Submit button wrapper */
.contact-actions {
  margin-top: 20px;
}

/* ----- Right: info card ----- */
.contact-info-card {
  padding: 24px 24px 26px;
}

.contact-info-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-info-text {
  margin: 0 0 16px;
  color: #666;
  font-size: 0.92rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-info-item .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  display: block;
  margin-bottom: 3px;
}

.contact-info-item .value {
  font-size: 0.95rem;
  color: #222;
}

.contact-info-note {
  font-size: 0.82rem;
  color: #777;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 10px;
}

/* ----- Map section (already nice, just keep) ----- */
.contact-map {
  padding: 0 0 80px;
  background: var(--bg);
}

.contact-map-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.contact-map-card iframe {
  width: 100%;
  height: 360px;
  display: block;
}

/* --- Contact page responsive tweaks --- */
@media (max-width: 900px) {
  .contact-main-inner {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-info-card {
    padding-inline: 18px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-map-card iframe {
    height: 280px;
  }
}


/* ------ Responsive (Admin page) ------ */

/* =====================================================
   RESPONSIVE – ALL MEDIA QUERIES COLLECTED HERE
   (auto-grouped, original order preserved)
===================================================== */

@media(max-width: 900px) {
  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .about-glass-card {
    padding: 26px 18px 24px;
  }

  .about-content {
    text-align: center;
  }

  .about-title {
    font-size: 28px;
  }

  .about-stats-row {
    flex-direction: column;
  }

  .mv-cards {
    flex-direction: column;
  }
}

@media(max-width:900px) {
  .cta-title {
    font-size: 32px;
  }
}

@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-social a img {
    margin: 0 8px;
  }

  .shape3 {
    display: none;
  }
}

@media(max-width:900px) {

  .info-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .clean-nav-inner {
    flex-direction: column;
    gap: 15px;
  }

  .clean-nav-links {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    order: -1;
  }
}

@media(max-width:1100px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stacked-images .img-sm {
    display: none;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:700px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .what-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 900px) {
  .glass-cta-card { flex-direction: column; text-align:center; padding: 26px; }
  .cta-right { flex:1; width:100%; }
  .cta-left h2 { font-size: 22px; }
  .glass-shape { display:none; }
}

@media(max-width: 900px) {

  .why-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {

  .why-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .form-card {
    padding-inline: 1.4rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .admin-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-actions-group {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .admin-summary {
    grid-template-columns: 1fr;
  }

  .admin-table {
    font-size: 0.8rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.6rem 0.65rem;
  }
}

/* =========================================
   Admin table – mobile friendly card layout
   ========================================= */
@media (max-width: 768px) {
  .admin-table {
    border-collapse: separate;
    width: 100%;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table tr {
    margin-bottom: 1rem;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    overflow: hidden;
  }

  .admin-table td {
    border: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    white-space: normal;
    word-break: break-word;
  }

  .admin-table td:last-child {
    border-bottom: 0;
  }

  .admin-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 2px;
  }

  .admin-table td.social-cell a {
    display: inline-block;
    word-break: break-all;
  }

  .col-actions .btn-xs {
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .admin-table-wrapper {
    overflow-x: hidden;
  }
}

/* =========================================
   EVENTS PAGE – Updated Light Theme CSS
   ========================================= */

/* Hero background for events page */
.page-events .about-hero.events-hero .events-hero-bg {
  background-image: url("assets/events-hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

/* Section spacing */
.events-section {
  padding: 4rem 0;
}

.events-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  color: #111;
}

.events-loading {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Empty state card */
.events-empty-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);

  color: #222;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Events container (single column center) */
.events-grid {
  max-width: 960px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Light Glass Card */
.event-card {
  padding: 2rem;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);

  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);

  display: flex;
  flex-direction: column;
  gap: 1rem;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

/* Date pill */
.event-date-range {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;

  color: #222;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 999px;
}

/* Title */
.event-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #111;
}

/* Body content */
.event-body {
  margin-top: 0.4rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.55;
}

.event-location {
  font-weight: 600;
  color: #222;
  margin-bottom: 0.3rem;
}

.event-description {
  margin-top: 0.25rem;
  color: #444;
}

/* Footer */
.event-footer {
  margin-top: 1rem;
}

/* CTA Button */
.event-cta {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  font-size: 0.88rem;

  border-radius: 999px;
  text-decoration: none;

  color: #fff;
  background: #ff7b00;
  border: 1px solid #ff7b00;

  font-weight: 600;
  transition: 0.25s ease;
}

.event-cta:hover {
  background: #e66d00;
  border-color: #e66d00;
}

/* No registration link tag */
.event-tag {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;

  border-radius: 10px;
  color: #333;

  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed #bbb;
}

/* Responsive */
@media (max-width: 600px) {
  .events-section {
    padding: 3rem 0;
  }

  .event-card {
    padding: 1.5rem;
  }
}




/* =========================================
   MOBILE NAVBAR (HAMBURGER – PHONE ONLY)
========================================= */

/* Base hamburger icon (desktop: hidden) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  width: 24px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}

/* Desktop: keep old layout, no hamburger */
@media (min-width: 901px) {
  .nav-hamburger {
    display: none !important;
  }

  .main-clean-nav .clean-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-clean-nav .clean-nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 34px;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
}

/* Mobile layout (phones & small tablets) */
@media (max-width: 900px) {

  /* Header row: logo + hamburger */
  .main-clean-nav .clean-nav-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 10px 16px;
    position: relative;
  }

  .nav-logo img {
    height: 52px;
  }

  /* Show hamburger on mobile */
  .nav-hamburger {
    display: flex !important;
  }

  /* Dropdown base (hidden, but ready for smooth animation) */
  .main-clean-nav .clean-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 14px 0 18px;
    margin: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 50;

    display: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  /* Visible dropdown */
  .main-clean-nav .clean-nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .main-clean-nav .clean-nav-links li {
    text-align: center;
  }
}

/* =========================================
   GLASS NAVBAR OVERRIDE (DESKTOP + MOBILE)
========================================= */

/* Base glass navbar */
.main-clean-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.main-clean-nav .clean-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  gap: 32px;
}

.main-clean-nav .nav-logo img {
  height: 52px;
}

/* Links row (desktop default) */
.main-clean-nav .clean-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.main-clean-nav .clean-nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

/* Underline hover effect */
.main-clean-nav .clean-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: width 0.22s ease;
}

.main-clean-nav .clean-nav-links a:hover {
  color: var(--primary);
}

.main-clean-nav .clean-nav-links a:hover::after {
  width: 100%;
}

/* Special CTA link */
.main-clean-nav .clean-nav-links .nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.main-clean-nav .clean-nav-links .nav-cta::after {
  display: none;
}

.main-clean-nav .clean-nav-links .nav-cta:hover {
  background: #111;
}

/* Hamburger button - hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.nav-hamburger span {
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

/* MOBILE LAYOUT */
@media (max-width: 900px) {

  .main-clean-nav .clean-nav-inner {
    padding: 10px 16px;
    gap: 12px;
  }

  .main-clean-nav .nav-logo img {
    height: 46px;
  }

  /* Show hamburger, hide desktop menu */
  .nav-hamburger {
    display: flex;
  }

  .main-clean-nav .clean-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 0 18px;
    margin: 0;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 90;
  }

  .main-clean-nav .clean-nav-links a {
    font-size: 14px;
  }

  .main-clean-nav .clean-nav-links .nav-cta {
    width: auto;
    padding-inline: 22px;
  }

  /* When active: visible dropdown */
  .main-clean-nav .clean-nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}


/* Make sure footer columns are always visible,
   even though they use the .reveal class and are loaded via partials */
.glass-footer .reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

