/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --gold:      #d4a017;
  --gold-dark: #b8880f;
  --green:     #316b22;
  --bg-card:   rgba(252, 245, 230, 0.88);
  --glass:     rgba(255, 255, 255, 0.12);
  --radius:    20px;
  --sidebar-w: 230px;
}

/* ─── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Poppins';
  min-height: 100svh;
  overflow-x: hidden;
  margin: 0;
}
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    padding: 20px;
    z-index: 9;
}
/* ─── BACKGROUNDS ───────────────────────────────── */
.home-page .main-wrapper {
  background: url('../images/main-bg-2.jpg') no-repeat center / cover;
}
.about-page .main-wrapper {
  background: url('../images/main-bg-2.jpg') no-repeat center center / cover;
}
@media (max-width: 768px) {
  .home-page .main-wrapper,
  .about-page .main-wrapper {
    background: url('../images/mobile-bg.png') no-repeat center / cover;
  }
}

/* ─── MAIN WRAPPER ──────────────────────────────── */
.main-wrapper {
  display: flex;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

/* ─── OVERLAY ───────────────────────────────────── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 90;
}
.overlay.show { display: block; }

/* ─── HAMBURGER ─────────────────────────────────── */
.menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 99999;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── SIDEBAR ───────────────────────────────────── */
.sidebar {
  position: fixed;
  left: 90px;
  top: 50%;
  transform: translateY(-50%);
  width: var(--sidebar-w);
  padding: 24px 16px;
  background: rgba(252, 245, 230, 0.16);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.sidebar-logo {
  width: 90px;
  display: block;
  margin: 0 auto 8px;
}

.sidebar button {
  display: block;
  margin-bottom: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(243, 241, 233, 0.5);
  text-align: center;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, background 0.25s ease, color 0.2s;
  position: relative;
}
.nav-pills .nav-link.active,
.sidebar button:hover {
   transform: translateY(-3px); background: var(--gold); color: #fff; }

.sidebar button.active {
  background: rgba(243,241,233,0.5);
  color: #222;
  font-weight: 600;
}
.sidebar button.active::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--green);
  border-radius: 3px;
}

.sidebar .donate {
  background: #a90502;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: auto;
}
.sidebar .donate:hover { background: var(--gold-dark); }

/* ─── CONTENT AREA ──────────────────────────────── */
.content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 30px;
  animation: fadeUp 0.7s ease both;
  z-index: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HOME PAGE ─────────────────────────────────── */
.display-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3.5vw, 38px);
  color: #1a1a1a;
  text-shadow: 0 2px 8px rgba(255,255,255,0.6);
}
.sub  { font-size: clamp(13px, 2vw, 17px); color: #333; margin-top: 6px; }
.desc { font-size: clamp(13px, 2vw, 17px); color: #222; }
.footer-text { font-size: clamp(13px, 1.8vw, 17px); color: #444; }

.logo {
  width: clamp(140px, 30vw, 300px);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18));
  transition: transform 0.4s ease;
}
/* .logo:hover { transform: scale(1.04); } */

/* ─── GLASS CARD (inner pages) ──────────────────── */
.glass-card {
  max-width: 900px;
  width: 100%;
  margin-left: 280px;
  background: rgb(255 255 255 / 48%);
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 32px;
  color: #1a1009;
  height: 94dvh;
  overflow-y: auto;
  scroll-behavior: smooth;

}
.glass-card::-webkit-scrollbar { width: 5px; }
.glass-card::-webkit-scrollbar-thumb { background: rgba(212,160,23,0.4); border-radius: 10px; }

.section-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #a90502;
  text-align: center;
}
.section-title p{
      font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.highlight {
  font-size: 22px;
  font-weight: 600;
  color: #a90502;
}
.logo-img {
  max-width: 460px;
}

@media (max-width: 576px) {
  .logo-img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .bottom-text {
   color: #fff;
  }
}

/* ─── FEATURE CARDS (About) ─────────────────────── */
.feature-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
  font-size: 32px;
  color: #8B5E3C;
}
.feature-card h5 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.feature-card .small { font-size: 12px; opacity: 0.88; }

/* ─── ACTIVITY CARDS ────────────────────────────── */
.activity-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  transition: transform 0.3s ease;
}
.activity-card:hover { transform: translateY(-4px); }

.badge-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.activity-list {
  padding-left: 18px;
  margin: 0;
}
.activity-list li {
  margin-bottom: 8px;
  font-size: 13px;
  color: #2c2c2c;
}

/* ─── GALLERY ───────────────────────────────────── */
.gallery-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.2s;
}
.gallery-img:hover { transform: scale(1.06); opacity: 0.9; }

