/* General Page Styling */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color:#1ecbe1;
  color:black ;
}

/* Navigation Bar */
header {
  background: green;
  color: white;
  padding: 1em 0;
}

nav ul {
  background-color: green;
  color: #e9e9e9;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  background-color: green;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover, nav a.active {
  color: #f9c806; /* Basotho-inspired gold */
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2em;
  background: #1ecbe1;
}

.hero-text {
  flex: 1;
  padding: 20px;
}

.hero-text h1 {
  font-size: 2.5em;
  color: #222;
}

.hero-text p {
  font-size: 1.2em;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: blue;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
}
