@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Imperial+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*body*/
body{
    background-color: #08140A;
}
/* header */
header{
width: 100vw;
height: 90px;
display: flex;
align-items: center;
}

.title {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left:5%;
}

.title_name {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
}

.thuc_lieu_hanh {
    font-family: 'Be Vietnam Pro';
    font-weight: 800;
    font-size: 21px;
    color: #FFFFFF;
    margin: 0;
    text-decoration: none;
}

.di_thuc {
    font-family: 'Imperial Script';
    font-size: 19px;
    color: #FFFFFF;
    margin: 0;
    text-decoration: none;
}

/*Navigations*/
header .navs{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 50px;
    gap: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    min-height: 44px;
    margin-left:6%;
    }
    
    /* Trang chủ */
    header .nav_butt{
    font-family: 'DVN - Cinzel Decorative';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0px 0px;   
    line-height: 1;
    }

/* background img */
body .background-img{
position: absolute;
width: 100vw;
aspect-ratio: 16/7;
top:0;
left:0;
background: url(imagine/thpt_thd_3.jpg);
background-size: cover;
z-index: -9999;
margin: 0;
padding:0;
}

/* background gradient */
body .background-black{
position: absolute;
top:0;
left:0;
width: 100vw;
height:100vh;
background: linear-gradient(
        to bottom,
        rgba(8, 20, 10, 0.75) 0%,      /* Trên cùng - sáng hơn một chút */
        rgba(8, 20, 10, 0.85) 40%,
        rgba(8, 20, 10, 0.95) 70%,
        #08140A 100%                    /* Dưới cùng - tối đậm */
    );
z-index: -9998;
margin:0;
padding:0
}

body .food-main{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:20px;
}

body .food-img{
width:450px
}

body .food-detail{
    width: auto;
    max-width: 35vw;
    text-align: left;
}

body .food-title{
    font-family: 'EB Garamond';
    font-style:normal;
    font-weight:700;
    font-size:40px;
    color:#FFFFFF;
    width:70%;
    margin:0
}

body .food-describe{
    font-family: 'EB Garamond';
    font-style:normal;
    font-weight:400;
    font-size:20px;
    color:#FFFFFF;
    width:100%;
    margin-top:20px;
}

body .find-more{
    font-family: 'EB Garamond';
    font-style:normal;
    font-weight:400;
    font-size:20px;
    color:#FFFFFF;
    text-decoration: none;
    margin-top:50px;
    background-color: #1A5237;
    border-radius: 25px;
    padding:10px 20px
}

body .line{
    width: 60vw;
    border: 0.5px solid #FFFFFF;
    margin: 100px auto;
    margin-bottom:0px;
}

body .thuc-phuong-title{
    font-family: 'EB Garamond';
    font-style:normal;
    font-weight:700;
    font-size:50px;
    color:#FFFFFF;
    text-align: center;
    margin-top:40px
}

body .food-type{
    width:30vw;
    align-items: center;
    justify-content: center;
    display:grid;
}

body .food-type-item{
    display: flex;
    align-items: center;
    justify-content: left;
    border-radius: 25px;
    gap:30px;
    padding:15px 50px 15px 30px;
    margin-top:20px;
}

body #food-type-item.active{
    background-color: #1A5237;
}

body .food-type-name{
    font-family: 'Inter','Noto-Sans';
    font-style:normal;
    font-weight:400;
    font-size:20px;
    color:#FFFFFF;
    text-align: left;
    margin: 0;
}


body .spicy{
    height:30px;
    width:30px;
    background-color:#FFFFFF;
    border-radius: 50%;
}

.food-slider {
    width: 100%;
    max-width: 700px;           /* Giới hạn chiều rộng để chỉ hiển thị 1 món */
    height: 380px;
    position: relative;
    overflow: hidden;           /* ← Quan trọng: che phần dư */
    margin-left: 40px;
}

.food-list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    gap: 40px;
    transition: left 0.6s ease;
    padding: 0;
}

body .food-list-img{
    width:175px;
    height:175px;
    border-radius: 50%;
    border: 10px solid #95A760;
}

.meal {
    min-width: 800px;           /* Chiều rộng cố định = chiều rộng slider */
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;             /* Không cho co lại */
    box-sizing: border-box;
}

body .meal-name{
    font-family: 'DVN - Cinzel Decorative';
    font-style:normal;
    font-weight:700;
    font-size:30px;
    color:#FFFFFF;
    margin:0
}

body .meal-describe{
    font-family: 'Inter','Noto-Sans';
    font-style:normal;
    font-weight:400;
    font-size:20px;
    color:#FFFFFF;
    width:100%;
    margin-top:20px;
    padding-bottom:20px;
    width:80%
}

body .find-more-meal{
    font-family: 'Inter','Noto-Sans';
    font-style:normal;
    font-weight:700;
    font-size:20px;
    color:#FFFFFF;
    text-decoration: none;
    margin-top: 40px;               /* ← Đây là khoảng cách bạn muốn đẩy xuống */
    align-self: flex-start;         /* Đẩy nút về phía trái + không bị flex đè */
    background-color: #1A5237;
    border-radius: 25px;
    padding:10px 15px;
}


.buttons{
    position: absolute;
    top:83%;
    left:5%;
    width:90%;
    display:flex;
    justify-content: space-between;
    z-index: 9999;
  }
  
  .buttons button{
    width:50px;
    height:50px;
    border-radius: 50%;
    background-color:#fff5;
    color:#fff;
    border:none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight:bold;
  }
  
  .dots{
    position:absolute;
    bottom:10px;
    color: #fff;
    left:0;
    width:100%;
    margin:0;
    padding:0;
    display:flex;
    justify-content: center;
  }
  
  .dots li{
    list-style:none;
    width:10px;
    height:10px;
    background-color: #fff;
    margin:20px;
    border-radius:20px;
    transition:1s;
  }
  
  .dots li.active{
    width:30px;
  }



.thuc-phuong-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thuc-phuong-title {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}


  .thuc-lieu-hanh-content{
    gap: 10px;
    width:30vw
}

.thuc-lieu-hanh-content .footer-title{
    display: flex;
    align-items: center;
    gap: 5px;
}

.thuc-lieu-hanh-content .footer-title-name{
    font-family: 'Be Vietnam Pro';
    font-weight: 800;
    font-size: 21px;
    color: #FFFFFF;
    margin: 0;
    text-decoration: none;
}

.thuc-lieu-hanh-content .footer-di-thuc{
    font-family: 'Imperial Script';
    font-size: 19px;
    color: #FFFFFF;
    margin: 0;
    text-decoration: none;
}

.thuc-lieu-hanh-content .footer-detail{
    font-family: 'Tomorrow';
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: left;
    color: #FFFFFF;
}

footer .pages{
  display: flex;
    flex-direction: column; /* Ép các phần tử con xếp theo cột */
    gap: 10px;              /* Tạo khoảng cách giữa các dòng */
    padding: 10px 20px;
    justify-content: space-between;
}

footer .page{
    font-family: 'DVN - Cinzel Decorative';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
}

footer .footer-member-title{
    font-family: 'DVN - Cinzel Decorative';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;  
}

footer .footer-member-detail{
    font-family: 'Tomorrow';
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    text-align: left;
    color: #FFFFFF;
}

footer .footer-detail-copy{
font-family: 'Tomorrow';
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
  margin-top:10px;
margin-bottom:10px}