/* ─── LIGHTBOX ──────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
}
.lightbox-img {
  max-width: 82%;
  max-height: 80dvh;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 38px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  padding: 10px 16px;
  user-select: none;
  transition: color 0.2s;
}
.lightbox-nav:hover { color: var(--gold); }
.lightbox-nav.left  { left: 16px; }
.lightbox-nav.right { right: 16px; }

/* ─── DESKTOP: hide toggle ──────────────────────── */
@media (min-width: 769px) {
  .menu-toggle { display: none !important; }
  .overlay     { display: none !important; }
}

/* ─── MOBILE ────────────────────────────────────── */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 240px;
    border-radius: 0 var(--radius) var(--radius) 0;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 80px 16px 30px;
    box-shadow: 4px 0 24px rgba(0,0,0,0.18);
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar button.active::after { display: none; }

  .content { padding: 70px 16px 30px; }

  .glass-card {
    max-height: unset;
    padding: 20px 16px;
    margin-left: 0;
  }

  .gallery-img { height: 95px; }
}

@media (max-width: 480px) {
  .glass-card { padding: 16px 12px; }
  .section-title { font-size: 18px; }
}
.activity-card {
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.activity-card p{
  margin-top: 0;
  margin-bottom:1rem;
  font-size: 13px !important;

}
/* Contact page — no background image */
        /* .contact-page .main-wrapper {
            background: #f5ede0;
        } */
        @media (max-width: 768px) {
            .contact-page .main-wrapper {
                background: #f5ede0;
            }
        }

        /* Contact info cards */
        .contact-info-card {
            background: rgba(255, 255, 255, 0.75);
            border-radius: 14px;
            border: 1px solid rgba(212, 160, 23, 0.25);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 16px;
        }
        .contact-info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.10);
        }
        .contact-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-icon-wrap i {
            font-size: 20px;
            color: #fff;
        }
        .contact-label {
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #2e2e2e;
            margin-bottom: 2px;
        }
        .contact-value {
            font-size: 14px;
            font-weight: 500;
            color: #1a1009;
            margin: 0;
            word-break: break-word;
        }
        .contact-value a {
            color: #1a1009;
            text-decoration: none;
        }
        .contact-value a:hover {
            color: var(--gold);
            text-decoration: underline;
        }

        /* Form */
        .contact-form .form-control::placeholder,
        .contact-form .form-select::placeholder {
          color: #000;
        }
        .contact-form .form-control,
        .contact-form .form-select {
            background: rgba(255,255,255,0.7);
            border: 1px solid rgba(212,160,23,0.3);
            border-radius: 10px;
            font-size: 14px;
            padding: 13px 15px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #000;
        }
        .contact-form .form-control:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
            background: #fff;
        }
        .contact-form label {
            font-size: 15px;
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
  padding-left: 15px;
        }
        .btn-donate {
            background: var(--gold);
            color: #fff;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            padding: 11px 32px;
            font-size: 14px;
            letter-spacing: 0.4px;
            transition: background 0.25s ease, transform 0.2s;
            font-family: 'Poppins', sans-serif;
        }
        .btn-donate:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

        .divider {
            border: none;
            border-top: 1px solid rgba(212,160,23,0.25);
            margin: 20px 0;
        }
         /* ── Donation page background (same as contact) ── */
        .donation-page .main-wrapper {
            background: #f5ede0;
        }
        @media (max-width: 768px) {
            .donation-page .main-wrapper { background: #f5ede0; }
        }

        /* ── Amount chips ── */
        .amount-chips { display: flex; flex-wrap: wrap; gap: 10px; }
        .chip {
            padding: 8px 20px;
            border-radius: 30px;
            border: 1.5px solid rgba(212,160,23,0.45);
            background: rgba(255,255,255,0.65);
            font-size: 13px;
            font-weight: 600;
            color: #1a1009;
            cursor: pointer;
            transition: all 0.22s ease;
            font-family: 'Poppins', sans-serif;
        }
        .chip:hover, .chip.active {
            background: #d4a0178f;
            border-color: var(--gold);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(212,160,23,0.30);
        }

        /* ── Payment method tabs ── */
        .pay-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
        .pay-tab {
            flex: 1;
            min-width: 130px;
            padding: 14px 10px;
            border-radius: 14px;
            border: 1.5px solid rgba(212,160,23,0.3);
            background: rgba(255,255,255,0.65);
            cursor: pointer;
            text-align: center;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
max-width:200px;
        }
        .pay-tab:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
        .pay-tab.active {
            background: var(--gold);
            border-color: var(--gold);
            color: #fff;
            box-shadow: 0 8px 20px rgba(212,160,23,0.30);
            transform: translateY(-2px);
        }
        .pay-tab i { font-size: 22px; }
        .pay-tab span { font-size: 12px; font-weight: 600; font-family: 'Poppins', sans-serif; }

        /* ── Panel ── */
        .pay-panel { display: none; animation: fadeUp 0.35s ease both; }
        .pay-panel.active { display: block; }

        /* ── PayPal button replica ── */
        .paypal-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 13px;
            border-radius: 10px;
            background: #FFC439;
            border: none;
            font-size: 16px;
            font-weight: 700;
            color: #003087;
            cursor: pointer;
            transition: background 0.22s, transform 0.2s;
            font-family: 'Poppins', sans-serif;
        }
        .paypal-btn:hover { background: #f0b429; transform: translateY(-2px); }
        .paypal-btn img { height: 22px; }

        /* ── GPay / Card button ── */
        .gpay-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 13px;
            border-radius: 10px;
            background: #1a1a1a;
            border: none;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            transition: background 0.22s, transform 0.2s;
            font-family: 'Poppins', sans-serif;
        }
        .gpay-btn:hover { background: #333; transform: translateY(-2px); }

        /* ── Form fields (shared with contact) ── */
        .donation-form .form-control,
        .donation-form .form-select {
            background: rgba(255,255,255,0.7);
            border: 1px solid rgba(212,160,23,0.3);
            border-radius: 10px;
            font-size: 13px;
            padding: 10px 14px;
            font-family: 'Poppins', sans-serif;
        }
        .donation-form .form-control:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
            background: #fff;
        }
        .donation-form label {
            font-size: 12px;
            font-weight: 600;
            color: #444;
            margin-bottom: 4px;
        }

        /* ── Custom amount input wrapper ── */
        .amount-input-wrap {
            position: relative;
            margin-top: 12px;
        }
        .amount-input-wrap .currency {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-weight: 600;
            color: #2e2e2e;
            font-size: 14px;
        }
        .amount-input-wrap input {
            padding-left: 32px !important;
        }

        /* ── Trust badges ── */
        .trust-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: #2e2e2e;
            font-weight: 500;
        }
        .trust-badge i { color: #a90502; font-size: 14px; }

        .divider {
            border: none;
            border-top: 1px solid rgba(212,160,23,0.25);
            margin: 20px 0;
        }

        /* ── Secure note ── */
        .secure-note {
            font-size: 11px;
            color: #2e2e2e;
            text-align: center;
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        .secure-note i { color: #4CAF50; }

        /* ── Card logos ── */
        .card-logos { display: flex; gap: 8px; align-items: center; margin-top: 10px; }
        .card-logo {
            height: 24px;
            padding: 3px 7px;
            background: #fff;
            border-radius: 5px;
            border: 1px solid #e0e0e0;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            color: #333;
        }
        .card-logo.visa   { color: #1a1f71; font-style: italic; font-size: 13px; letter-spacing: -0.5px; }
        .card-logo.mc     { font-size: 18px; padding: 1px 5px; }
        .card-logo.gpay-l { color: #1a73e8; font-size: 11px; font-weight: 700; }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(12px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* 🎥 Background Video */
.bg-video {
  position: absolute;
  
  width: 100%;
  height: 100%;
 
  object-fit: cover;
  z-index: 0;
}

/* overlay for readability */
/* .main-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); 
  z-index: 1;
} */

/* make content above video */
.sidebar,
.main {
  /* position: relative; */
  /* z-index: 2; */
}
.logo span {
  position: relative;
  z-index: 8;
}
.logo span::before {
  position: absolute;
  content: "";
  background: url(../images/fading_line.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 700px;
  height: 700px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: rotateSun 20s linear infinite;
}
@keyframes rotateSun {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.tab-pane {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.main, .main > div {
  position: fixed;
  width: 100%;
  height: 100%;
}
.main, .main > div.active {
  z-index: 998;
}
.bottom-text {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #ffc67d;
}

.contact_details_info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.contact_details_info .contact-info-card {
  width: calc(50% - 10px);
  margin-bottom: 0;
}
.main > div {
  display: none;
}
.main > div.active {
  display: flex;
  justify-content: center;
}
.contact-form, .donation-form {
  text-align: left;
}

/* // */
.activity-content.collapsed {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

/* .activity-content.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(transparent, white);
} */

/* .wpcf7-response-output {
  position: fixed;
  top: 10%;
  right: 2%;
  background: #fff;
  animation: formClose 5s linear 1;
}
@keyframes formClose {
  from { opacity: 1; }
  to { opacity: 0; }
} */

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  background: #000000e5;
  color: #f7ff00;
  padding: 10px 20px;
  margin: 0;
  position: relative;
  top: -30px;
  border: none;
}
.wpcf7 form.sent .wpcf7-response-output {
  background: #0d7317;
  color: #fff;
  padding: 10px 20px;
  border: none;
  margin: 0;
  position: relative;
  top: -30px;
}
