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

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 1024px) {
  .container {
    max-width: 70%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 90%;
  }
}

html{
    scroll-behavior: smooth;
}

section{
    width: 100%;
    height: 100vh;
}
section nav .login a{
    color: #000;
    text-decoration: none;
    border: 2px solid #facc22;
    border-radius: 20px;
    padding: 7px 20px;
    transition: 0.3s;
}

section nav .login a:hover{
    background: #facc22;
    color: #fff;
}
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: 100px;
    cursor: pointer;
    margin: 10px 0;
    margin-top: 40px;
    
     
}

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: #000;
    font-weight: 500;
    font-size: 17px;
    transition: 0.1s;
}

section nav ul li a::after{
    content: '';
    width: 0;
    height: 2px;
    background: #fac031;
    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: #000;
    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;
    
    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: #e4a505;
    position: relative;
    left: 123px;
    bottom: 30px;
    width: 150px;
    cursor: pointer;
    padding: 12px 30px;
}

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

section .main_btn i{
    color: #fff;
    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_box {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  padding: 20px 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .menu_box {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .menu_box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu_card img {
    width: 80%;     /* giảm chiều ngang còn 80% so với cột */
    height: 120px;  /* giảm chiều cao */
    margin: 0 auto; /* căn giữa ảnh */
    display: block; /* để margin auto căn giữa ảnh */
  }
}

.menu_card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu_card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu_info {
  text-align: center;
  padding: 15px;
}

.menu_info h2 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #333;
}

.menu_info p {
  margin: 0;
  color: #777;
  font-size: 13px;
}

.menu_info h3 {
  color: #cc0000;
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
}

.menu_btn {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 10px 15px;
  margin: 10px auto;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.menu_btn i {
  margin-left: 5px;
}

.menu_btn:hover {
  background-color: #444;
}

 


   


.menu_image {
    width: 100%;
    aspect-ratio: 1 / 1; /* ✅ Auto tỉ lệ vuông (ảnh đẹp, responsive) */
    position: relative;
    overflow: hidden;
}

.menu_image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ✅ Giữ tỉ lệ ảnh, không méo */
    display: block;
    border-radius: 0;
}


.menu_info {
  text-align: center;
  padding: 15px;
}

.menu_info h2 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #333;
}

.menu_info p {
  margin: 0;
  color: #777;
  font-size: 13px;
}

.menu_info h3 {
  color: #cc0000;
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
}

