/* General Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header.hero {
 /* background: #007bff; */
  color: white;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

header.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

header.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  color: white;
  background: #ff5722;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
  background: #e64a19;
  transform: scale(1.1);
}

/* Section Styles */
.about, .get-involved {
  padding: 50px 20px;
  text-align: center;
}

.about h2, .get-involved h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Animations */
.fade-in {
  animation: fadeIn 2s ease-in-out;
}

.slide-up {
  animation: slideUp 1.5s ease-in-out;
}

.slide-left {
  animation: slideLeft 1.5s ease-in-out;
}

.zoom-in {
  animation: zoomIn 1.5s ease-in-out;
}

.pulse {
  animation: pulse 2s infinite;
}

.bounce {
  animation: bounce 1.5s infinite;
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* Top Banner */
.top-banner {
  background: #ffcc00;
  color: #333;
  text-align: center;
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Form Styles */
form {
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

input:focus, textarea:focus {
  border-color: #007bff;
  outline: none;
}

button[type="submit"] {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #0056b3;
}


/* Hero Section with Slider */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place slider behind content */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.container {
  z-index: 1; /* Place content above slider */
}

