/* ==========================================================================
   Main Styles - Подари Топлина
   ========================================================================== */

@import url('variables.css');

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}

h3 {
  font-size: var(--text-2xl);
}

p {
  margin-bottom: var(--space-4);
}

.text-accent {
  font-family: var(--font-accent);
}

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

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto var(--space-10);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

section {
  padding: var(--space-16) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-decoration: none;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  box-shadow: var(--shadow-md);
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-lg);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: var(--space-2) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--primary);
}

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

.nav-cta {
  margin-left: var(--space-4);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-left: var(--space-4);
  padding: var(--space-1);
  background: var(--warm-gray);
  border-radius: var(--radius-full);
}

.lang-btn {
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-medium);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: var(--text-dark);
}

.lang-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.mobile-lang-switcher {
  margin-top: var(--space-6);
  justify-content: center;
}

/* Header Right (mobile lang + menu toggle) */
.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.mobile-header-lang {
  display: flex;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: var(--z-overlay);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  padding: var(--space-20) var(--space-6);
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-base);
  z-index: var(--z-modal);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-menu-link {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-dark);
}

.mobile-menu-link:hover {
  color: var(--primary);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-overlay);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 38, 53, 0.25), rgba(107, 29, 41, 0.3));
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: var(--space-8);
  max-width: 800px;
}

.hero-countdown {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  justify-content: center;
}

/* Hero Bible Quote */
.hero-quote {
  font-family: var(--font-accent);
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-10);
  padding: var(--space-6) var(--space-8);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 255, 255, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

.hero-quote span {
  display: block;
  font-size: var(--text-base);
  margin-top: var(--space-3);
  opacity: 0.9;
  font-family: var(--font-body);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: var(--text-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  animation: bounce 2s infinite;
}

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

/* Snow Animation */
.snowflakes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.snowflake {
  position: absolute;
  top: -10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0.3;
  }
}

/* ==========================================================================
   Progress Section
   ========================================================================== */

.progress-section {
  background: var(--cream);
  padding: var(--space-12) 0;
}

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

.progress-bar-container {
  background: var(--white);
  border-radius: var(--radius-full);
  height: 30px;
  overflow: hidden;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.progress-bar {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  width: 0;
  transition: width 1.5s ease-out;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.progress-stats {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.progress-current {
  font-size: var(--text-3xl);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
}

.progress-goal {
  font-size: var(--text-lg);
  color: var(--text-medium);
}

.progress-children {
  font-size: var(--text-lg);
  color: var(--success);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.progress-children svg {
  vertical-align: middle;
  margin-right: var(--space-1);
}

/* ==========================================================================
   Mission Section
   ========================================================================== */

.mission-section {
  background: var(--white);
}

.mission-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
  font-size: var(--text-lg);
  color: var(--text-medium);
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.stat-card {
  text-align: center;
  padding: var(--space-8);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  color: var(--primary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.stat-label {
  color: var(--text-medium);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  justify-items: center;
}

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

.about-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto var(--space-4);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.15);
  transform-origin: top center;
}

.about-image-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-image-gradient-teal {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.about-placeholder {
  width: 100%;
  height: 100%;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  font-size: var(--text-sm);
}

.about-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.about-role {
  color: var(--text-medium);
  margin-bottom: var(--space-4);
}

.about-socials {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-medium);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.about-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  color: var(--text-dark);
  margin-bottom: var(--space-4);
  line-height: 1.4;
}

.quote-attribution {
  color: var(--text-medium);
  font-size: var(--text-sm);
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.map-section {
  background: var(--white);
}

.map-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

.map-svg {
  width: 100%;
  height: auto;
}

.map-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin: 0 auto;
}

.city-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.city-marker {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}

.city-info h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.city-info span {
  font-size: var(--text-sm);
  color: var(--text-medium);
}

.map-partner {
  text-align: center;
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--warm-gray);
}

.map-partner p {
  color: var(--text-medium);
  margin-bottom: var(--space-4);
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
}

/* Google Maps Wrapper */
.google-map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-4);
  position: relative;
  height: 400px;
}

.google-map-wrapper iframe {
  display: block;
  width: 100%;
  height: calc(100% + 60px); /* Extra height to compensate for hidden header */
  margin-top: -60px; /* Hide the Google My Maps header */
  border: none;
}

.map-note {
  text-align: center;
  color: var(--text-medium);
  font-size: var(--text-sm);
  margin-bottom: var(--space-8);
}

/* Prominent Partner Section */
.map-partner-highlight {
  text-align: center;
  margin-top: var(--space-10);
  padding: var(--space-10);
  background: var(--cream);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.partner-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.partner-logo-large {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-6);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.partner-logo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.partner-logo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  font-size: var(--text-sm);
}

.partner-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--text-dark);
  margin-bottom: var(--space-4);
}

.partner-description {
  color: var(--text-medium);
  max-width: 500px;
  margin: 0 auto var(--space-6);
}