.menu_btn {
  background-color: #ffa500;
  color: #fff;
  border: none;
 
  margin: 10px auto;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.menu_btn i {
  margin-left: 5px;
}

.menu_btn:hover {
  background-color: #444;
}

/*Gallary*/

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

.gallary h1{
    font-size: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.gallary .gallary_image_box{
    width: 95%;
    margin: 10px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

.gallary .gallary_image_box .gallary_image{
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
}

.gallary .gallary_image_box .gallary_image img{
    width: 100%;
    transition: .3s;
}

.gallary .gallary_image_box .gallary_image:hover img{
    opacity: 0.4;
}

.gallary .gallary_image_box .gallary_image h3{
    position: absolute;
    font-size: 35px;
    margin-bottom: 130px;
    color: #fac031;
    font-family: polo;
    z-index: 5;
    opacity: 0;
    transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover h3{
    opacity: 1;
}

.gallary .gallary_image_box .gallary_image p{
    position: absolute;
    width: 400px;
    margin-top: 30px;
    text-align: center;
    color: white;
    line-height: 22px;
    opacity: 0;
    z-index: 5;
    transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover p{
    opacity: 1;
}

.gallary .gallary_image_box .gallary_image .gallary_btn{
    position: absolute;
    margin-top: 180px;
    color: #000;
    background: #fac031;
    padding: 7px 25px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(45px);
    z-index: 5;
    transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover .gallary_btn{
    opacity: 1;
    transform: translateY(0);
}



/*Review*/

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

.review h1{
    font-size: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.review .review_box{
    width: 95%;
    margin: 70px auto;
    display: flex;
}

.review .review_box .review_card{
    width: 350px;
    height: 535px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 8px 20px;
    margin: 0 8px;
}

.review .review_box .review_card .review_profile{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
}

.review .review_box .review_card:hover .review_profile{
    transform: translateY(-60px);
}

.review .review_box .review_card .review_profile img{
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 5px solid #cccccc;
}

.review .review_box .review_card .review_text{
    text-align: center;
}

.review .review_box .review_card .review_text .name{
    color: #000;
    transition: 0.3s;
}

.review .review_box .review_card:hover .review_text .name{
    transform: translateY(-50px);
}

.review .review_box .review_card .review_text .review_icon{
    color: #fac031;
    transition: 0.3s;
}

.review .review_box .review_card:hover .review_text .review_icon{
    transform: translateY(-30px);
}

.review .review_box .review_card .review_text .review_social i{
    margin: 5px 1px;
    font-size: 15px;
    opacity: 0;
    cursor: pointer;
    transition: 0.3s;
}

.review .review_box .review_card:hover .review_text .review_social i{
    opacity: 1;
    transform: translateY(-8px);
}

.review .review_box .review_card .review_text p{
    text-align: center;
    line-height: 22px;
    transition: 0.3s;
}

.review .review_box .review_card:hover .review_text p{
    margin-top: 5px;
}



/*Order*/
.order {
    padding: 30px 15px;
    background-color: #f5f5f5;
    
}

.order h1{
    font-size: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
}

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

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

.order_main {
    display: flex;
    justify-content: center;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    height: 0vh;
    
  
}

.order_main form {
    width: 700px;
    max-width: 1500px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: auto;
    margin-right: auto;  
        margin-top: 60px;
}

.order_main .input {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.order_main .input p {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.order_main .input input {
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.order_main .input input:focus {
    border-color: #28a745;
    outline: none;
}

.order_btn {
    width: 100%;
    background-color: #fcb900;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order_btn:hover {
    background-color: #e0a800;
}

.order-tracking {
    margin-top: 25px;
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.tracking-code .code {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.bank-info {
    text-align: left;
    background: #f1f1f1;
    padding: 15px;
    margin: 20px auto;
    border-radius: 10px;
    line-height: 1.6;
    max-width: 500px;
    font-size: 15px;
}

.admin-notification {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
}

/* ✅ Mobile chỉnh cho gọn và đẹp */
@media screen and (max-width: 600px) {
    .order h1 {
        font-size: 20px;
        white-space: normal;
        word-break: break-word;
    }

    .order_main form {
        padding: 20px 15px;
        gap: 10px; /* giảm khoảng cách trên mobile */
    }

    .order_main .input input {
        font-size: 15px;
    }

    .order_btn {
        font-size: 15px;
        padding: 10px;
    }

    .bank-info {
        padding: 12px;
        font-size: 14px;
    }
}




/*Team*/

.team{
    width: 100%;
    height: 90vh;
    background-image: url(image/bg1.jpg);
    background-size: cover;
    background-position: center;
}

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

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

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

.team .team_box{
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 13%;
}

.team .team_box .profile{
    width: 320px;
    height: 320px;
    border-radius: 50%;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    transition: 0.4s;
}

.team .team_box .profile:hover{
    border-radius: 20px;
    height: 320px;
}

.team .team_box .profile img{
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    z-index: 2;
    transition: 0.4s;
}

.team .team_box .profile:hover img{
    border-radius: 20px;
    margin-top: -230px;
}

.team .team_box .profile .info{
    position: absolute;
    text-align: center;
    top: 25%;
    transition: 0.4s;
}

.team .team_box .profile:hover .info{
    top: 60%;
}

.team .team_box .profile .info .name{
    color: #fac031;
    margin-bottom: 15px;
}

.team .team_box .profile .info .bio{
    width: 70%;
    text-align: center;
    margin: 0 auto 10px auto;
}

.team .team_box .profile .info .team_icon i{
    margin: 10px 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

.team .team_box .profile .info .team_icon i:hover{
    color: #fac031;
}



/*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;
}

.login-link {
    color: yellow;
    font-weight: bold;
    text-decoration: none;
}
.login-link:hover {
    text-decoration: underline;
}
.login-link {
    color: yellow;
    font-weight: bold;
    text-decoration: none;
}
.login-link:hover {
    text-decoration: underline;
}

