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

/* ============================================================================
   CSS VARIABLES & ROOT
   ============================================================================ */

:root {
  /* Dark Theme */
  --background: #1a3c34;
  --foreground: #f2e3b6;
  --card: #1f4540;
  --card-foreground: #f2e3b6;
  --primary: #6b9b6a;
  --primary-foreground: #faf9f7;
  --secondary: #d97070;
  --secondary-foreground: #faf9f7;
  --muted: #2d5050;
  --muted-foreground: #b3a89a;
  --border: #2d5050;
  --accent: #2d5050;
  --accent-foreground: #f2e3b6;
}

/* Light Theme */
:root[data-theme="light"] {
  /* Light Theme Colors */
  --background: #f8f6f1;
  --foreground: #2d3436;
  --card: #ffffff;
  --card-foreground: #2d3436;
  --primary: #6b9b6a;
  --primary-foreground: #ffffff;
  --secondary: #d97070;
  --secondary-foreground: #ffffff;
  --muted: #e8e4de;
  --muted-foreground: #6b6b6b;
  --border: #e8e4de;
  --accent: #f0ebe5;
  --accent-foreground: #2d3436;
}

:root {
  /* Typography */
  --font-serif: 'Fraunces', serif;
  --font-sans: 'Outfit', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius: 0.75rem;
  --radius-md: 1.5rem;
  --radius-lg: 3rem;
  --radius-full: 9999px;
}

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* ============================================================================
   CONTAINER & LAYOUT
   ============================================================================ */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(26, 60, 52, 0.8);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(45, 80, 80, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

header:not(.scrolled) {
  background-color: transparent;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(107, 155, 106, 0.2);
  overflow: hidden;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

.logo:hover .logo-image {
  border-color: var(--primary);
}

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

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  transition: color 0.3s ease;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 1.25rem;
  }
}

.logo:hover .logo-text {
  color: rgba(107, 155, 106, 0.8);
}

/* Desktop Navigation */
nav {
  display: none;
}

@media (min-width: 1280px) {
  nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  color: var(--muted-foreground);
  position: relative;
  padding: 0.25rem 0;
}

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

nav a.active {
  color: var(--primary);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 1px;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1280px) {
  .header-actions {
    display: flex;
  }
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(107, 155, 106, 0.2);
}

.donate-btn:hover {
  box-shadow: 0 15px 35px rgba(107, 155, 106, 0.4);
  transform: translateY(-2px);
}

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.theme-toggle:hover {
  background-color: var(--accent);
  border-color: var(--primary);
  color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  transition: color 0.3s ease;
}

@media (min-width: 1280px) {
  .mobile-menu-toggle {
    display: none;
  }
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--card);
  border-left: 1px solid var(--border);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 40;
}

@media (min-width: 640px) {
  .mobile-menu {
    width: 400px;
  }
}

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

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 35;
}

.mobile-menu.open ~ .mobile-menu-overlay {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: var(--muted-foreground);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background-color: rgba(107, 155, 106, 0.1);
  color: var(--primary);
}

.mobile-menu-divider {
  height: 1px;
  background-color: var(--border);
  margin: 0.75rem 0;
  opacity: 0.5;
}

.mobile-donate-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-donate-btn:hover {
  opacity: 0.9;
}

/* ============================================================================
   MAIN CONTENT
   ============================================================================ */

main {
  flex: 1;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 40rem;
  color: white;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  background-color: rgba(107, 155, 106, 0.9);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  max-width: 28rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 20px 25px rgba(107, 155, 106, 0.2);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 35px rgba(107, 155, 106, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

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

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Hero Curve */
.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 6rem;
  background-color: var(--background);
  z-index: 5;
  clip-path: ellipse(70% 100% at 50% 100%);
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ============================================================================
   CARDS & GRIDS
   ============================================================================ */

.grid {
  display: grid;
  gap: 2rem;
}

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

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 25px rgba(107, 155, 106, 0.2);
  transform: translateY(-0.5rem);
}

.card-image-wrapper {
  position: relative;
  height: 16rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(107, 155, 106, 0.2);
  z-index: 1;
  transition: background-color 0.3s ease;
}

.card:hover .card-image-overlay {
  background-color: transparent;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card-image-wrapper img {
  transform: scale(1.1);
}

.card-icon {
  position: absolute;
  top: -2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--background);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: rotate(12deg);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================================================
   STATS SECTION
   ============================================================================ */

.stats-section {
  background-color: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.stats-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3.75rem;
  }
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta-section {
  background-color: rgba(45, 80, 80, 0.3);
}

.cta-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 5rem;
  }
}

.cta-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: linear-gradient(to right, var(--secondary), var(--primary), var(--secondary));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 3.75rem;
  }
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ============================================================================
   SOCIALS SECTION
   ============================================================================ */

.socials-section {
  background-color: var(--background);
  text-align: center;
}

.socials-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-serif);
  margin-bottom: 3rem;
}

.socials-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--muted-foreground);
  background-color: rgba(45, 80, 80, 0.05);
}

.social-card:hover {
  transform: translateY(-0.25rem);
  background-color: rgba(45, 80, 80, 0.1);
}

.social-card.facebook {
  border-color: rgba(24, 119, 242, 0.2);
}

.social-card.facebook:hover {
  border-color: #1877F2;
  color: #1877F2;
}

.social-card.instagram {
  border-color: rgba(228, 64, 95, 0.2);
}

.social-card.instagram:hover {
  border-color: #E4405F;
  color: #E4405F;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.25rem;
}

.social-card.facebook .social-icon {
  background-color: rgba(24, 119, 242, 0.1);
  color: #1877F2;
}

.social-card.instagram .social-icon {
  background-color: rgba(228, 64, 95, 0.1);
  color: #E4405F;
}

.social-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.social-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  background-color: rgba(45, 80, 80, 0.3);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section {
  grid-column: span 1;
}

.footer-section:first-child {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-section:first-child {
    grid-column: span 2;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

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

.footer-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.footer-description {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--background);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  border-color: currentColor;
}

.footer-social-link.facebook:hover {
  color: #1877F2;
}

.footer-social-link.instagram:hover {
  color: #E4405F;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-heart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.heart-icon {
  color: #ff4757;
  font-weight: 700;
}

/* ============================================================================
   PAGE SECTIONS
   ============================================================================ */

.page-header {
  background-color: rgba(107, 155, 106, 0.05);
  padding: 4rem 0 6rem;
  text-align: center;
}

.page-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3.75rem;
  }
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

/* ============================================================================
   TABLES
   ============================================================================ */

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}

thead {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

tbody tr:hover {
  background-color: var(--accent);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1279px) {
  nav {
    display: none;
  }
  
  .header-actions {
    display: none;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .cta-content h2 {
    font-size: 1.875rem;
  }
  
  .stat-number {
    font-size: 2.25rem;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

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

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

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

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; }
.mt-8 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 3rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.bg-muted { background-color: var(--muted); }
.bg-card { background-color: var(--card); }

.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
