@charset "big5";
/* CSS Document */

*{box-sizing:border-box}

body{
  margin:0;
  font-family:"Microsoft JhengHei",Arial,sans-serif;
  color:#3d322b;
  background:#f8f1e6;
  overflow:hidden;
}

.header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:96px;
  padding:0 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:30;
  animation:fadeDown .8s ease both;
}

.logo img { width: 350px;}

.menu a{
  margin-left:20px;
  color:#332b25;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  position:relative;
}

.menu a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:#c99f67;
  transition:.35s;
}

.menu a:hover:after{width:100%}

.hero{
  width:100%;
  height:100vh;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 96% 78%, rgba(213,180,135,.14) 0 14%, transparent 15%),
    radial-gradient(circle at 17% 96%, rgba(213,180,135,.12) 0 18%, transparent 19%),
    linear-gradient(90deg,#f8f1e6 0%,#fff9ef 48%,#f8f1e6 100%);
}

.content{
  position:absolute;
  left:6.5%;
  top:29%;
  width:43%;
  z-index:10;
}

.sub{
  color:#bb8f58;
  letter-spacing:4px;
  font-size:20px;
  font-weight:800;
  margin-bottom:32px;
  animation:fadeUp .8s ease .2s both;
}

h1{
  margin:0;
  font-size:76px;
  line-height:1.08;
  font-weight:800;
  color:#3d322b;
  animation:fadeUp .8s ease .4s both;
}

h1 span{
  color:#c99f67;
}

.desc{
  margin-top:38px;
  max-width:640px;
  font-size:22px;
  line-height:2;
  color:#6f675f;
  animation:fadeUp .8s ease .6s both;
}

.btns{
  margin-top:48px;
  display:flex;
  align-items:center;
  gap:36px;
  animation:fadeUp .8s ease .8s both;
}

 .btns .btnb{
  display:inline-block;
  padding:19px 48px;
  background:#c99f67;
  color:#fff;
  text-decoration:none;
  border-radius:45px;
  font-weight:800;
  box-shadow:0 16px 32px rgba(201,159,103,.28);
  transition:.35s;
}

.btns .btnb:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 45px rgba(201,159,103,.38);
}


.visual{
  position:absolute;
  right:7.5%;
  top:16%;
  width:42%;
  height:70%;
  z-index:8;
  display:flex;
  align-items:center;
  justify-content:center;
  animation:rightIn 1s ease .25s both;
}

.visual img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 20px 35px rgba(80,60,40,.10));
  animation:floatVisual 5s ease-in-out infinite;
}

/* ¤p¸Ë¹¢ */
.dec{
  position:absolute;
  z-index:3;
  pointer-events:none;
  opacity:.82;
}

.dots{
  width:75px;
  height:75px;
  background-image:radial-gradient(#e7d4b5 3px, transparent 4px);
  background-size:18px 18px;
  animation:slowFloat 5s ease-in-out infinite;
}

.dots.one{left:1%;top:2%}
.dots.two{right:3%;bottom:4%;background-image:radial-gradient(#9dccd7 3px, transparent 4px)}

.square{
  width:48px;
  height:48px;
  border:7px solid rgba(147,203,222,.55);
  border-radius:10px;
  animation:rotateSoft 8s linear infinite;
}

.square.one{left:33%;top:11%}
.square.two{right:31%;bottom:8%;border-color:rgba(240,166,174,.55)}

.circle{
  width:20px;
  height:20px;
  border-radius:50%;
  background:#f1cfd5;
  animation:dotMove 4s ease-in-out infinite;
}

.circle.one{left:25%;top:9%}
.circle.two{left:46%;top:23%;background:#f5d989}
.circle.three{left:45%;bottom:15%;background:#b8d779}
.circle.four{right:8%;top:6%;background:#b8d7a4}
.circle.five{left:3%;bottom:26%;background:#82cbe0}

.flower{
  width:56px;
  height:56px;
  left:34%;
  bottom:9%;
  animation:flowerMove 5s ease-in-out infinite;
}

.flower span{
  position:absolute;
  width:26px;
  height:26px;
  border-radius:50%;
  background:#f5bfc9;
}

.flower span:nth-child(1){left:15px;top:0}
.flower span:nth-child(2){left:30px;top:15px}
.flower span:nth-child(3){left:15px;top:30px}
.flower span:nth-child(4){left:0;top:15px}
.flower span:nth-child(5){
  left:20px;
  top:20px;
  width:16px;
  height:16px;
  background:#f1c45f;
}

.leaf{
  width:90px;
  height:70px;
  animation:leafFloat 6s ease-in-out infinite;
}

.leaf:before,
.leaf:after{
  content:"";
  position:absolute;
  width:42px;
  height:22px;
  background:#b9cc8e;
  border-radius:42px 0 42px 0;
  transform:rotate(-35deg);
}

.leaf:after{
  left:24px;
  top:18px;
  transform:rotate(20deg);
  background:#c7d89d;
}

.leaf.one{right:6%;top:15%}
.leaf.two{left:5%;bottom:8%;transform:scale(.85)}

.petals{
  right:7%;
  bottom:12%;
  width:60px;
  height:60px;
  animation:leafFloat 7s ease-in-out infinite;
}

.petals:before,
.petals:after{
  content:"";
  position:absolute;
  width:48px;
  height:26px;
  background:#f1b443;
  border-radius:48px 0 48px 0;
}

.petals:before{transform:rotate(-35deg)}
.petals:after{left:18px;top:20px;transform:rotate(-15deg);opacity:.75}

@keyframes fadeDown{
  from{opacity:0;transform:translateY(-25px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(35px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes rightIn{
  from{opacity:0;transform:translateX(50px) scale(.96)}
  to{opacity:1;transform:translateX(0) scale(1)}
}

@keyframes floatVisual{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-16px)}
}

@keyframes slowFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

@keyframes rotateSoft{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

@keyframes dotMove{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-12px) scale(1.15)}
}

@keyframes flowerMove{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-14px) rotate(8deg)}
}

@keyframes leafFloat{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-16px) rotate(6deg)}
}

@media(max-width:900px){
  body{overflow:auto}
  .header{
    position:relative;
    height:auto;
    flex-direction:column;
    gap:15px;
    padding:22px;
  }
  .menu{text-align:center;line-height:2}
  .menu a{margin:0 10px;font-size:16px}
  .hero{height:auto;min-height:100vh;padding-bottom:60px}
  .content{
    position:relative;
    left:auto;
    top:auto;
    width:86%;
    margin:55px auto 0;
  }
  h1{font-size:46px}
  .desc{font-size:18px}
  .visual{
    position:relative;
    right:auto;
    top:auto;
    width:88%;
    height:auto;
    margin:45px auto 0;
  }
  .visual img{height:auto}
  .btns{
    flex-direction:column;
    align-items:flex-start;
  }
}
