body 
{
  margin: 0;
  padding: 0;
  background-size: 100%;
  background: url("../sprites/background_index2.jpg"); 
}


@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; 
   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: #ff6c04;
}

.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: initial;
  left: 0;
  bottom: 0;
  width: 100%;
  height:100px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  .contact h2 {
    font-size: 18px;
  }
  html, body {
      height: 100%;
      margin: 0;
      padding: 0;
    }
  }
  
  @media (max-width: 480px) {
    .contact h2 {
      font-size: 16px;
  }
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
}

.image-item{
  width : 300px;
  height : 400px;
  
  box-shadow:0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff00e0, 0 0 70px #ff00e0, 0 0 80px #ff00e0, 0 0 100px #ff00e0, 0 0 150px #ff00e0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden; /* Ensures the image stays within the container */
  transition: transform 0.3s ease; /* Adds a smooth transition effect */
 
}
#image-container .image-item:hover
{
  transform:scale(1.5);
}

#image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  height: 100%;  
}


#image-container .popup-imag{
  position:fixed;
  left: 0;
  top:0;
  background:rgba(0,0,0, .9);
  height: 100%;
  width:100%;
  z-index:100;
}

#image-container .popup-imag span{
  position:absolute;
  top:0;
  right:10px;
  font-size: 60px;
  font-weight: bolder;
  color:white;
  cursor:pointer;
  z-index: 100;
}

#image-container .popup-imag img{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, 50%);
  border: 5px solid white;
  border-radius: 5px;
  width:750px;
  object-fit:cover;
}

.printer {
 position:relative;
 margin: 0 auto;
 z-index: -1;
}

.img1 {
  position: relative;
  margin: 0 auto;
  z-index: -1;
}

.img2 {
  position: relative;
  margin: 0 auto;
  z-index: -1;
}

.text{
  top:600px;
  position: absolute;
  padding-left: 40px;
  font-size: 30px;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff00e0, 0 0 70px #ff00e0, 0 0 80px #ff00e0, 0 0 100px #ff00e0, 0 0 150px #ff00e0;
}

.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;
}