.partner-link-inline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
}

/* ==========================================================================
   Transparency Section
   ========================================================================== */

.transparency-section {
  background: var(--cream);
}

.transparency-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-10);
  font-size: var(--text-lg);
  color: var(--text-medium);
}

.clothes-carousel-wrapper {
  margin-bottom: var(--space-10);
}

.clothes-carousel {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-4) 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--warm-gray);
}

.clothes-carousel::-webkit-scrollbar {
  height: 8px;
}

.clothes-carousel::-webkit-scrollbar-track {
  background: var(--warm-gray);
  border-radius: var(--radius-full);
}

.clothes-carousel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

.carousel-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
}

.clothes-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  scroll-snap-align: start;
}

.clothes-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.clothes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clothes-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: var(--space-6) var(--space-4) var(--space-4);
}

.clothes-overlay .clothes-name {
  color: var(--white);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.clothes-info {
  padding: var(--space-4);
}

.clothes-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.clothes-details {
  color: var(--text-medium);
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.clothes-price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
}

.transparency-total {
  text-align: center;
  padding: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.total-label {
  color: var(--text-medium);
  margin-bottom: var(--space-2);
}

.total-price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.total-includes {
  color: var(--text-medium);
  font-size: var(--text-sm);
}

/* ==========================================================================
   Gallery / Past Year Section
   ========================================================================== */

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  font-size: var(--text-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-8);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--accent);
}

.gallery-quote blockquote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: var(--space-4);
}

.gallery-quote cite {
  color: var(--text-medium);
  font-style: normal;
}

.gallery-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.partner-logo {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* ==========================================================================
   Donation Section
   ========================================================================== */

.donation-section {
  background: var(--primary);
  color: var(--white);
}

.donation-section .section-title {
  color: var(--white);
}

.donation-section .section-title::after {
  background: var(--accent);
}

.donation-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-10);
}

.donation-single {
  text-align: center;
  margin-bottom: var(--space-10);
}

.donation-single .btn {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-lg);
}

.donation-note {
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
}

.bank-transfer {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-10);
}

.bank-transfer.bank-transfer-main {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.15);
  padding: var(--space-10);
}

.bank-transfer h3 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.bank-details {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: left;
  max-width: 450px;
  margin: 0 auto;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--warm-gray);
  flex-wrap: wrap;
  gap: var(--space-2);
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-label {
  color: var(--text-medium);
  font-size: var(--text-sm);
}

.bank-value {
  color: var(--text-dark);
  font-weight: 600;
  font-family: monospace;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.copy-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.copy-btn:active {
  transform: translateY(0);
}

.copy-btn.copied {
  background: var(--success);
}

.copy-btn svg {
  flex-shrink: 0;
}

.copy-text {
  white-space: nowrap;
}

.payment-security {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
}

.payment-security span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* ==========================================================================
   Timeline Section
   ========================================================================== */

.timeline-section {
  background: var(--cream);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--warm-gray);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: var(--space-8);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 3px solid var(--warm-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
}

.timeline-item.active .timeline-marker {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.timeline-item.completed .timeline-marker {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.timeline-content {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.timeline-date {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.timeline-description {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--warm-gray);
}

.faq-question {
  width: 100%;
  padding: var(--space-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding-bottom: var(--space-6);
  color: var(--text-medium);
  line-height: 1.7;
}

.faq-answer-content ul {
  list-style: none;
  margin-top: var(--space-4);
}

.faq-answer-content li {
  padding-left: var(--space-6);
  position: relative;
  margin-bottom: var(--space-2);
}

.faq-answer-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
}

/* ==========================================================================
   Donors Section
   ========================================================================== */

/* Donors Inline (in progress section) */
.donors-inline {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--warm-gray);
}

.donors-inline-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--text-dark);
  margin-bottom: var(--space-2);
}

.donors-inline-subtitle {
  color: var(--text-medium);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.donors-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-3);
}

.donor-card {
  background: var(--white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.donor-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donor-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.donor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.donor-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: var(--text-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.donor-amount {
  color: var(--primary);
  font-weight: 500;
  font-size: var(--text-xs);
}

.donor-currency {
  margin-left: 2px;
}

.no-donors {
  text-align: center;
  color: var(--text-medium);
  padding: var(--space-4);
  grid-column: 1 / -1;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  color: var(--white);
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2);
  display: block;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  align-items: center;
}

.footer-socials a.footer-social {
  margin-bottom: 0;
}

.footer-social {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-base);
  flex-shrink: 0;
  padding: 0;
}

.footer-social svg {
  display: block;
  width: 20px;
  height: 20px;
}

.footer-social:hover {
  background: var(--white);
  color: var(--primary);
}

.footer-quote {
  text-align: center;
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-8);
}

.footer-quote p {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2);
}

.footer-quote cite {
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

.footer-cross {
  font-size: var(--text-2xl);
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-4);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-made {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none !important;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}
