*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: florist;
    src: url(font/The\ Florist\ Handwriting.ttf);
}
body{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.container{
    width: 100%;
    /* background-color: aquamarine; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px;
    box-sizing: border-box;
    color: #252d59;
    
    
}

.navbar,header,section{
    min-width: 400px;
    box-sizing: border-box;
}

.nav-bar{
    width: 100%;
    /* background-color: #252d59; */
    
    display: flex;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-width: 320px;
    /* background-color: #252d59; */
    margin: 30px auto;
    max-width: 1080px;
    border-bottom: #252d59 1px solid;
    
}

.nav-bar .logo{
    display: flex;
    align-items: center;
 
}

.nav-bar .logo .pic{
    width: 60px;
    height: 60px;
    background-image: url(img/Logo\ OVA\ Transparent.png);
    background-size: contain;
    background-repeat: no-repeat;
}


.nav-bar a{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: #252d59;
}

.nav-bar ul{
    list-style-type: none;
    display: flex;
    flex: 1;
    justify-content:space-evenly;
    align-items: center;
    /* background-color: #b9ff66; */
}
.nav-bar ul li{
    text-align: center;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    
}

.nav-bar  ul a{
    text-decoration: none;
    color: #252d59;
    font-size: 1.1rem;
    width: fit-content;
    padding: 5px;
}

.nav-bar  ul a:hover{
    border-bottom: #252d59 solid 2px;
    
    box-sizing: border-box;
}

h1.section{
    text-align: center;
    margin: 30px auto;
    border-bottom: #252d59 solid 1px;
    width: fit-content;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}
header{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    box-sizing: border-box;
    margin: 30px auto;
    max-width: 1080px;
    flex-wrap: wrap;
    
}
header h1{
    font-weight: 500;
    font-size: 3rem;
    text-align: left;
}

header p{
    margin-top: 30px;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

header button{
    padding: 20px;
    background-color: #252d59;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    width: fit-content;
}



header .company-profile{
   flex: 1;
    padding-right: 30px;
    box-sizing: border-box;
    text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
}

header .shop-img{
    background-image: url(img/toko.webp);
    border-radius: 2rem;
    box-shadow:5px 5px 5px rgb(204, 188, 188) ;
    
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
    background-position: center;
    aspect-ratio: 3/4;
    width: 300px;
    margin: 20px auto;
    
    
}

.services{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    /* background-color: #252d59; */
    margin: 30px auto;
    max-width: 1080px;
    width: 100%;
    
}

.services .box{
    max-width: 320px;
    height: 200px;
    border: 1px black solid;
    margin: 0px auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    border-radius: 2rem;
    box-shadow: 5px 5px 5px gray;
    flex: 1;
}

.services .box.stationary{
    background-color: #f3f3f3;
}
.services .box.stationary .title span{
  /* background-color:#b9ff66; */
  font-size: 2.5rem;
}

.services .box.florist .title span{
  /* background-color:#f3f3f3; */
    font-family: florist;
    font-size: 4rem;
}

.services .box.florist{
    background-color: #b9ff66;
}

.services .box .detail{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.services .box .detail .title{
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 50px;
    box-sizing: content-box;
}

.services .box .detail .title span{
    padding: 5px;
    border-radius: 10px;
}

.services .box .detail a{
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: #252d59;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 5px;
}

.services .box .detail a:hover{
    border-bottom: 2px solid #252d59;
   
}





.services .box .img-support{
    flex: 1;
    
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}

.services .box.stationary .img-support{
 background-image: url(img/stationary.png);
}

.services .box.florist .img-support{
 background-image: url(img/florist.png);
}


.contact h1.section{
    color: #f3f3f3;
    margin-top: 10px;
    border-bottom: #f3f3f3 solid 1px;
    margin-bottom: 10px;
}
.contact{
    background-color: #252d59;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 10px;
    color: #f3f3f3;
    text-align: center;
}

.contact .logo{
    width: 100px;
    height: 100px;
    background-image: url(img/Logo\ OVA.png);
    background-size: contain;
}

.contact .address{
    font-size: 1.1rem;
}

.contact .copyright a{
    text-decoration: none;
    color: #f3f3f3;
}
