*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html{
    scroll-behavior: smooth;
}

section{
    width: 100%;
    height: 100vh;
}

section nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    right: 0;
    left: 0;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 1000;
}

section nav .logo img{
    width: 150px;
    cursor: pointer;
    margin: 2px 0;
}

section nav ul{
    list-style: none;
}

section nav ul li{
    display: inline-block;
    margin: 0 15px;
}

section nav ul li a{
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 17px;
    transition: 0.1s;
}

section nav ul li a::after{
    content: '';
    width: 0;
    height: 2px;
    background: black;
    display: block;
    transition: 0.2s linear;
}

section nav ul li a:hover::after{
    width: 100%;
}

section nav ul li a:hover{
    color: #fac031;
}

section nav .icon i{
    font-size: 18px;
    color: black;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

section nav .icon i:hover{
    color: #fac031;
}

section .main{
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    top: 130px;
}

section .main .men_text h1{
    font-size: 60px;
    position: relative;
    top: -90px;
    left: 20px;
}

section .main .men_text h1 span{
    margin-left: 15px;
    color: #fac031;
    font-family: mv boli;
    line-height: 22px;
    font-size: 70px;
}

section .main .main_image img{
    width: 700px;
    position: relative;
    left: 70px;
}

section p{
    width: 650px;
    text-align: justify;
    position: relative;
    left: 123px;
    bottom: 120px;
    line-height: 22px;
}

section .main_btn{
    background: #fac031;
    position: relative;
    left: 123px;
    bottom: 30px;
    width: 150px;
    cursor: pointer;
    padding: 12px 25px;
}

section .main_btn a{
    color: white;
    margin-right: 5px;
    text-decoration: none;
}

section .main_btn i{
    color: white;
    transition: 0.3s;
}

section .main_btn:hover i{
    transform: translateX(7px);
}




/*About*/

.about{
    width: 100%;
    height: 100vh;
    padding: 70px 0;
}

.about .about_main{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about .about_main .image img{
    width: 800px;
    position: relative;
    top: 60px;
}

.about .about_main .about_text h1 span{
    color: #fac031;
    margin-right: 15px;
    font-family: mv boli;
}

.about .about_main .about_text h1{
    font-size: 55px;
    position: relative;
    bottom: 50px;
}

.about .about_main .about_text h3{
    font-size: 30px;
    margin: 0 0 50px 0;
}

.about .about_main .about_text p{
    width: 650px;
    text-align: justify;
    margin-right: 30px;
    line-height: 22px;
}

.about .about_btn{
    background: #fac031;
    padding: 12px 25px;
    text-decoration: none;
    color: #fff;
    position: relative;
    left: 55%;
    bottom: 30px;
}




/*Menu*/

.menu{
    width: 100%;
    padding: 70px 0;
}

.menu h1{
    font-size: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.menu h1 span{
    color: #fac031;
    margin-left: 15px;
    font-family: mv boli;
}

.menu h1 span::after{
    content: '';
    width: 100%;
    height: 2px;
    background: #fac031;
    display: block;
    position: relative;
    bottom: 15px;
}

.menu .menu_box{
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}

.menu .menu_box .menu_card{
    width: 325px;
    height: 480px;
    padding-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgb(238, 235, 235);
}

.menu .menu_box .menu_card .menu_image{
    width: 300px;
    height: 245px;
    margin: 0 auto;
    overflow: hidden;
}

.menu .menu_box .menu_card .menu_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

.menu .menu_box .menu_card .menu_image:hover img{
    transform: scale(1.1);
}

.menu .menu_box .menu_card .small_card{
    width: 45px;
    height: 45px;
    float: right;
    position: relative;
    top: -240px;
    right: -8px;
    opacity: 0;
    border-radius: 7px;
    transition: 0.3s;
}

.menu .menu_box .menu_card:hover .small_card{
    position: relative;
    top: -240px;
    right: 20px;
    opacity: 1;
}

.menu .menu_box .menu_card .small_card i{
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    color: #000;
    cursor: pointer;
    text-shadow: 0 0 6px #000;
    transition: 0.2s;
}

.menu .menu_box .menu_card .small_card i:hover{
    color: #fac031;
}

.menu .menu_box .menu_card .menu_info h2{
    width: 60%;
    text-align: center;
    margin: 10px auto 10px auto;
    font-size: 25px;
    color: #fac031;
}

.menu .menu_box .menu_card .menu_info p{
    text-align: center;
    margin-top: 8px;
    line-height: 21px;
}

.menu .menu_box .menu_card .menu_info h3{
    text-align: center;
    margin-top: 10px;
}

.menu .menu_box .menu_card .menu_info .menu_icon{
    color: #fac031;
    text-align: center;
    margin: 10px 0 10px 0;
}

.menu .menu_box .menu_card .menu_info .menu_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background: #fffefe;
    padding: 8px 10px;
    margin: 0 80px;
    transition: 0.3s;
}



/*Order*/

.order{
    width: 100%;
    height: 100vh;
    padding: 70px 0;
    background-size: cover;
    background-position: center;
}

.order h1{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 55px;
}

.order h1 span{
    color: #fac031;
    margin-right: 15px;
    font-family: mv boli;
}

.order h1 span::after{
    content: '';
    width: 100%;
    height: 2px;
    background: #fac031;
    display: block;
    position: relative;
    bottom: 15px;
}

.order .order_main{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.order .order_main .order_image img{
    width: 600px;
}

.order .order_main form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 10px;
}

.order .order_main form .input p{
    line-height: 25px;
}

.order .order_main form .input{
    margin: 5px;
}

.order .order_main form .input input{
    width: 300px;
    height: 35px;
    padding: 0 10px;
    border: 2px solid #000000;
    background: #000000;
    outline: none;
    border-radius: 3px;
}

.order .order_main form .input input:focus{
    border: 2px solid #fac031;
}

.order .order_main form .order_btn{
    padding: 10px 0;
    background: #fac031;
    color: rgb(0, 0, 0);
    width: 40%;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
}

.order input {
    background: #000000;
    border: 2px solid #fac031;
    color: rgb(8, 6, 6);
}

.order_map {
    width: 500px;
    height: 400px;
    
}
.order_map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.btn-order-animated {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f8b500, #fceabb);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(248, 181, 0, 0.4);
  animation: pulse-glow 2s infinite;
}

.btn-order-animated:hover {
  background: linear-gradient(135deg, #ff9900, #ffd966);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.5);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(248, 181, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(248, 181, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(248, 181, 0, 0.4);
  }
}



/*Footer*/

footer{
    width: 100%;
    padding: 30px 0 0 20px;
    background: #eeeeee;
}

footer .footer_main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

footer .footer_main .footer_tag{
    text-align: center;
}

footer .footer_main .footer_tag h2{
    color: #000;
    margin-bottom: 25px;
    font-size: 30px;
}

footer .footer_main .footer_tag p{
    margin: 10px 0;
}

footer .footer_main .footer_tag i{
    margin: 0 5px;
    cursor: pointer;
}

footer .footer_main .footer_tag i:hover{
    color: #fac031;
}

footer .end{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

footer .end span{
    color: #fac031;
    margin-left: 10px;
}

::-webkit-scrollbar{
    width: 13px;
}

::-webkit-scrollbar-track{
    border-radius: 15px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

::-webkit-scrollbar-thumb{
    background: #fac031;
    border-radius: 15px;
}

#Home,
.about,
.menu,
.order,
.team {
    background-color: rgb(180, 132, 97);
    color: white;
}

.about h1,
.about h3,
.about p,
.about_btn,
.menu h1,
.menu_info p,
.menu_info h2,
.menu_info h3,
.menu_btn,
.order h1,
.order p,
.order input,
.order_btn,
.team h1,
.team .bio,
.team .name {
    color: white;
}

.about_btn,
.menu_btn,
.order_btn {
    background-color: #fac031;
    color: black !important;
}



@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.steam {
  position: absolute;
  width: 60px;
  height: 120px;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.4) 0%, transparent 70%);
  animation: steamRise 3s infinite linear;
  z-index: 2;
  opacity: 0.6;
}

@keyframes steamRise {
  0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.6; }
  50% { opacity: 0.3; }
  100% { transform: translateX(-50%) translateY(-100px) scale(1.5); opacity: 0; }
}



.floating-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.btn-menu-lainnya {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ff9f43, #ff6f61);
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

.btn-menu-lainnya:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ff6f61, #ff9f43);
  box-shadow: 0 8px 20px rgba(255, 111, 97, 0.5);
}

.btn-order-navbar {
  display: inline-block;
  margin-left: 10px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #fac031, #f8b500);
  box-shadow: 0 3px 10px rgba(250, 192, 49, 0.4);
  transition: all 0.3s ease;
}

.btn-order-navbar i {
  margin-right: 6px;
}

.btn-order-navbar:hover {
  background: linear-gradient(135deg, #f8b500, #fac031);
  transform: scale(1.05);
  color: white;
}

.bg-home {
  background: url('image/bg_web.jpg') no-repeat center center/cover;
}

.bg-about {
  background: url('image/bg_web.jpg') no-repeat center center/cover;
}

.bg-menu {
  background: url('image/bg_web.jpg') no-repeat center center/cover;
}

.bg-order {
  background: url('image/bg_web.jpg') no-repeat center center/cover;
}
