*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#wall{
    background: linear-gradient(to bottom,#fddfee 20%, #a1d7f5);
    background-repeat: no-repeat;
}


/* Elemen pembungkus untuk animasi jatuh */
.sakura-wrapper {
  position: absolute;
  top: -520px;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}

/* Gambar bunga sakura & animasi mengayun */
.sakura {
  width: 100px;
  height: 100px;
  background-image: url('https://cdn-icons-png.flaticon.com/128/4474/4474963.png');
  background-size: cover;
  opacity: 1;
  animation-name: sway;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
}

/* Animasi jatuh */
@keyframes fall {
  0% {
    transform: translateY(0);
    opacity: 0.4;
  }

  85% {
    transform: translateY(1500px);
    opacity: 0.5;
  }

  100% {
    transform: translateY(1800px);
    opacity: 0;
  }
}

/* Animasi mengayun */
@keyframes sway {
  0% {
    transform: translateX(31px) rotate(80deg);
  }
  50% {
    transform: translateX(-80px) rotate(-80deg);
  }
  100% {
    transform: translateX(31px) rotate(80deg); 
  }
}

/* Variasi posisi dan durasi */
.s1 { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.s2 { left: 20%; animation-duration: 12s; animation-delay: 2s; }
.s3 { left: 30%; animation-duration: 9s; animation-delay: 1s; }
.s4 { left: 40%; animation-duration: 11s; animation-delay: 3s; }
.s5 { left: 50%; animation-duration: 10.5s; animation-delay: 0.5s; }
.s6 { left: 60%; animation-duration: 13s; animation-delay: 1.5s; }
.s7 { left: 70%; animation-duration: 9.5s; animation-delay: 2.5s; }
.s8 { left: 80%; animation-duration: 12s; animation-delay: 1s; }
.s9 { left: 90%; animation-duration: 11s; animation-delay: 0s; }

.s1 .sakura { animation-duration: 4s; }
.s2 .sakura { animation-duration: 3.5s; }
.s3 .sakura { animation-duration: 5s; }
.s4 .sakura { animation-duration: 4.5s; }
.s5 .sakura { animation-duration: 6s; }
.s6 .sakura { animation-duration: 3.2s; }
.s7 .sakura { animation-duration: 4.8s; }
.s8 .sakura { animation-duration: 3.7s; }
.s9 .sakura { animation-duration: 5.5s; }

/* sec1 Navbar */


.fcn{
  display: flex;
  width: 100%;
}

#wrappersnav{
    position: sticky;
    top: 0;
    left: 0;
    width: 210px;
    height: 100vh;
}

.navbar{
    border-right: 1px solid black;
    height: 120vh;
}

#logos{
    width: 170px;
    height: 170px;
    margin: 20px;
}

.navbar ul{
    list-style: none; 
    margin-bottom: 200px;
}

.navbar li{
    writing-mode: vertical-lr;
    padding-bottom: 30px;
    margin: 0 auto;
    transform: translateY(-100px);
    opacity: 0;
    animation: dropDown 0.5s ease forwards;
}

.navbar a{
    text-decoration: none;
    color: black;
    font-size: 30px;
    transition: color 0.3s;
}

div a:hover {
    color: #538cff;
}

.navbar li:nth-child(1) {animation-delay: 0.2s;}
.navbar li:nth-child(2) {animation-delay: 0.4s;}
.navbar li:nth-child(3) {animation-delay: 0.6s;}

@keyframes dropDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* SECC1 */

.secc1{
    position: relative;
    width: 100%;
}

#ps1{
    padding-top: 15px;
    font-size: 80px;
    font-family: "Zen Old Mincho", serif;
    font-weight: bold;
    text-shadow: 6px 2px 4px rgba(0, 0, 0, 0.8);
    transform: scale(0);
    opacity: 0;
    animation: popIn 0.6s ease forwards;
    text-align: center;
}

#ps1:nth-child(1) {animation-delay: 0.3s;}

@keyframes popIn {
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#bkt1{
    position: absolute;
    right: 0;
    top: 10px;
}

.headm1 img{
    transform: translateX(50px);
    opacity: 0;
    animation: fadeInRight 0.5s ease forwards;
}

.headm1 img:nth-child(1) {animation-delay: 0.5s;}

@keyframes fadeInRight {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* menu sec1 */

.dish, .steak ul{
    transform: scale(0);
    opacity: 0;
    animation: popIn 0.6s ease forwards;
}

.secc1 ul{
    display: flex;
    list-style: none;
    justify-content: space-between;
}

.dish ul:nth-child(1){ animation-delay: 0.1s; }
.steak ul:nth-child(2){ animation-delay: 0.4s; }

@keyframes popIn {
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#pm1{
  position: absolute;
  top: -25px;
  padding-left: 20px;
  font-size: 30px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
}

#pm0{
  position: absolute;
  top: -25px;
  font-size: 30px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
}

#pm2{
  position: absolute;
  top: -25px;
  padding-left: 30px;
  font-size: 30px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
}

.bckjm1{
  position: relative;
  width: 152px;
  height: 24px;
  background-color: #f7849f;
  margin: 0 0 1rem;
}


.bckm1, .bckm2, .bckm3, .bckm4{
  position: relative;
  width: 260px;
  height: 260px;
  background-color: #fff7f0;
  border-radius: 20px;
  box-shadow: 10px 10px #f7849f;
}

.bckm1, .bckm2, .bckm3, .bckm4 p{
  padding-top: 185px;
  padding-left: 20px;
  font-size: 17px;
}

#hs1{
  position: absolute;
  bottom: 15px;
  right: 25px;
}

#hs2{
  text-align: center;
  padding-right: 20px;
}

.bckm1 img{
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 40px 85px;
}

.bckm2 img{
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 25px 120px;
}

.bckm3 img{
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 30px 110px;
}

.bckm4 img{
  position: absolute;
  top: 0;
  padding: 30px 100px 90px;
}

.bckm1 img:hover {
    transform: scale(1.40);
    transition: 0.2s;
}

.bckm2 img:hover {
    transform: scale(1.40);
    transition: 0.2s;
}

.bckm3 img:hover {
    transform: scale(1.40);
    transition: 0.2s;
}

.bckm4 img:hover {
    transform: scale(1.40);
    transition: 0.2s;
}

.dish, .steak, .side, .desert{
  max-width: 980px;
  margin: 0 auto 100px;
}

.dish {
  margin-top: 200px;
}

#footer{
    position: relative;
    background-color: #ccdbf2;
    height: 283px;
    bottom: 0;
}

#bk1{
    position: absolute;
    right: 0;
    top: 0;
}

#bk2{
    position: absolute;
    left: 0;
    bottom: 0;
}

#logof{
    position: absolute;
    margin: 110px;
    margin-left: 430px;
}

#footer p{
    position: absolute;
    margin: 90px;
    margin-left: 670px;
    font-size: 20px;
}

