body {
    margin: 0px;
    font-family: 'Instrument Sans', sans-serif;
    
}


nav a {
    text-decoration: none;
    color: #525252;
    margin: 5px;
    padding: 5px 10px;
    font-size: 25px;
    transition: ease-in-out .2s;
}


nav {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    height: 120px;
    align-items: center;
    gap: 0px;
    width: 100%;
    border-bottom:solid 1px rgb(204, 204, 204); ;
    z-index: 1000;
}

nav a:hover{
    color:orange ;
    transform: scale(1.05);
}

.wrapper{
    margin: auto;
    width: auto;
    background-color: #fff;
}

.menu {
    display: flex;
    padding-left: 40px;
    align-items: center;
}

.menu a{
    margin-left: 20px;
}

.logo {
    width: 100px;
}

/* DROPDOWN */
/* TICKET */

.ticket {
    display: inline-block;
    position: relative;
}

.ticket a {
    display: flex;
    align-items: center;
}

.dropTicket {
    position: absolute;
    border-radius: 5px 5px 0px;
    width: 110px;
    transform: scaleY(0);
    transition: transform 200ms;
    transform-origin: top;
    margin-left: 20px;
    background-color: #fdfdfd;
    z-index: 1000;
}

.ticket:hover .dropTicket {
    transform: scaleY(1);
    display: flex;
    flex-direction: column;
}

.dropTicket a {
    line-height: 25px;
    display: block;
    margin: 5px;
    color: #313131;
    padding: 0px 10px;
    position: relative;
    font-size: 15px;
    
}

.dropTicket a:hover{
    color: #000;
    background-color: rgb(221, 253, 248);
}

/* PROMOTION */

.promotion {
    display: inline-block;
    position: relative;
}

.promotion a {
    display: flex;
    align-items: center;
}

.dropPromotion {
    position: absolute;
    
    background-color: #fdfdfd;
    border-radius: 5px 5px 0px;
    width: 110px;
    transform: scaleY(0);
    transition: transform 200ms;
    transform-origin: top;
    margin-left: 30px;
    z-index: 1000;
}

.dropPromotion a{
    font-size: 15px;

}

.promotion:hover .dropPromotion {
    transform: scaleY(1);
    display: flex;
    flex-direction: column;
}

.dropPromotion a {
    line-height: 20px;
    display: block;
    margin: 3px;
    color: #313131;
    padding: 0 5px;
    position: relative;
}

.dropPromotion a:hover{
    color: #000;
    background-color: rgb(221, 253, 248);
}

/*-----------*/

.extra {
    margin-right: 30px;
}

.extra a {
    border: 2px solid rgb(139, 139, 139);
    border-radius: 20px;
}
/* main */

main{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.detail-card{
    background-color: rgb(247, 250, 255);
    display: flex;
    width: 700px;
    margin: 20px;
    padding: 30px 15px 30px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.detail{
    margin-left: 15px;

}

.prodimg{
    width: 150px;
    height: 160px;
    margin: 10px;
    border-radius: 20px;
}

.nama{
    font-weight: bold;
    
}

.harga{
    border: solid rgb(63, 177, 253) 1px;
    color: #183c65;
    width: fit-content;
    padding: 5px;
    border-radius: 20px;    
}

.checkout-btn{
    text-decoration: none;
    color: orange;
    border: solid orange 1px;
    padding: 10px;
    border-radius: 20px;
    margin-left: 350px;
}

.checkout-btn:hover{
    color: white;
    border: none;
    background-color: orange;
}


/* footer */
footer{
    background-color:#183c65;
    width: inherit;
    height: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: white;
    text-transform: uppercase;

}

@media screen and (max-width: 650px){
    .menu {
        padding-left: 0;
        justify-content: center;
        flex-direction: column;
      }
      
      .menu a {
        margin-left: 10px;
        margin-right: 10px;
      }
      
      .extra {
        margin-right: 0;
        margin-top: 20px;
        
      }

      nav{
        flex-direction: column;
        height: fit-content;
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: center;
      }
      .dropTicket{
        margin-left: 0px;
      }

      .dropTicket a{
        text-align: center;
      }

      header{
        height: fit-content;
      }

      .detail-card{
        flex-direction: column;
        width: fit-content;
        align-items: center;
        text-align: center;
      }
      .checkout-btn{
        margin: 0px;
      }

      .detail{
        text-align: center;
        
      
    }

    .deskripsi{
        text-align: justify;
        margin-left: 10px;
    }

       
    }