/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  background-color: #000; /* Black background */
  padding: 10px;
  color: white;
}

.navbar .logo img {
  height: 50px;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar .nav-links li {
  margin: 0 15px;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

/* Add hover effect for links */
.navbar .nav-links a:hover {
  color: #ffcc00; /* Change color to a yellow shade when hovering */
}

/* HERO SECTION */
.hero {
  background-image: url("hero-image.jpg");
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
}

.hero p {
  font-size: 20px;
}

/* ABOUT SECTION */
.about {
  display: flex;
  padding: 40px;
  background-color: #f4f4f4;
}

.about img {
  width: 50%;
  margin-right: 20px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 32px;
}

.about-text p {
  font-size: 18px;
}

/* ACTIVITIES SECTION */
.activities {
  padding: 40px;
  background-color: #e2e2e2;
  text-align: center;
}

.activities h2 {
  font-size: 32px;
}

.activities ul {
  list-style: none;
  padding: 0;
}

.activities ul li {
  font-size: 20px;
  margin: 10px 0;
}

/* GALLERY SECTION */
.gallery {
  padding: 40px;
  text-align: center;
}

.gallery h2 {
  font-size: 32px;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.gallery-images img {
  width: 30%;
  height: auto;
  border-radius: 10px;
}

/* CONTACT SECTION */
.contact {
  padding: 40px;
  background-color: #f4f4f4;
}

.contact h2 {
  font-size: 32px;
}

.contact ul {
  list-style: none;
  padding: 0;
}

.contact ul li {
  font-size: 18px;
  margin: 10px 0;
}

.contact form {
  margin-top: 20px;
}

.contact form textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  margin-bottom: 10px;
}

.contact form button {
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
}

label {
  display: block;
  margin: 6px 0 4px;
  font-weight: 600;
}
.required {
  color: red;
  margin-left: 4px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-row input {
  flex: 1;
}

/* FOOTER */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

/* Desktop / default (641+)  */

/* Mobile */
@media (max-width: 640px) {
  .navbar {
    padding: 10px;
  }
  .hero {
    height: 300px;
    padding-top: 60px;
  }
  .about {
    flex-direction: column;
    padding: 20px;
  }
  .about img {
    width: 100%;
    margin: 0 0 16px 0;
  }
  .gallery-images {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
  }
}
