/* 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);
}
.header{
  padding: 50px 20px 0;
  text-align: center;
}
/* Section Styles */
.about, .get-involved {
  padding: 20px 20px 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, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
input[type="radio"]{
  width: auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

input:focus, textarea:focus, select: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 */
}
.confirmation-message {
  font-size: 1.2rem;
  color: green;
  margin: 15px 0;
  text-align: center;
}
 
.confirmation-message.error {
  color: red;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
}

#captcha {
  margin-top: 10px;
}
/* Make images responsive */
.slider img {
  width: 100%;
  height: auto;
  display: block;
}

/* Media Gallery Section */
.media-gallery {
  padding: 50px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.media-gallery .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.media-gallery .section-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #666;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}


/* Slider Section */
.slider-section {
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  max-width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider-section {
    height: auto; /* Adjust height for smaller screens */
  }
}
