/* ============================================
   ICON - Inclusive Conservatory of Naples
   Main Stylesheet (v2 - Refined)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy: #1B3A5C;
  --navy-light: #254d78;
  --navy-deep: #132942;
  --teal: #2BBCC4;
  --teal-dark: #229EA5;
  --teal-light: rgba(43, 188, 196, 0.08);
  --teal-glow: rgba(43, 188, 196, 0.15);
  --gold: #D4A853;
  --gold-light: rgba(212, 168, 83, 0.12);
  --bg-warm: #FAFAF7;
  --bg-cream: #F5F1EB;
  --bg-white: #FFFFFF;
  --text-primary: #2D2D2D;
  --text-secondary: #6B6B6B;
  --text-light: #9A9A9A;
  --green: #7CB78A;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 4px 30px rgba(43, 188, 196, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-warm);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--teal-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.3;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-secondary { color: var(--text-secondary); }
.bg-cream { background: var(--bg-cream); }
.bg-warm { background: var(--bg-warm); }
.bg-white { background: var(--bg-white); }

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

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

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
  background: rgba(27, 58, 92, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

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

.navbar.scrolled .container {
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition);
}

.nav-logo:hover {
  transform: scale(1.03);
}

.nav-logo img {
  height: 48px;
  width: auto;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  transition: all 0.4s ease;
}

.navbar.scrolled .nav-logo img {
  height: 44px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  transition: color var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text-primary);
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}

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

.nav-donate {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
}

.nav-donate:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.nav-donate::after {
  display: none !important;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
  display: block;
}

.navbar.scrolled .hamburger span {
  background: var(--text-primary);
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 58, 92, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  font-family: 'DM Serif Display', serif;
}

.mobile-menu a:hover {
  color: var(--teal);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 58, 92, 0.65) 0%,
    rgba(27, 58, 92, 0.75) 60%,
    rgba(27, 58, 92, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 820px;
  padding: 0 24px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.3s forwards;
}

.hero-content h1 .highlight {
  color: var(--teal);
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.9s forwards;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  opacity: 0;
  animation: bounce 2s infinite 1.5s, heroFadeUp 0.5s ease 1.5s forwards;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, 0.5);
}

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

/* ---------- Philosophy Section ---------- */
.philosophy {
  padding: 100px 0;
  background: var(--bg-cream);
  text-align: center;
}

.philosophy-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.5;
  position: relative;
}

.philosophy-quote::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--teal);
  margin: 0 auto 32px;
}

.philosophy-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- What We Teach ---------- */
.what-we-teach {
  padding: 100px 0;
  background: var(--bg-warm);
}

.teach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.teach-content {
  max-width: 500px;
}

.teach-item {
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--teal);
  transition: all var(--transition);
}

.teach-item:hover {
  padding-left: 28px;
  border-left-color: var(--gold);
}

.teach-item h4 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.teach-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.teach-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.teach-photos img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 15%;
  transition: all var(--transition-slow);
  filter: saturate(0.9);
}

.teach-photos img:hover {
  transform: scale(1.04);
  filter: saturate(1.1);
  box-shadow: var(--shadow-lg);
}

/* ---------- Student Stories ---------- */
.student-stories {
  padding: 100px 0;
  background: var(--bg-cream);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.story-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.story-thumbnail {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.story-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform var(--transition-slow);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.story-card:hover .play-overlay {
  opacity: 1;
}

.play-btn {
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.story-card:hover .play-btn {
  transform: scale(1.1);
}

.play-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 3px;
}

.story-info {
  padding: 20px;
}

.story-info h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.story-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Journey / Timeline ---------- */
.journey {
  padding: 100px 0;
  background: var(--bg-warm);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--gold));
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--teal);
  border: 4px solid var(--bg-warm);
  border-radius: 50%;
  margin: 22px auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--teal-light);
  transition: all var(--transition);
}

.timeline-step:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 8px var(--teal-glow);
}

