
/* 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;
  min-height: 120vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
}

/* Hero text pinned below navbar on desktop, static on mobile */
.hero-text {
  color: white;
  text-align: center;
  margin: 0 20px;
}
.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1.2em;
}

/* Navigation bar (desktop) */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: skyblue;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  z-index: 1000;
  padding: 0;
}

/* Nav links */
nav a {
  margin: 0 25px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  z-index: 1;
}

/* Flags as pseudo-elements (desktop) */
nav::before,
nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  background-repeat: no-repeat;
  background-size: contain;
}
nav::before {
  left: 0;
  background-image: url('us-flag.png');
}
nav::after {
  right: 0;
  background-image: url('kurdistan-flag.png');
}

/* Main content sections */
.section {
  padding: 100px 20px 40px;
}
.bg-light {
  background: #f9f9f9;
}

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

/* Form elements */
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 adjustments */
@media (max-width: 768px) {
  /* Navbar becomes transparent */
  nav {
    position: relative;
    top: auto;
    height: auto;
    background-color: transparent; /* clear background */
    display: block;
    padding: 10px 0;
  }
  /* Flags larger and visible */
  nav::before, nav::after {
    display: block;
    position: absolute;
    width: 60px;  /* increased width */
    height: 60px; /* increased height */
    background-repeat: no-repeat;
    background-size: contain; /* fill full height */
  }
  nav::before {
    top: 5px;
    left: 5px;
    background-image: url('us-flag.png');
  }
  nav::after {
    top: 5px;
    right: 5px;
    background-image: url('kurdistan-flag.png');
  }
  /* Nav links stacked below flags */
  nav a {
    display: block;
    margin: 80px 0 10px; /* space below larger flags */
    font-size: 1.2em;
    text-align: center;
  }
  /* Hero adjustments */
  header.hero {
  position: relative;
  background: url('hero-image.jpg') center center / cover no-repeat;
  min-height: 120vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
}
  .hero-text {
    position: static;
    margin-top: 20px;
    padding: 0 10px;
  }
  .hero-text h1 {
    font-size: 1.5em;
  }
  .hero-text p {
    font-size: 1em;
  }
}



nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: skyblue;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  z-index: 1000;
  padding: 0 20px;
}

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

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