body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Professional header with enhanced gradient */
header {
  background: linear-gradient(135deg, #8b1c1c 0%, #6e1616 50%, #8b1c1c 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 8px 25px rgba(139, 28, 28, 0.3);
  position: relative;
  overflow: hidden;
}

/* Subtle background animation */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 120px;
  margin-right: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(1);
}

.logo:hover {
  transform: scale(1.08) rotateY(5deg);
  filter: brightness(1.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.header-text {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header h1 {
  margin: 0;
  font-size: 2.4rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  font-weight: 700;
  letter-spacing: 1px;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from { text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
  to { text-shadow: 2px 2px 15px rgba(255,255,255,0.3), 2px 2px 8px rgba(0,0,0,0.5); }
}

header p {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 300;
  opacity: 0.95;
}

/* Enhanced navigation */
nav {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #444 0%, #333 50%, #444 100%);
  background-size: 200% 200%;
  animation: navGradient 8s ease infinite;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-bottom: 3px solid #8b1c1c;
}

@keyframes navGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

nav a {
  color: white;
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b1c1c, #6e1616);
  transition: left 0.4s ease;
  z-index: -1;
}

nav a:hover::before {
  left: 0;
}

nav a:hover {
  transform: translateY(-2px);
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, white, transparent);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

nav a:hover::after {
  width: 80%;
}

/* Enhanced hero section */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(139, 28, 28, 0.3) 0%, 
    transparent 50%, 
    rgba(110, 22, 22, 0.3) 100%);
  z-index: 1;
  animation: heroOverlay 10s ease infinite;
}

@keyframes heroOverlay {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.1; }
}

.hero img {
  position: absolute;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) contrast(1.1);
  z-index: 0;
  transition: all 1s ease-in-out;
  animation: zoomIn 20s ease infinite;
}

@keyframes zoomIn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero img.fade {
  opacity: 0;
  transform: scale(1.1);
}

.hero-content {
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: heroContentSlide 1.5s ease-out;
}

@keyframes heroContentSlide {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hero-content p {
  font-size: 1.5rem;
  max-width: 800px;
  font-weight: 300;
  opacity: 0.95;
}

/* Enhanced fade-in animations */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(even) {
  transform: translateX(-60px);
}

.fade-in:nth-child(even).visible {
  transform: translateX(0);
}

/* Professional sections */
.section {
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b1c1c, transparent);
}

.section h2 {
  color: #8b1c1c;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section h2::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #8b1c1c, #6e1616);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  animation: underlineExpand 2s ease infinite;
}

@keyframes underlineExpand {
  0%, 100% { width: 50px; }
  50% { width: 70px; }
}

.section h2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b1c1c, transparent);
  bottom: -25px;
  left: 0;
}

/* Enhanced about boxes */
.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.about-box {
  flex: 1 1 300px;
  max-width: 600px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #8b1c1c;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(139, 28, 28, 0.03), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.about-box:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(10px, 10px);
}

.about-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 28, 28, 0.15);
  border-left-width: 8px;
}

.about-box h3 {
  color: #8b1c1c;
  margin-top: 0;
  font-size: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-box h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #8b1c1c, #6e1616);
  bottom: -2px;
  left: 0;
  transition: width 0.4s ease;
}

.about-box:hover h3::after {
  width: 60px;
}

.about-box ul {
  list-style-type: none;
  padding-left: 0;
}

.about-box li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-box li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #8b1c1c;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.about-box:hover li::before {
  transform: translateX(3px);
}

.about-box p strong, .about-box li strong {
  color: #555;
  font-weight: 600;
}

/* Enhanced services section */
.services-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #8b1c1c;
  position: relative;
  overflow: hidden;
}

.services-info::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(139, 28, 28, 0.1), transparent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.services-info a {
  color: #8b1c1c;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
}

.services-info a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b1c1c, #6e1616);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.services-info a:hover::before {
  width: 100%;
}

