* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: blur(2px); 
}

#bg1 {
  z-index: 1;
  opacity: 1;
}

#bg2 {
  z-index: 2;
}

.nav {
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px 20px 50px;
  
}

ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0px 50px 20px 50px;
  font-family: "Cal Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 3px grey;
}

li{
    padding-left: 40px;  
}
a{
    color: #A86523;
    text-decoration: none;
    display: inline-block; 
    transition: transform 0.3s ease;
    
    
}
a:hover{
  transform: scale(1.3);
    color: #d2a170;

}
.logo {
  height: 120px; 
  width: auto;
  margin-top: 10px;
}
.home {
  text-align: center;
  padding-top: 80px;
  font-family: "Dancing Script", cursive;
  font-size: 30px;
  color: #A86523;
  text-shadow: 1px 1px 0.1px white;
}
.home h3,h1,button{
  margin-bottom: 20px;
}
.button {
    border-radius: 4px;
    background-color: #e1dbce;
    border: 2px solid #A86523;
    color: #A86523;
    text-align: center;
    font-size: 20px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    border-radius: 20px;
  }
  
  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button span:after {
    content: '\00bb';
    position: absolute;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover span {
    padding-right: 25px;
  }
  
  .button:hover span:after {
    right: 0;
  }
  .footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-60%);
    display: flex;
    justify-content: center;
    z-index: 1000;
  }
  
  .social li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
    
  .social li img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    .nav {
      flex-direction: column;
      padding: 10px;
    }
  
    .nav nav ul {
      flex-direction: column;
      align-items: center;
      padding: 0;
    }
  
    .nav nav ul li {
      padding: 10px 0;
    }
  
    .logo {
      height: 80px;
      margin-bottom: 10px;
    }
  
    .home {
      padding: 40px 10px;
      font-size: 24px;
    }
  
    .home h1 {
      font-size: 28px;
    }
  
    .home h3 {
      font-size: 18px;
    }
  
    .button {
      padding: 12px;
      font-size: 16px;
      width: 160px;
    }
  
    .footer {
      position: relative;
      transform: none;
      left: 0;
      justify-content: center;
      margin-top: 40px;
    }
  
    .social li img {
      width: 30px;
      height: 30px;
    }
  }