.timeline-year {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 400;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Impact Numbers ---------- */
.impact {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 50%, #1a4a6e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle animated gradient sheen */
.impact::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(43, 188, 196, 0.06) 0%, transparent 60%);
  animation: impactSheen 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes impactSheen {
  0% { transform: translate(-10%, -10%); }
  100% { transform: translate(10%, 10%); }
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.impact-item {
  padding: 24px;
}

.impact-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 8px;
  line-height: 1;
}

.impact-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ---------- Photo Mosaic ---------- */
.mosaic {
  padding: 80px 0;
  background: var(--bg-warm);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.mosaic-grid .mosaic-item:nth-child(1) {
  grid-column: span 2;
}

.mosaic-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  min-height: 240px;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.9);
}

.mosaic-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

/* Subtle overlay on hover */
.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 58, 92, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.mosaic-item:hover::after {
  opacity: 1;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--bg-cream);
}

.testimonial-carousel {
  max-width: 740px;
  margin: 48px auto 0;
  position: relative;
}

.testimonial-slide {
  text-align: center;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeSlideIn 0.6s ease;
}

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

.testimonial-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.15;
  line-height: 0.5;
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(43, 188, 196, 0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--teal);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--teal);
  transform: scale(1.1);
}

/* ---------- Support CTA ---------- */
.support-cta {
  padding: 100px 0;
  background: var(--bg-warm);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}

.cta-image:hover {
  transform: scale(1.02);
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  min-height: 400px;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cta-list {
  list-style: none;
  margin-bottom: 32px;
}

.cta-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.cta-list li:hover {
  padding-left: 34px;
  color: var(--text-primary);
}

.cta-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  transition: all var(--transition);
}

.cta-list li:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 0 4px var(--teal-glow);
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tax-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 0 32px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-brand img {
  height: 56px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.8);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--teal);
}

/* ---------- Page Heroes (Interior - Abstract Gradient) ---------- */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
}

/* Animated abstract shapes */
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 188, 196, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  animation: floatShape1 12s ease-in-out infinite;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: floatShape2 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatShape1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}

@keyframes floatShape2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.08); }
}

/* Musical note decorative elements */
.page-hero-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.page-hero-decor span {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.04);
  font-family: serif;
  animation: floatNote 15s linear infinite;
}

.page-hero-decor span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; font-size: 3rem; }
.page-hero-decor span:nth-child(2) { left: 80%; top: 30%; animation-delay: 3s; font-size: 2.5rem; }
.page-hero-decor span:nth-child(3) { left: 25%; top: 70%; animation-delay: 6s; font-size: 1.8rem; }
.page-hero-decor span:nth-child(4) { left: 65%; top: 60%; animation-delay: 9s; font-size: 2.2rem; }
.page-hero-decor span:nth-child(5) { left: 45%; top: 15%; animation-delay: 2s; font-size: 2.8rem; }
.page-hero-decor span:nth-child(6) { left: 90%; top: 75%; animation-delay: 7s; font-size: 1.5rem; }

@keyframes floatNote {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-60px) rotate(15deg); opacity: 0; }
}

/* Abstract wave SVG at bottom of page hero */
.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.page-hero-wave svg {
  width: 100%;
  height: 60px;
}

/* Remove old image-based hero styles for inner pages */
.page-hero .page-hero-bg {
  display: none;
}

.page-hero .hero-overlay {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
}

.page-hero-content h1 {
  color: #fff;
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.2s forwards;
}

.page-hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.4s forwards;
}

/* Accent line under page hero title */
.page-hero-content h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--teal);
  margin: 20px auto 0;
}

/* ---------- About Page ---------- */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Approach Cards */
.approach-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.approach-card {
  background: var(--bg-white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--teal);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}

.approach-card h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.approach-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Program Page ---------- */
.program-detail {
  padding: 80px 0;
}

.program-intro {
  max-width: 720px;
  margin-bottom: 60px;
}

.program-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.goal-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.goal-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.goal-card:hover .goal-icon {
  background: var(--teal-glow);
  transform: scale(1.1);
}

.goal-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
}

.goal-card h4 {
  color: var(--navy);
  margin-bottom: 8px;
}

.goal-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Students Page ---------- */
.students-intro {
  padding: 80px 0 40px;
  text-align: center;
}

