/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: #f7f7ff;
  color: #000;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #1a1a1a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #34c759;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar-links li a {
  text-decoration: none;
  color: #f5f5f5;
  transition: color 0.3s;
}

.navbar-links li a:hover {
  color: #34c759;
}

/* Hero */
.hero {
  height: 50vh;
  background-size: cover;
  background-image: url("images/community.jpeg");
  background-position: center;
  background-color: rgba(0, 0, 0, 0.55);
  background-blend-mode: overlay;
  text-align: center;
  align-content: center;
  padding: 20px;
}

.hero-title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-description {
  color: #dcdcdc;
  max-width: 600px;
  margin: auto;
}

#hero-highlight {
  color: #34c759;
  font-weight: bold;
}

/* Features */
.feature {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 80px 20px;
}

.feature-container {
  flex-basis: 50%;
}

.feature-item {
  margin-bottom: 40px;
}

.feature-title {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #00bfa5;
  margin-bottom: 10px;
}

.feature-image-container {
  flex-basis: 50%;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* CTA */
.cta {
  padding: 60px 20px;
  background-color: #1a1a1a;
  text-align: center;
  color: #fff;
}

.cta-title {
  font-size: 24px;
  font-weight: 400;
}

.cta-description {
  margin: 15px 0;
  color: #f1f1f1;
}

.cta-button {
  background-color: #34c759;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #2fa74e;
}

/* Video */
.video {
  padding: 80px 20px;
  text-align: center;
}

.video-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.video-description {
  color: #6e6e6e;
  max-width: 600px;
  margin: auto;
}

.video-controls {
  margin: 20px 0;
}

.video-button {
  border: 1px solid #000;
  background: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s;
}

.video-button:hover {
  background-color: #000;
  color: #fff;
}

.video-container {
  margin-top: 20px;
  background-image: url("images/video.jpeg");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  background-color: #090c0b;
  height: 500px;
  border-radius: 8px;
  box-shadow: 1px 4px 7px rgba(0, 0, 0, 0.3);
}

/* Programs */
.programs {
  padding: 80px 20px;
  background-color: #eee;
  text-align: center;
}

.program-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.program-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s;
}

.program-card:hover {
  transform: translateY(-5px);
}

.programs-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.programs-card-description {
  color: #6e6e6e;
  margin: 15px 0;
}

.program-button {
  background-color: #34c759;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
}

.program-button:hover {
  background-color: #2fa74e;
}

/* Form */
.element {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.element-left,
.element-right {
  flex: 1;
  min-width: 300px;
}

.element-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.element-subtitle {
  color: #5d5d5d;
  margin: 10px 0 20px;
}

.element-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.element-list {
  list-style: none;
}

.element-list-item {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #5d5d5d;
}

.element-list-item::before {
  content: "→";
  margin-right: 10px;
  color: #34c759;
}

.element-form-group input,
.element-form-group select {
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.element-form-group input:focus,
.element-form-group select:focus {
  outline: none;
  border-color: #34c759;
  box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.2);
}

.element-button {
  background-color: #34c759;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.element-button:hover {
  background-color: #2fa74e;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer p {
  margin: 10px 0;
}

.footer a {
  color: #34c759;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .feature {
    flex-direction: column;
  }

  .program-cards {
    flex-direction: column;
  }
}
