/*
 * Numb Rohi Trust Website Stylesheet
 * Brand colors: Oasis Teal (#0bb4aa) & Desert Gold (#e5a93b)
 * Fonts: Outfit (headings), Inter (body)
 */

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

:root {
  /* Colors */
  --primary: #0bb4aa;
  --primary-hover: #09938b;
  --secondary: #e5a93b;
  --secondary-hover: #c98e29;
  --dark: #12181f;
  --dark-soft: #1e2630;
  --light: #f8fafd;
  --light-soft: #ffffff;
  --text-dark: #1e252b;
  --text-light: #f8fafd;
  --text-muted: #64748b;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--primary) 0%, #30dfd4 100%);
  --grad-dark: linear-gradient(135deg, #0f1319 0%, #1e2630 100%);
  --grad-glass: rgba(255, 255, 255, 0.75);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 24px rgba(11, 180, 170, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --container-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--light);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.section-tag {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 180, 170, 0.35);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: transparent;
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  transition: var(--transition-normal);
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--text-light);
  transition: var(--transition-normal);
}

.navbar.scrolled .logo-text {
  color: var(--dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--secondary);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--primary);
}

.navbar.scrolled .nav-link::after {
  background-color: var(--primary);
}

.nav-btn-donate {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
}

.nav-btn-donate:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 169, 59, 0.3);
}

.navbar.scrolled .nav-btn-donate {
  background-color: var(--primary);
}

.navbar.scrolled .nav-btn-donate:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
  position: absolute;
  transition: var(--transition-normal);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.navbar.scrolled .nav-toggle span {
  background-color: var(--dark);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-light);
  background: var(--grad-dark);
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: scale(1.05);
  animation: zoom-pulse 20s infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 24, 31, 0.4) 0%, rgba(18, 24, 31, 0.8) 100%);
}

.hero .container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--secondary);
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease forwards;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: fade-in-up 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-desc {
  font-size: 20px;
  text-align: center;
  max-width: 750px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.85);
  animation: fade-in-up 1.2s ease 0.4s forwards;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  animation: fade-in-up 1.4s ease 0.6s forwards;
  opacity: 0;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.hero-scroll-btn:hover {
  opacity: 1;
}

.hero-scroll-btn svg {
  animation: bounce 2s infinite;
}

@media (max-width: 768px), (max-height: 720px) {
  .hero-scroll-btn {
    display: none;
  }
}

/* Subpage Hero Section */
.sub-hero {
  min-height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: var(--grad-dark);
  overflow: hidden;
  padding-top: 110px; /* navbar height + spacing */
  padding-bottom: 50px;
  text-align: center;
}

.sub-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.sub-hero .hero-overlay {
  z-index: 2;
}

.sub-hero .container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .sub-hero {
    padding-top: 100px; /* mobile navbar height + spacing */
    padding-bottom: 40px;
    min-height: 30vh;
  }
}

/* Quick Intro Section */
.intro {
  background-color: var(--light-soft);
  position: relative;
}

.intro::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--grad-primary);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-lead {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark-soft);
  margin-bottom: 28px;
}

.intro-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Pillar Grid Section */
.pillars {
  background-color: var(--light);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  background: var(--light-soft);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 180, 170, 0.15);
}

.pillar-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.pillar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.pillar-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.pillar-card:nth-child(2) .pillar-badge {
  background-color: var(--secondary);
}

.pillar-info {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pillar-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.pillar-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pillar-card:nth-child(2) .pillar-link {
  color: var(--secondary);
}

.pillar-link svg {
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-link svg {
  transform: translateX(4px);
}

/* Detail Section Patterns */
.detail-section {
  background-color: var(--light-soft);
  overflow: hidden;
}

.detail-section.alt {
  background-color: var(--light);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

.detail-img-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 180, 170, 0.1) 0%, rgba(229, 169, 59, 0.1) 100%);
  pointer-events: none;
}

.detail-img {
  width: 100%;
  border-radius: var(--border-radius-md);
}

.detail-info {
  padding-right: 40px;
}

.detail-section.alt .detail-info {
  padding-right: 0;
  padding-left: 40px;
}

.detail-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.detail-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.detail-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Stats Counter Section */
.stats {
  background: var(--grad-dark);
  color: var(--text-light);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-item:nth-child(2n) .stat-number {
  color: var(--secondary);
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Donation Banner & Details Page */
.donation-banner {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.donation-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.donation-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(18, 24, 31, 0.95) 0%, rgba(11, 180, 170, 0.9) 100%);
}

.donation-banner .container {
  position: relative;
  z-index: 10;
  color: var(--text-light);
  text-align: center;
}

.donation-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.donation-title {
  color: var(--text-light);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.donation-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.bank-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-md);
  padding: 32px;
  max-width: 500px;
  margin: 0 auto 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.bank-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.bank-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.bank-row {
  margin-bottom: 12px;
}

.bank-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.bank-value {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-fast);
}

.copy-btn:hover {
  color: var(--text-light);
  transform: scale(1.1);
}

.copy-btn:active {
  transform: scale(0.95);
}

/* Latest updates (Index Blog Grid) */
.updates {
  background-color: var(--light-soft);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-img-wrapper {
  height: 220px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-more svg {
  transition: var(--transition-fast);
}

.blog-card:hover .blog-more svg {
  transform: translateX(4px);
}

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-panel {
  padding: 40px;
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(11, 180, 170, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-soft);
}

.contact-form-panel {
  background-color: var(--light-soft);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  border: 2px solid #e2e8f0;
  background-color: var(--light);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--light-soft);
  box-shadow: 0 0 0 3px rgba(11, 180, 170, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Footer Section */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 40px;
  font-size: 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.toast {
  background-color: var(--dark);
  color: var(--text-light);
  padding: 16px 28px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  animation: slide-in-right 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  border-left: 4px solid var(--primary);
}

.toast.success {
  border-left-color: var(--primary);
}

.toast.copy {
  border-left-color: var(--secondary);
}

/* Animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes zoom-pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Scroll reveal class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 50px;
  }
  
  .pillars-grid, .updates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .detail-grid {
    gap: 40px;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 80px;
  }
  
  .hero {
    padding-top: 80px;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--dark-soft);
    flex-direction: column;
    padding: 60px 40px;
    gap: 32px;
    align-items: stretch;
    transition: var(--transition-normal);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    display: block;
    text-align: center;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-desc {
    font-size: 16px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  
  .detail-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .detail-section.alt .detail-grid .detail-img-wrapper {
    grid-row: 1;
  }
  
  .detail-info, .detail-section.alt .detail-info {
    padding-left: 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .donation-box {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .pillars-grid, .updates-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
