/* Base Styles */
:root {
  --color-orange-50: #fff7ed;
  --color-orange-100: #ffedd5;
  --color-orange-200: #fed7aa;
  --color-orange-300: #fdba74;
  --color-orange-400: #fb923c;
  --color-orange-500: #f97316;
  --color-orange-600: #ea580c;
  --color-orange-700: #c2410c;
  --color-orange-800: #9a3412;
  --color-orange-900: #7c2d12;

  --color-charcoal-50: #f8f9fa;
  --color-charcoal-100: #e9ecef;
  --color-charcoal-200: #dee2e6;
  --color-charcoal-300: #ced4da;
  --color-charcoal-400: #adb5bd;
  --color-charcoal-500: #6c757d;
  --color-charcoal-600: #495057;
  --color-charcoal-700: #343a40;
  --color-charcoal-800: #212529;
  --color-charcoal-900: #121212;
  --color-charcoal-950: #0a0a0a;

  --color-white: #ffffff;
  --color-black: #000000;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --border-radius-sm: 0.125rem;
  --border-radius: 0.25rem;
  --border-radius-md: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 0.75rem;
  --border-radius-2xl: 1rem;
  --border-radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: var(--color-charcoal-800);
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-orange-500);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-orange-600);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn-glow:hover::after {
  transform: scaleX(1);
}

.pulse-glow {
  animation: pulseGlow 2s infinite;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-primary {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-orange-500);
}

.logo-secondary {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-white);
  margin-left: 0.25rem;
}

.header.scrolled .logo-secondary {
  color: var(--color-white);
}

.logo-white {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-white);
  margin-left: 0.25rem;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header.scrolled .nav-link {
  color: var(--color-white);
}

.nav-link:hover {
  color: var(--color-orange-500);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-charcoal-900);
}

.header.scrolled .mobile-menu-btn {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-charcoal-800);
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--color-orange-500);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-charcoal-950);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.9));
}

.radial-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(249, 115, 22, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  padding: 0 1rem;
  margin: 0 auto; /* Add this line to center the content */
  width: 100%; /* Add this to ensure full width */
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, var(--color-orange-500), var(--color-orange-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  margin-left: auto; /* Add this */
  margin-right: auto; /* Add this */
  max-width: 36rem; /* Add this to control width */
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center; /* Add this to center buttons */
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 0.25rem;
  height: 4rem;
  position: relative;
  overflow: hidden;
}

.scroll-animation {
  width: 100%;
  height: 100%;
  background-color: var(--color-orange-500);
  position: absolute;
  animation: scrollDown 2s infinite;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.dark {
  background-color: var(--color-charcoal-950);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-charcoal-900);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, var(--color-orange-500), var(--color-orange-400));
  border-radius: 9999px;
}

.section-title.light {
  color: var(--color-white);
}

.section-description {
  max-width: 32rem;
  margin: 0 auto;
  color: var(--color-charcoal-700);
}

.section-description.light {
  color: rgba(255, 255, 255, 0.8);
}

.section-icon {
  font-size: 3rem;
  color: var(--color-orange-500);
  margin-bottom: 1rem;
}

/* About Section */
.about {
  background-color: #ffffff;
}

.about-content {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(249, 115, 22, 0.2), transparent);
  z-index: 1;
}

.rounded-image {
  border-radius: var(--border-radius-lg);
  transition: transform 0.7s ease;
}

.about-image:hover .rounded-image {
  transform: scale(1.05);
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal-900);
  margin-bottom: 1rem;
}

.accent-line {
  width: 4rem;
  height: 0.25rem;
  background-color: var(--color-orange-500);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.3);
}

.stat-number {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--color-charcoal-700);
}

/* Programs Section */
.programs-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card {
  background-color: rgba(33, 37, 41, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-charcoal-800);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(33, 37, 41, 0.5);
  border-radius: var(--border-radius-full);
  margin-bottom: 1rem;
}

.program-icon i {
  font-size: 1.25rem;
  color: var(--color-orange-500);
}

.program-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.program-description {
  color: rgba(255, 255, 255, 0.7);
}

/* Gallery Section */
.gallery {
  background-color: #ffffff;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 16rem;
}

