*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #005daa;
  --accent-color: #00aeef;
  --dark-bg: #1a1a1a;
  --light-text: #ffffff;
  --gray-bg: #f3f3f3;
}

nav{
  width: 100%;
  height: 60px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  p{
    color: white;
    padding-left: 30px;
    font-family: cursive;
  }
}

.logo{
  width: 25%;
  a{
    text-decoration: none;
  }
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-right: 20px;
}

.language-selector label {
  font-weight: bold;
  color: white;
}

.language-selector select {
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

.language-selector select:focus {
  outline: none;
  border-color: #007bff;
}

.list{
  width: 50%;
}

.list ul {
  display: flex;
  align-items: center;
  gap: 30px;
  li{
    list-style: none;
  }
}

.list ul li a {
  color: white;
  text-decoration: none;
  transition: 1s;
  font-size: 17px;
}

.list ul li a:hover{
  color: blue;
}

.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  padding-right: 20px;
  cursor: pointer;
  z-index: 1001;
}

header{
    width: 100%;
    height: 500px;
    display: flex;
    div{
        width: 33%;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

section{
    height: 700px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.sec1{
    width: 90%;
    margin: auto;
    display: flex;
    gap: 40px;
}

.accordion{
    width: 40%;
}

  .accordion-item{
    width: 400px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid black;
    a{
        margin-left: 20px;
        text-decoration: none;
        p{
            color: black;
            font-weight: 900;
            font-size: 17px;
            transition: 1s;
        }
        span{
                background-color: #00a9e0;
                color: white;
                border-radius: 50%;
                margin-right: 20px;
                width: 32px;
                height: 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 20px;
                font-weight: bold;
              }
              
        }
    }

    .accordion-item a p:hover{
        color: blue;
    }

    .accordion-item a span:hover{
        background-color: transparent;
        border: 1px solid black;
    }

.SharjakanInfo{
    width: 50%;
    h1{
        text-align: center;
        padding-bottom: 10px;
    }
    p{
        line-height: 30px;
        color: gray;
        padding-top: 10px;
        span{
            margin-top: 20px;
        }
    }
    h2{
        font-weight: 900;
        font-size: 18px;
        padding-top: 10px;
    }
    ul{
        margin-left: 40px;
        li{
            color: blue;
            padding-top: 10px;
        }
    }
}

footer {
  background-color: black;
  color: #f1f1f1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footlogo img {
  width: 200px;
  margin-bottom: 20px;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}

.contact, .social-links {
  width: 45%;
}

.contact h3, .social-links h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.contact ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.contact ul li {
  font-size: 1em;
}

.contact a {
  color: blue;
  text-decoration: none;
}

.social-links a {
  color: #fff;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.social-links a:hover {
  color: #00aeef;
}

@media (max-width: 768px) {
  nav {
    padding: 0 15px;
    position: relative; /* սա կարեւոր է */
    z-index: 1000;
  }

  nav .list ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    z-index: 999;
  }

  nav .hamburger {
    display: block;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }

  nav .list ul.show {
    display: flex;
  }

  nav .list ul li {
    margin: 10px 0;
    text-align: center;
  }

  header{
    .div1{
      display: none;
    }
    .div3{
      display: none;
    }
    .div2{
      width: 100%;
    }
  }

  section{
    height: 1600px;
  }

  .sec1{
    display: block;
  }

  .SharjakanInfo{
    width: 100%;
    margin-top: 20px;
    min-height: 1300px;
  }

  footer .footer-info {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  footer .contact, footer .social-links {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  footer .contact ul li {
    font-size: 1em;
  }

  footer .social-links a {
    font-size: 1.5em;
  }
}