.services-info a:hover {
  color: #6e1616;
  text-shadow: 0 1px 2px rgba(139, 28, 28, 0.2);
}

/* Enhanced contact section */
#contact {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  border-top: 3px solid #8b1c1c;
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b1c1c, #6e1616, #8b1c1c);
  animation: borderFlow 3s ease infinite;
}

@keyframes borderFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-around;
  position: relative;
}

.contact-info, .contact-form, .contact-us {
  flex: 1 1 300px;
  text-align: left;
  background: linear-gradient(135deg, white 0%, #fafafa 100%);
  padding: 2.5rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-info::before, .contact-form::before, .contact-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8b1c1c, #6e1616);
  transition: left 0.6s ease;
}

.contact-info:hover::before, .contact-form:hover::before, .contact-us:hover::before {
  left: 0;
}

.contact-info:hover, .contact-form:hover, .contact-us:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 28, 28, 0.15);
}

.contact-info h3, .contact-form h3, .contact-us h3 {
  color: #8b1c1c;
  margin-top: 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.contact-info p strong {
  color: #555;
  font-weight: 600;
}

/* Enhanced form elements */
.contact-form input, .contact-form textarea,
.contact-us input, .contact-us textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #ddd;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
  position: relative;
}

.contact-form input:focus, .contact-form textarea:focus,
.contact-us input:focus, .contact-us textarea:focus {
  outline: none;
  border-color: #8b1c1c;
  box-shadow: 0 0 0 4px rgba(139, 28, 28, 0.1);
  transform: translateY(-1px);
}

/* Enhanced buttons */
.contact-form button, .contact-us button {
  background: linear-gradient(135deg, #8b1c1c 0%, #6e1616 50%, #8b1c1c 100%);
  background-size: 200% 200%;
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(139, 28, 28, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.contact-form button::before, .contact-us button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.contact-form button:hover::before, .contact-us button:hover::before {
  width: 300px;
  height: 300px;
}

.contact-form button:hover, .contact-us button:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 28, 28, 0.4);
}

.contact-form button:active, .contact-us button:active {
  transform: translateY(-1px);
}

/* Enhanced footer */
.footer {
  background: linear-gradient(135deg, #8b1c1c 0%, #6e1616 50%, #8b1c1c 100%);
  background-size: 200% 200%;
  animation: footerGradient 8s ease infinite;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

@keyframes footerGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: footerShimmer 4s infinite;
}

@keyframes footerShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.social-icons {
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.social-icons a {
  color: white;
  margin: 0 15px;
  font-size: 1rem;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.4s ease;
  padding: 0.8rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
}

.social-icons a:hover::before {
  left: 0;
}

.social-icons a:hover {
  opacity: 1;
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Mobile menu toggle */
#mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  z-index: 200;
  cursor: pointer;
  transition: all 0.3s ease;
}

#mobile-menu-toggle:hover {
  transform: scale(1.1);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Calendar wrapper */
.calendar-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 1000px;
  border: 3px solid #8b1c1c;
}

.calendar-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.donate-btn {
  display: inline-block;
  background: linear-gradient(135deg, #8b1c1c, #6e1616);
  color: white;
  font-weight: bold;
  padding: 1rem 2rem;
  margin-top: 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #6e1616, #8b1c1c);
}


nav a.give-link {
  color: #ffc107; /* yellow text only */
}




/* Responsive design */
@media (max-width: 768px) {
  #mobile-menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #444 0%, #333 100%);
    width: 100%;
  }

  nav.show {
    display: flex;
    animation: slideDown 0.4s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero img, .hero {
    height: 400px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  header h1 {
    font-size: 2rem;
  }

  .about-box {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero, .hero img {
    height: 300px;
  }
  
  .section h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .about-box, .contact-info, .contact-form, .contact-us {
    padding: 1.5rem;
  }
}

/* Additional professional animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(100px) rotate(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.float-in {
  animation: floatIn 1s ease-out;
}

/* Smooth transitions for all interactive elements */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* Professional loading animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}