body{
  background:rgba(0,0,0,0.9);
  margin:0;
  color:white;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.showcase::after{
  content:"";
  height:100vh;
  width:100%;
  background-image:url("../images/workspacebackground.jpeg");
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  display:block;
  filter:blur(10px);
  -webkit-filter:blur(10px);
  transition: all 1s;
}

.showcase:hover::after{
  filter:blur(0);
  -webkit-filter:blur(0);
}

.showcase:hover .content{
  filter:blur(50px);
  -webkit-filter:blur(2px);
}

.content{
  position:absolute;
  z-index:1;
  top:10%;
  left:50%;
  margin-top:105px;
  margin-left: -145px;
  width:300px;
  height:350px;
  text-align:center;
  transition:all 1s;
}

.content .logo{
  height:180px;
  width:180px;
}

.content .title{
 font-size:2rem;
}

.content .text{
  line-height:1.7;
  margin-top:1rem;
}
.container{
  max-width:960px;
  margin:auto;
  overflow:none;
  padding:4rem 1rem;
}

.grid-3{
  display:grid;
  grid-gap:20px;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-2{
  display:grid;
  grid-gap:20px;
  grid-template-columns: 1fr 1fr;
}

.center{
  text-align:center;
  margin:auto;
}

.bg-light{
  background:#f4f4f4;
  color:#333;
}

.bg-dark{
  background:#333;
  color:#f4f4f4;
}

footer{
  padding: 2.2rem;
}

footer p{
  margin:0;
}

/*smallscreen*/
@media (max-width:560px){
  .showcase::after{
    height:50vh;
  }

  .content{
    top:5%;
    margin-top:5px;
  }

  .content .logo{
    height:140px;
    width:140px;
  }

  .content .text{
    display:none;
  }

  .grid-3, .grid-2{
    grid-template-columns: 1fr;
  }

  .services div{
    border-bottom:#333 dashed 1px;
    padding: 1.2rem 1rem;
  }
}

/*landscape*/
@media (max-height:500px){
  .content .title,.content .text{
    display:none;
  }

  .content{
    top:0;
  }
}
.order-container {
  text-align: center;
}

.whatsapp-button {
  background-color: transparent;
  color: #E7C27E;
  font-size: 18px;
  border: 2px solid #E7C27E;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: rgb(255, 217, 0);
  color: black;
}
.gallery-container {
  text-align: center;
  background: rgba(0,0,0,0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

.gallery-container h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 150px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item p {
  margin: 0;
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