.gallery-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-border {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(249, 115, 22, 0);
  border-radius: var(--border-radius-lg);
  transition: border-color 0.3s ease;
  z-index: 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  color: var(--color-white);
  z-index: 3;
  transform: translateY(1rem);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover .gallery-gradient {
  opacity: 1;
}

.gallery-item:hover .gallery-border {
  border-color: rgba(249, 115, 22, 0.7);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 64rem;
  padding: 0 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-image-container {
  position: relative;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.lightbox-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--color-white);
  text-align: center;
  margin-top: 1rem;
}

/* Donate Section */
.donate-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-charcoal-950);
}

.donate-form-container {
  max-width: 28rem;
  margin: 0 auto;
}

.donate-form {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-2xl);
  color: var(--color-charcoal-800);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal-700);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-charcoal-300);
  border-radius: var(--border-radius-md);
  background-color: var(--color-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input[type="number"] {
  -moz-appearance: textfield;
}

.form-input[type="number"]::-webkit-outer-spin-button,
.form-input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
  outline: none;
}

.form-textarea {
  min-height: 9.375rem;
  resize: vertical;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.full-width {
  grid-column: span 3;
}

.amount-label {
  display: flex;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-charcoal-200);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  font-weight: 500;
}

input[type="radio"]:checked + .amount-label {
  background-color: var(--color-orange-500);
  color: var(--color-white);
  border-color: var(--color-orange-600);
}

.amount-label:hover:not(:has(+ input[type="radio"]:checked)) {
  background-color: var(--color-charcoal-100);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-charcoal-500);
  text-align: center;
  margin-top: 1rem;
}

/* Contact Section */
.contact {
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.glass-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal-900);
  margin-bottom: 1.5rem;
}

.success-message {
  padding: 1rem;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: rgb(6, 95, 70);
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
}

.error-message {
  padding: 1rem;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: rgb(153, 27, 27);
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  transition: transform 0.2s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-orange-100);
  border-radius: var(--border-radius-full);
  margin-right: 1rem;
}

.contact-icon i {
  color: var(--color-orange-500);
}

.contact-text h4 {
  font-weight: 500;
  color: var(--color-charcoal-900);
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--color-charcoal-700);
  margin-bottom: 0;
}

.hours-list {
  list-style: none;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: var(--border-radius-md);
  transition: background-color 0.3s ease;
}

.hours-item:hover {
  background-color: var(--color-orange-50);
}

.day {
  color: var(--color-charcoal-700);
}

.time {
  font-weight: 500;
  color: var(--color-charcoal-900);
  background-color: var(--color-orange-100);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
}

/* Footer */
.footer {
  background-color: var(--color-charcoal-950);
  color: var(--color-white);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-about {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .footer-about {
    grid-column: span 1;
  }
}

.footer-description {
  color: var(--color-charcoal-400);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--border-radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-charcoal-400);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  background-color: var(--color-orange-500);
  color: var(--color-white);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--color-orange-500);
}

.footer-menu {
  list-style: none;
}

.footer-link {
  display: flex;
  align-items: center;
  color: var(--color-charcoal-400);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.footer-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-orange-500);
  margin-right: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  color: var(--color-orange-500);
}

.footer-link:hover::before {
  opacity: 1;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  border: none;
  border-top-left-radius: var(--border-radius-md);
  border-bottom-left-radius: var(--border-radius-md);
}

.newsletter-button {
  background-color: var(--color-orange-500);
  color: var(--color-white);
  border: none;
  padding: 0.5rem 1rem;
  border-top-right-radius: var(--border-radius-md);
  border-bottom-right-radius: var(--border-radius-md);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-button:hover {
  background-color: var(--color-orange-600);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--color-charcoal-700);
  color: var(--color-charcoal-400);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 15px 0 rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 0 30px 5px rgba(249, 115, 22, 0.7);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.fade-in {
  animation: fadeIn 0.7s ease-in-out;
}

.fade-in-delayed {
  opacity: 0;
  animation: fadeIn 0.7s ease-in-out forwards;
  animation-delay: 0.4s;
}

.fade-in-delayed-more {
  opacity: 0;
  animation: fadeIn 0.7s ease-in-out forwards;
  animation-delay: 0.8s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

[data-hover] {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-hover]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.3);
}
