/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  scroll-behavior: smooth;
}

/* Header */
header {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 30px 10px;
}

header .logo {
  max-width: 120px;
  margin-bottom: 10px;
}

/* Navigation */
nav {
  background-color: #444;
  text-align: center;
  padding: 10px 0;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-color: #e6e6e6;
  text-align: center;
  padding: 50px 20px;
  animation: fadeIn 1s ease-in-out;
}

.hero h2 {
  color: #333;
  margin-bottom: 20px;
}

.hero p, .hero ul {
  font-size: 16px;
  line-height: 1.6;
}

.hero ul {
  list-style: disc inside;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #e91e63;
  color: white;
  padding: 12px 25px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #c2185b;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Chatbox (Optional inline chat) */
.chatbox {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  gap: 10px;
  z-index: 1000;
}

.chatbox input[type="text"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  flex: 1;
}

.chatbox button {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* Floating Buttons (Chat + Donate) */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-buttons a {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-weight: bold;
  text-align: center;
}

.floating-buttons a:hover {
  background-color: #388e3c;
}

/* Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section padding and layout */
section {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
  box-sizing: border-box;
}

/* Pink Background Section (for program descriptions) */
.program-section {
  background-color: #ffe6f0;
  padding: 30px;
  margin-top: 40px;
  border-radius: 10px;
}

/* Responsive Image */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  .floating-buttons {
    right: 10px;
    bottom: 10px;
  }
}
