*{
    margin:0;
    padding:0;
}

@font-face {
    font-family: Sunflower;
    src: url(font/Sunflower.otf);
}

@font-face {
    font-family: Flowerbee;
    src: url(font/Flowerbee.ttf);
}

@font-face {
    font-family: Florist;
    src: url(font/The\ Florist\ Handwriting.ttf);
}

@font-face {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    src: url(font/Flowers.ttf);
}
.container{
    background-image: url(img/bg/bunga.png);
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

header{
    width: 100%;
    height: 60px;
    display: flex;
    /* background-color: lavender; */
    justify-content: center;
}

header  .box{
    display: flex;
    flex: 1;
    /* background-color: bisque; */
    max-width: 1080px;
    box-sizing: border-box;
    padding: 0px 20px;
}

header .box a{
    text-decoration: none;
    color:#533223;
}
header .box a .logo{
    display: flex;
    align-items: center;
    gap: 10px;
}

header .box  a .logo p{
    font-family: Florist;
    font-size: 40px;
    /* background-color: red; */
    display: flex;
    align-items: center;
}

header .box nav{
    flex: 1;
    /* background-color: red; */
}

header .box  nav  ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap:20px;
    align-items: center;
    /* background-color:blueviolet; */
    height: 100%;
}

header .box nav ul li a{
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  height: calc(100vh - 60px); /* jangan lupa spasi di calc */
  overflow-y: auto;

  /* Firefox */
  scrollbar-width: thin;          /* tipis */
  scrollbar-color: transparent transparent; /* transparan default */
}

/* Chrome, Edge, Safari */
main::-webkit-scrollbar {
  width: 8px;   /* ukuran scrollbar */
}

main::-webkit-scrollbar-track {
  background: transparent; /* track transparan */
}

main::-webkit-scrollbar-thumb {
  background: transparent; /* thumb transparan default */
  border-radius: 4px;
}

/* Saat hover ke area scrollbar */
main:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.945); /* muncul warna semi-transparan */
}

main .product{
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
  
    padding: 10px;
    
    box-sizing: border-box;
    
    
    border-radius: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 10px;

}



main .product section{
    flex: 1;
    /* background-color: white; */
}
main .product section h1{
    background-color: rgba(255, 255, 255, 0.781);
    padding: 10px;
    text-align: center;
    color:#533223;
    border-bottom: #533223 2px solid;
    text-transform:uppercase;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

main .product section .items{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.781);
    border-bottom-left-radius: 10px ;
    border-bottom-right-radius: 10px;
    
}

main .product section .items .item{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    display: flex;
    flex-direction: column;
    background-color:white;
   color:#5B7451;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    gap: 5px;
    transition: background-color  0.2s ease;
    box-shadow: 5px 5px 10px gray;

}
main .product section .items .item:hover{
    cursor: pointer;
    background-color: rgb(238, 230, 230);
    color:#533223;
    
}

main .product section .items .item .img-box{
    width: 200px;
    height: 200px;
    /* background-color: #5B7451; */
    display: flex;
    justify-content: center;

}

main .product section .items .item img{
    width: 100%;
    object-fit:scale-down;
    border-radius: 10px;
    /* background-color: black; */
}

main .product section .items .item .name{
    font-family:Sunflower;
    font-size: 18px;
    padding: 5px;
}

main .product section .items .item .price{
    font-weight: bold;
}

main .product section .items .item .btn-order{
    background-color: #5B7451;
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

main .product section .items .item .btn-order:hover{
    background-color: #668659;
    
}












main .contact{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    gap: 20px;
}

main .contact h1{
    font-family: Florist;
    font-size: 120px;
    color: #533223;
    text-align: center;
    line-height: 90px;
}

main  .contact h2{
    color: #5B7451;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main .contact .box{
    display: flex;
    gap: 10px;
}

main .contact h3{
   color: #533223;
   font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   font-size: 30px;
}
main .contact .box div{
    background-color: #5B7451;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
    color: #C2C4A6;
    border: 2px #C2C4A6 solid;
    cursor: pointer;
    transition: transform 0.5s ease;
    font-family: Sunflower;
}

main .contact .box div a{
   text-decoration: none;
   color: #C2C4A6;
   display: flex;
   align-items: center;
   gap: 10px;
}
main .contact .box div:hover{
    transform: scale(1.1);
}


