
/* Base styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Hero section */
header.hero {
  position: relative;
  background: url('hero-image.jpg') center center / cover no-repeat;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 20px;
  text-align: center;
  color: white;
}

/* Hero text on top */
.hero-text {
  padding: 20px 10px 0;
}
.hero-text h1 {
  font-size: 2em;
  margin: 0.2em 0;
}
.hero-text p {
  font-size: 1.1em;
  margin: 0;
}

/* Navigation bar (overlay on hero image) */
nav.navbar {
  background-color: transparent;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  position: relative;
  flex-wrap: wrap;
}

/* Nav links */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  z-index: 1;
}

.nav-links a,
.language-switch a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 5px 10px;
}

.language-switch {
  border-left: 2px solid white;
  padding-left: 10px;
}

/* Flags using pseudo-elements */
nav.navbar::before,
nav.navbar::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
nav.navbar::before {
  left: 10px;
  background-image: url('us-flag.png');
}
nav.navbar::after {
  right: 10px;
  background-image: url('kurdistan-flag.png');
}

/* Section styling */
.section {
  padding: 80px 20px 40px;
}
.bg-light {
  background: #f9f9f9;
}

/* Headings */
h2, h3 {
  color: #007BFF;
  text-decoration: underline;
}

/* Forms */
form input, form textarea {
  width: 90%;
  max-width: 500px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  background-color: #006400;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

/* Footer */
footer.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 10px;
}
footer a {
  color: lightgray;
}

/* Mobile */
@media (max-width: 768px) {
  header.hero {
    height: auto;
    padding-top: 30px;
  }

  .hero-text h1 {
    font-size: 1.6em;
  }

  .hero-text p {
    font-size: 1em;
  }

  nav.navbar {
    flex-direction: column;
    padding: 10px 0 0;
  }

  nav.navbar::before,
  nav.navbar::after {
    top: 10px;
    transform: none;
  }

  .nav-links {
    flex-direction: column;
    padding-top: 10px;
  }

  .nav-links a,
  .language-switch a {
    display: block;
    font-size: 1em;
    padding: 8px 0;
  }
}
