body 
{
  margin: 0;
  padding: 0;
  background-size: 100%;
  background: url("../sprites/background_index2.jpg"); 
}

#image-container {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

@media (max-width: 768px) {
  .image-item {
    flex: 0 0 calc(50% - 10px); /* Display 2 images in a row with spacing */
  }
}

@media (max-width: 480px) {
  .image-item {
    flex: 0 0 100%; /* Display 1 image per row, taking full width */
  }
}

#background{
  width:100%;
  height:100%;
}

.navbar {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: #d76909;
  color: white;
  padding: 10px;
  font-size: 30px;
}

.brand-title {
  font-size: 1.5rem;
  margin: .5rem;
}

.navbar-links {
  height: 100%;
}

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  display: block;
  text-decoration: none;
  color: white;
  padding: 1rem;
}

.navbar-links li:hover {
  background-color: #e11a00;
}

.toggle-button {
  position: absolute;
  top: .75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .navbar {
      flex-direction: column;
      align-items: flex-start;
  }

  .toggle-button {
      display: flex;
  }

  .navbar-links {
      display: none;
      width: 100%;
  }

  .navbar-links ul {
      width: 100%;
      flex-direction: column;
  }

  .navbar-links ul li {
      text-align: center;
  }

  .navbar-links ul li a {
      padding: .5rem 1rem;
  }

  .navbar-links.active {
      display: flex;
  }
}

.site-footer {
  background-color: #4d4848;
  color: #fff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo {
  font-size: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
}

.footer-links li {
  margin-right: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
}
main {
  flex: 1;
}

footer {
  background-color: #f2f2f2;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height:100px;
}

.dropbtn {
  background-color: #f9f9f9;
  color: black;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #e7920a;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 1;
}

/*contact
*/
.contact{
    
  text-align: center;
  color:#e9a209
}
.wrapper {
  margin-top: 200px;
  position: relative;
  width: 400px;
  height: 440px;
  /*background-color: aliceblue;*/
  border: 6px solid rgb(225, 146, 9);
  border-radius: 20px;
  backdrop-filter: blur(60px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff9100, 
              0 0 70px #ff9100, 0 0 80px #ff9100, 0 0 100px #ff9100, 0 0 150px #ff9100;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(60px);
}

.wrapper1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact {
  text-align: center;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .contact h2 {
    font-size: 18px;
  }

    

}

@media (max-width: 480px) {
  .contact h2 {
    font-size: 16px;
  }

}