.students-intro p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.student-profiles {
  padding: 0 0 100px;
}

.student-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.student-profile:nth-child(even) {
  direction: rtl;
}

.student-profile:nth-child(even) > * {
  direction: ltr;
}

.student-profile:last-child {
  border-bottom: none;
}

.student-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
}

.student-video:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.student-video video,
.student-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.student-bio h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.student-bio .student-focus {
  color: var(--teal);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.student-bio p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Get Involved Page ---------- */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 80px 0;
}

.involve-card {
  background: var(--bg-white);
  padding: 48px 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
}

.involve-card > p {
  flex: 1;
}

.involve-card > .btn {
  align-self: flex-start;
  margin-top: auto;
}

.involve-card:first-child {
  align-items: center;
}

.involve-card:first-child > .btn {
  align-self: center;
}

.involve-card:hover {
  box-shadow: var(--shadow-md);
  border-top-color: var(--teal);
  transform: translateY(-4px);
}

.involve-card:first-child {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 50%, #1a4a6e 100%);
  color: #fff;
  text-align: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle animated glow on donate card */
.involve-card:first-child::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(43, 188, 196, 0.06) 0%, transparent 50%);
  animation: impactSheen 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.involve-card:first-child:hover {
  transform: translateY(-4px);
  border-top-color: var(--teal);
}

.involve-card:first-child h3 {
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  position: relative;
}

.involve-card:first-child p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.involve-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.involve-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Donation amounts */
.donation-amounts {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.amount-btn {
  padding: 12px 28px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.amount-btn:hover, .amount-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.amount-btn.custom {
  font-size: 0.9rem;
}

/* ---------- Gallery Page ---------- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 60px 0 40px;
}

.gallery-tab {
  padding: 10px 28px;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.gallery-tab.active {
  background: var(--navy);
  color: #fff;
}

.gallery-tab:hover:not(.active) {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 80px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

/* Gallery hover overlay with zoom icon */
.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 92, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 80px;
}

.gallery-video-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}

.gallery-video-featured video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--navy);
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.gallery-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 80px 0;
}

.contact-info h3 {
  margin-bottom: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  transition: all var(--transition);
}

.contact-detail:hover {
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact-detail:hover .contact-detail-icon {
  background: var(--teal-glow);
  transform: scale(1.1);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
}

.contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-detail p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form {
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition);
}

.contact-form:hover {
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0ddd8;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--bg-warm);
  transition: all var(--transition);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- Video Modal ---------- */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.video-modal.active {
  display: flex;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.video-modal-content {
  width: 100%;
  max-width: 900px;
  position: relative;
  animation: modalContentIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.video-modal-content video {
  width: 100%;
  border-radius: var(--radius-md);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all var(--transition);
}

.video-modal-close:hover {
  transform: scale(1.2);
  color: var(--teal);
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
  animation: modalIn 0.3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
  animation: modalContentIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  z-index: 1;
  transition: all var(--transition);
}

.lightbox-close:hover {
  transform: scale(1.2);
  color: var(--teal);
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.fade-up-stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up-stagger > .fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up-stagger > .fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up-stagger > .fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up-stagger > .fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up-stagger > .fade-up:nth-child(6) { transition-delay: 0.5s; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .teach-grid,
  .cta-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .timeline::before {
    display: none;
  }

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .teach-photos {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .teach-photos img {
    height: 160px;
  }

  .stories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-grid .mosaic-item:nth-child(1) {
    grid-column: span 2;
  }

  .approach-cards,
  .goals-grid,
  .involve-grid {
    grid-template-columns: 1fr;
  }

  .involve-card:first-child {
    grid-column: span 1;
  }

  .student-profile {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .student-profile:nth-child(even) {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .gallery-video-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .page-hero {
    height: 35vh;
    min-height: 280px;
  }

  .page-hero::before,
  .page-hero::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-grid .mosaic-item:nth-child(1) {
    grid-column: span 1;
  }

  .donation-amounts {
    flex-direction: column;
  }

  .amount-btn {
    width: 100%;
  }
}
