body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f9fafe;
  color: #333;
}

header {
  background: white;
  color: rgb(255, 115, 0);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

header img {
  height: 50px;
}

/* Navigation */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: rgb(255, 115, 0);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #004e80;
}

.mermasin{
  width: 33%;
  margin: auto;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  color: rgb(255, 115, 0);
  padding-right: 20px;
  cursor: pointer;
  z-index: 1001;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.language-switcher button {
  background-color: white;
  color: rgb(255, 115, 0);
  border: 1px solid transparent;
  margin: 0 5px;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.language-switcher button:hover {
  background-color: #004e80;
  color: white;
}

.sec1 {
  width: 100%;
  height: 70vh;
  background-image: url(../Image/armavirdent2.jpg);
  background-size: cover;
  background-position: center;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

h2 {
  color: #004e80;
  font-weight: 700;
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

footer {
  background: orange;
  color: white;
  text-align: center;
  padding: 20px 15px;
  font-size: 14px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  header {
    padding: 15px;
    display: flex
  }

  nav,
  .language-switcher {
    display: none;
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f8f8f8;
    padding: 15px 30px;
    gap: 15px;
    border-top: 1px solid #ddd;
    z-index: 100;
  }

  .language-switcher.active {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
  }

  .mermasin{
    width: 90%;
  }

  .sec1{
    background-position: 85%;
  }
  main {
    margin: 20px;
    padding: 15px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }
}
