/* Hero Header */
.hero-bg {
  position: relative;
  background-image: url('images/picha_ya_background.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero-bg .overlay {
  background-color: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-bg h1 {
  font-size: 3rem;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-bg p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, #d32f2f 25%, #000 25%, #000 50%, #d32f2f 50%, #d32f2f 75%, #000 75%, #000 100%);
  background-size: 40px 40px; /* simulates shuka pattern */
  padding: 10px 0;
}

.navbar a, .dropbtn {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 15px;
  padding: 8px 12px;
  background-color: rgba(0,0,0,0.6); /* translucent black for buttons */
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar a:hover, .dropbtn:hover {
  color: #ffcc00;
  background-color: rgba(0,0,0,0.8);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0,0,0,0.8);
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-content a {
  color: #ffcc00;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: rgba(255, 204, 0, 0.2);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Main Hero Image */
.hero {
  position: relative;
  width: 100%;
  padding-top: 60px; /* space between navbar and image */
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  width: 80%;       /* reduce image size */
  max-width: 1000px;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Content Section */
.content {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #004080;
  color: white;
  font-weight: bold;
}
