.bg-be{
  background-color: #fffaf2 !important;
}
/* start header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  background: url('../images/bannernav.png');
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  height: max-content;
}
.logo-icon {
  margin-right: 8px;
  height: max-content;
  outline: none;
}
.logo-icon img{
  outline: none;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav a {
  font-weight: bold;
  color: var(--color-primary);
  position: relative;
  text-transform: uppercase;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: width 0.3s;
}
.nav a:hover::after {
  width: 100%;
}
.header-cta .btn {
  background: var(--color-primary);
  border: none;
}
.header-cta .btn:hover {
  background: var(--color-primary);
}

/* Mobile area */
.mobile-right {
  display: none;
  align-items: center;
  gap: 10px;
}
.mobile-btn {
  padding: 6px 14px;
  font-size: var(--font-size-body);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  background-color: var(--color-primary);
  width: 25px;
  height: 3px;
  display: block;
}
.menu-toggle svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.icon-close { display: none; }
.menu-toggle.active .icon-hamburger { display: none; }
.menu-toggle.active .icon-close { display: block; }
/* Responsive */
@media (max-width: 992px) {
.nav {
  position: fixed;
  top: 70px;
  right: 0;
  width: 0;
  height: 100vh;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;

  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: width 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.nav.active {
  width: 250px;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  padding: 40px 20px;
}

  .nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .desktop-only {
    display: none;
  }
  .mobile-right {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
  transform: rotate(40deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-40deg) translate(5px, -5px);
}
.menu-toggle svg { width: 40px; height: 40px; color: var(--color-primary); }
.menu-toggle .icon-close { display: none; }
.menu-toggle.active .icon-hamburger { display: none; }
.menu-toggle.active .icon-close { display: block; }

.menu-toggle span {
  transition: all 0.3s ease;
}

}
/* hiệu ứng ẩn/hiện header khi scroll */
.site-header {
  transition: transform 0.3s ease;
}

.site-header.hide {
  transform: translateY(-100%);
}

.site-header.show {
  transform: translateY(0);
}
.nav.active{
  background-image: url('../images/bannernav.png');
}
/* submenu */
.menu-item-has-children {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  flex-direction: column;
  width: max-content;
  padding: 10px 15px;
  border-radius: 5px;
  gap: 15px !important;
  box-shadow: 0px 0px 10px 0px #f9f5f2;
  align-items: start;

  /* trạng thái ban đầu ẩn */
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu-item-has-children:hover > .sub-menu {
  /* hover hiện mượt từ dưới lên */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 575px){
  .menu-item-has-children:hover > .sub-menu{
    left: 50% !important;
    transform: translateX(-50%);
  }
  .sub-menu{
    left: 50% !important;
    transform: translateX(-50%);
  }
}
.submenu-toggle svg{
  width: 20px !important;
  height: 20px !important;
  transform: translateY(4px);
  color: var(--color-primary) !important;
}
/* end header */
/* start hero */
.hero-section {
  padding: 0;
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.hero-section
.hero-swiper,
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 205, 205, 0.55);
  z-index: 1;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100% !important;
  padding: 20px;
  z-index: 2;
}
.hero-content,
.hero-overlay {
  display: none;
}
.hero-content h1 {
  color: white;

  font-size: 40px;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #f1e6e6;
}
.hero-btns .btn {
  margin: 0 8px;
}

/* Controls */
.hero-controls {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  max-width: var(--container-width);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.hero-controls .swiper-pagination {
  flex: 1;
  text-align: center;
}
.pagination{
  margin-top: 20px;
}
/* Pagination */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  width: 10px;
  height: 10px;
  transition: 0.3s;
}
.swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.2);
  opacity: 1;
}

/* Buttons as icon */

.swiper-button-next,
.swiper-button-prev {
  background: none;
  border: none;
  color: gray;
  opacity: 0.4;
  cursor: pointer;
  padding: 12px;           /* vùng click rộng */
  min-width: 48px;         /* chuẩn UX tối thiểu */
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 51;             /* nút cao hơn container */
  pointer-events: auto;    /* ✅ nhận event click */
  font-weight: bold;
  display: none !important; // new 26-09
}

.swiper-button-next,
.swiper-button-prev  {
  scale: 0.8;    /* click icon vẫn ăn vào button */
}
@media (max-width: 768px) {
  .hero-section {
    height: 20vh; /* gọn hơn desktop */
  }

  .hero-content {
    padding: 10px;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: var(--font-size-heading);
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: var(--font-size-body);
    margin-bottom: 16px;
  }

  .hero-btns .btn {
    display: inline-block;
    padding: 10px 18px;   /* đủ lớn để tap */
    font-size: var(--font-size-body);
    margin: 3px;
    min-height: 44px;     /* chuẩn UX mobile */
  }
  /* Controls */
  .hero-controls {
    bottom: 12px;
    padding: 0 12px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    min-width: 48px;      /* vùng click rộng */
    min-height: 48px;
    padding: 8px;
    border-radius: 6px;
    color: var(--color-primary);
    display: none;
  }

  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 20px;
    height: 20px;
  }

  /* Pagination dots */
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 2px !important;
  }
}
/* end hero */
/* start about */
.about-section {
  background: #fff;
  padding: 40px 0px 20px 0px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Ảnh */
.about-images {
  position: relative;
  flex: 1;
}
.about-images img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.img-main img {
  width: 100%;
  max-width: 480px;
  height: 100% !important;
}
.img-sub {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  max-width: 280px;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.img-sub img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 6px;
}

/* Nội dung */
.about-content {
  flex: 1;
}
.about-title {

  font-size: var(--font-size-heading);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--color-primary);
  position: relative;
}
.about-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 8px;
}
.about-content p {
  text-align: justify;
  font-size: var(--font-size-body);
  line-height: 1.7;
  margin: 20px 0;
  color: #333;
}
.about-btn {
  background: var(--color-primary);
  color: #fff;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-images {
    margin-bottom: 30px;
  }
  .img-sub {
    display: none;
  }
  .img-main img {
  max-width: 100%;
}
  .about-title::after {
    margin: 8px auto 0;
  }
}
/* end about */
/* start menu */
.menu-section {
  background: #fff;
  padding: var(--section-padding) 0;
  text-align: center;
}

.menu-title {

  font-size: var(--font-size-heading);
  margin-bottom: 25px;
  color: var(--color-primary);
}

/* Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.tab-btn {
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 10px 20px;
  font-size: var(--font-size-body);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
}
.tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Content */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Grid món ăn */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.menu-grid a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.menu-grid img {
  width: 100%;
  display: block;
}
.menu-info {
  padding: 12px;
}
.menu-info h4 {
  font-size: var(--font-size-body);
  margin-bottom: 5px;
  color: var(--color-primary);
}
.menu-info span {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* start menu */

/* ---------------------------------- start FORM ---------------------------------- */
.reservation-section {
  position: relative;
  background: url('../images/vvvv.jpg') center/cover no-repeat;
  padding: var(--section-padding) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@media screen and (max-width: 575px){
  .reservation-section, .reservation-section .container{
    padding: 5px;
  }
}
.reservation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.open-hours {
  margin: 15px 0px;
  font-size: 17px;
  color: #555;
  text-align: center;
  font-style: italic;
}

.reservation-form {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  width: 800px; /* desktop tối đa */
}
/* Mobile chỉnh lại */
@media (max-width: 768px) {
  .reservation-form {
    width: 100% !important;
    padding: 25px 20px;
  }
  .padding-container{
    padding: 15px !important;
  }
}
.reservation-title {

  font-size: var(--font-size-heading);
  margin-bottom: 25px;
  color: var(--color-primary);
  text-align: center;
  position: relative;
}
.reservation-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  display: block;
  margin: 10px auto 0;
}

/* Form */
form .form-group {
  margin-bottom: 18px;
  text-align: left;
}
form label {
  display: block;
  margin-bottom: 6px;
  font-size: var(--font-size-body);
  font-weight: 600;
  color: #333;
}
form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  background: #fafafa;
  transition: all 0.25s;
}
form input:focus,
form textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(201,123,7,0.2);
  outline: none;
}
.form-row {
  display: flex;
  gap: 15px;
}
.form-row .form-group {
  flex: 1;
}

/* Button */
.reserve-btn {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  padding: 14px 0;
  font-weight: bold;
  font-size: var(--font-size-body);
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.reserve-btn:hover {
  background: var(--color-primary);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .reservation-title {
    font-size: var(--font-size-heading);
  }
}
/* start testimonial */
.testimonials-section {
  background: #fafafa;
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--color-primary);
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s;
  height: 350px;
}

.avatar {
  margin-bottom: 15px;
}
.avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary);
}
.testimonial-card h4 {
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--color-primary);
}
.stars {
  color: #ffc107;
  margin-bottom: 12px;
  font-size: 20px;
}
.testimonial-card p {
  font-size: 17px;
  color: #444;
  line-height: 1.5;
}

/* Swiper container padding */
.testimonials-swiper {
  padding: 0 20px 60px; /* chừa chỗ cho nút 2 bên */
  position: relative;
}

/* Controls đẹp */
.testi-next,
.testi-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 40%;
  z-index: 10;
  transition: all 0.3s;
}
.testi-next:hover,
.testi-prev:hover {
  background: var(--color-primary);
  color: #fff;
}
.testi-next::after,
.testi-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.testi-prev {
  left: 5px;
}
.testi-next {
  right: 5px;
}

/* Pagination */
.testimonials-swiper .swiper-pagination {
  bottom: 10px !important;
}
.testimonials-swiper .swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.5;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px 15px;
  }
  .avatar img {
    width: 60px;
    height: 60px;
  }
  .testi-prev, .testi-next {
    width: 35px;
    height: 35px;
    top: 35%;
  }
}

/* end testimonial */
/* start whyus */
.whyus-section {
  position: relative;
  /* background-image: url('../images/view-in.jpg'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: var(--section-padding) 0;
  text-align: center;
  z-index: 1;
  margin-top: 20px;
}

.whyus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* lớp phủ tối */
  z-index: 0;
}
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.whyus-section .container {
  position: relative;
  z-index: 1; /* đảm bảo nội dung nằm trên overlay */
}

.whyus-section .section-title {
  color: #fff; /* đổi title sang trắng cho nổi */
}

.whyus-item {
  background: rgba(255, 255, 255, 0.9); /* card bán trong suốt */
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.whyus-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.whyus-item .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}
.whyus-item .icon img{
  width: 70px !important;
  height: 100%
}
.whyus-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.whyus-item p {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}
/* Responsive */
@media (max-width: 992px) {
  .whyus-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .whyus-grid {
    grid-template-columns: 1fr;
  }
}
/* end whyus */
/* start footer */
.site-footer {
  background: url('../images/vv.png');
  background-size: cover;
  background-repeat: no-repeat;
  color: #ddd;
  padding: 60px 0 20px;
  font-size: 17px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 23px;
}
.footer-col p {
  margin: 5px 0;
}
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: var(--font-size-body);
  color: var(--color-primary);
  transition: 0.3s;
  background-color: goldenrod !important;
}
.footer-social a:hover {
  color: #fff;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer-map iframe {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 16px;
  color: white;
}
.a-footer{
  color: goldenrod;
  text-decoration: underline;
  font-weight: bold;
}
/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-social {
    margin-top: 10px;
  }
}
.footer-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-contact li {
  margin-bottom: 8px;
  color: white;
  display: flex;
  align-items: center;
}
.footer-contact span {
  margin-right: 8px;
  font-size: 1rem;
}
.footer-contact a {
  color: white;
  text-decoration: none;
}
.footer-contact a:hover {
  color: goldenrod;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--color-primary);
}
.footer-social img {
  width: 18px;
  height: 18px;
}
/* start whyus */

/* start gallery */
.gallery-section {
  background: #fff;
  padding: var(--section-padding) 0;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid a:hover img {
  transform: scale(1.05);
}
.gallery-more .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* end gallery */
/* start page hero  */
/* Hero nhỏ cho tất cả page */
.page-hero {
  position: relative;
  background: url('../images/SDR_4675.jpg') center/cover no-repeat;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.page-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.2rem;
}

/* Container chung cho mọi page */
.page-container {
  padding: 30px 15px;
  margin: 0 auto;
}

.page-article h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-primary);
}
.page-article h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.page-article p {
  margin-bottom: 20px;
  color: #444;
  line-height: 1.7;
}
.page-article ul {
  margin: 0 0 20px 20px;
  color: #444;
}
.page-article img {
  width: 100%;
  margin: 25px 0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* contact page */
/* Khung card chung */
.card-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

/* Grid layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info */
.contact-info h2,
.contact-form h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--color-primary);
  border-left: 4px solid var(--color-primary);
  padding-left: 10px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.contact-info li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
}
.contact-info li span {
  margin-right: 8px;
  font-size: 1.1rem;
  color: var(--color-primary);
}
.contact-info a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Social */
.contact-social {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.social-btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.social-btn.fb {
  background: #3b5998;
  color: #fff;
}
.social-btn.fb:hover {
  background: #2d4373;
}
.social-btn.zalo {
  background: #0068ff;
  color: #fff;
}
.social-btn.zalo:hover {
  background: #004fc2;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn {
  background: var(--color-primary);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
}
.contact-form .btn:hover {
  background: var(--color-primary);
}

/* Map */
.contact-map iframe {
  width: 100%;
  border: none;
  display: block;
  height: 312px !important;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .card-box {
    padding: 20px;
  }
}
/* blogs */
/* Page Title */
.page-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--color-primary);
  text-align: center;
  position: relative;
}
.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 5px auto 0;
  border-radius: 2px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
  align-items: start;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: auto;
}
.blog-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-content h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-primary);
display: -webkit-box;

-webkit-line-clamp: 2; /* số dòng tối đa */

-webkit-box-orient: vertical;

overflow: hidden;

text-overflow: ellipsis;        /* hoặc set max-width tùy ý */
}
.blog-content h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;

-webkit-line-clamp: 2; /* số dòng tối đa */

-webkit-box-orient: vertical;

overflow: hidden;

text-overflow: ellipsis;  
}
.btn-read {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
  transition: background 0.3s;
}
.btn-read:hover {
  background: var(--color-primary);
}

/* Pagination */
.pagination {
  text-align: center;
}
.page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border-radius: 6px;
  background: #eee;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.page-numbers:hover {
  background: var(--color-primary) !important;
  color: #fff;
}
.page-numbers.current {
  background: var(--color-primary) !important;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* menu */
/* Tags */
.menu-tags {
  text-align: center;
  margin-bottom: 35px;
}
.menu-tags .menu-tag {
  display: inline-block;
  margin: 0 8px 10px;
  padding: 8px 18px;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.menu-tags .menu-tag:hover,
.menu-tags .menu-tag.active {
  background: var(--color-primary);
  color: #fff;
}

/* Grid món ăn */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.menu-item {
  text-align: center;
  /* background: #fff; */
  /* border-radius: 10px; */
  /* padding: 10px; */
  /* box-shadow: 0 6px 16px rgba(0,0,0,0.08); */
  /* transition: transform 0.3s; */
}
.menu-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 575px) {
  .menu-thumb img{
    height: 100px;
  }
}
.menu-name {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin: 6px 0px;
}
.menu-price {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .menu-title, .menu-title, .page-title, .about-title, .footer-title, .section-title, .reservation-title {
    font-size: 26px !important;
  }
}


/* single page */
    /* Container grid 2 cột */
.page-grid {
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 30px;
}
@media screen and (max-width: 575px){
  .page-grid {
    grid-template-columns: 1fr;
}
}
/* Main content chiếm 2/3 */
.page-main {
    min-width: 300px;
}

/* Sidebar chiếm 1/3 */
.page-sidebar {
    min-width: 200px;
    /* padding: 20px; */
    border-radius: 8px;
    /* box-shadow: 0px 0px 10px 0px rgb(213, 213, 213); */
    height: max-content;
        position: sticky;
    top: 20px; /* cách top trình duyệt 20px */
}
.page-single-custom .page-title{
    text-align: start !important;
}
.page-single-custom .page-title::after{
    text-align: start !important;
    margin: 0;
}
/* Sidebar title */
.page-sidebar .sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Danh sách danh mục */
.page-sidebar .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-sidebar .category-list li {
    margin-bottom: 10px;
}

.page-sidebar .category-list li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.page-sidebar .category-list li a:hover {
    color: #e67e22;
}

.blog-container{
  display: grid;
  grid-template-columns: 75% 25%;
  gap: 30px;
}
@media screen and (max-width: 575px){
  .blog-container{
    grid-template-columns: 1fr;
  }
}
.page-single-thumbnail img{
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  border-radius:10px;
  margin-bottom: 10px;
}

/* menu new */
.menu-container{
  padding: 30px 0px;
}
.menu-container{
  background: url('../images/bgmenu.png') center/cover no-repeat;
}
.buffet-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 cột */
  gap: 20px; /* khoảng cách giữa ảnh */
  padding: 10px;
}

.buffet-item img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* bo góc nhẹ */
  display: block;
}
/* booking */
@media screen and (max-width: 575px){
  .reservation-section .form-group input{
    padding: 5px 10px !important;
  }
  .reservation-section .form-group{
    margin-bottom: 10px !important;
  }
}


/*---------------------------------Trang About Start--------------------------------- */
/* Danh mục chính */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list > li {
  margin-bottom: 15px;
}

/* Link danh mục */
.category-list > li > a {
  font-weight: 600;
  color: #971d03;
  text-decoration: none;
}

.category-list > li > a:hover {
  text-decoration: underline;
}

/* Danh sách bài viết con */
.sidebar-posts {
  margin: 6px 0 0 20px;   /* thụt lề so với tên danh mục */
  padding-left: 0;
  list-style: none;
}

.sidebar-posts li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.sidebar-posts li a {
  color: #444;
  text-decoration: none;
  display: inline-block;
}

.sidebar-posts li a:hover {
  color: #971d03;
  text-decoration: underline;
}

/* Icon danh mục chính */
.category-list > li > i {
  margin-right: 6px;
  color: #971d03;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar-posts li {
    font-size: 13px;
  }
}
/* Box chung */
.sidebar-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
  margin-bottom: 20px;
   border: 1px solid #e0e0e0;
}

/* Tiêu đề box */
.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #971d03;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Danh mục */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.category-list li a:hover {
  color: #971d03;
  text-decoration: underline;
}

/* Bài viết mới */
.recent-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recent-posts li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.recent-posts li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
}

/* Thumbnail */
.recent-thumb {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tiêu đề bài viết */
.recent-title {
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* giới hạn 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-posts li a:hover .recent-title {
  color: #971d03;
  text-decoration: underline;
}


#zalo-vr .phone-vr-img-circle,
#fanpage-vr .phone-vr-img-circle
{
  background-color: #daa520 !important;
}
#zalo-vr .phone-vr-circle-fill,
#fanpage-vr .phone-vr-circle-fill
{
    background-color: #daa520 !important;
    opacity: 0.7 !important;
}
#fanpage-vr img{
  border-radius: 100%;
}

/*---------------------------------Popup Start--------------------------------- */
#popmake-277 {
  border: none !important;
}
#pum_popup_title_277{
  font-size: 30px;
  font-weight: 600;
  color: var(--color-primary)
}

/* Khung popup */
.pum-container, .pum-theme-default-theme {
  max-width: 500px !important;
  border-radius: 8px !important;
  padding: 20px !important;
  background: #fff !important;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3) !important;
}

/* Tiêu đề */
.coupon-title {
  font-size: 18px !important;
  font-weight: bold !important;
  margin-bottom: 15px !important;
  color: #333 !important;
}

/* List */
.coupon-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

/* Item */
.coupon-item {
  display: flex !important;
  background: #fff8e5 !important;
  border: 1px dashed #ff9800 !important;
  border-radius: 8px !important;
  padding: 10px !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

/* Icon */
.coupon-icon img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

/* Nội dung */
.coupon-content {
  flex: 1 !important;
}

.coupon-text {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #e53935 !important;
  margin: 0 0 5px !important;
}

.coupon-condition {
  font-size: 15px !important;
  color: black !important;
  margin: 0 0 5px !important;
  font-weight: 500 !important;
}

.coupon-code {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 5px !important;
}

.coupon-code span {
  font-size: 15px !important;
  font-weight: bold !important;
  color: #d32f2f !important;
}

.btn-copy {
  background: #ff9800 !important;
  border: none !important;
  color: #fff !important;
  cursor: pointer !important;
  padding: 5px 8px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.btn-copy:hover {
  background: #e53935 !important;
}

.btn-copy.copied {
  background: #e53935 !important;   /* đỏ khi đã copy */
  color: #fff !important;
}

.coupon-expiry {
  font-size: 15px !important;
  color: black !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

.coupon-action {
  text-align: center !important;
  margin-top: 20px !important;
}

.btn-dat-ban {
  display: inline-block !important;
  padding: 12px 24px !important;
  background: #e53935 !important;   /* đỏ */
  color: #fff !important;
  font-size: 16px !important;
  font-weight: bold !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: background 0.3s ease !important;
}

.btn-dat-ban:hover {
  background: #c62828 !important;   /* đỏ đậm khi hover */
}

/* Nút tắt popup maker */
.pum-container .pum-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 30px !important;
  height: 30px !important;
  background: white !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  opacity: 1 !important;
  transition: background 0.3s ease !important;
  box-shadow: none !important;

  /* Ẩn ký tự × mặc định */
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}

/* Icon Font Awesome */
.pum-container .pum-close::before {
  content: "\f00d"; /* mã unicode fa-times */
  font-family: "Font Awesome 5 Free"; /* hoặc "Font Awesome 6 Free" */
  font-weight: 900;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Hover */
.pum-container .pum-close:hover {
  background: #c62828 !important;
}

.pum-container .pum-close:hover::before {
  color: #fff !important;
}
/*---------------------------------Popup End--------------------------------- */

/*---------------------------------To Top Start--------------------------------- */

.to-top-btn {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 48px; height: 48px;
  background: #daa520;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.to-top-btn:hover { background: #c62828; }

/*---------------------------------To Top End--------------------------------- */
/*---------------------------------NÚT NHẬN ƯU ĐÃI--------------------------------- */
.offer-btn {
  position: fixed;
  left: 16px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  background: #e53935; /* đỏ cũ */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2147483000;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, background 0.3s ease;
  animation: pulseOffer 2s infinite;
}

/* Icon */
.offer-btn i {
  font-size: 18px;
  color: #fff;
}
@keyframes pulseOffer {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.offer-btn:hover {
  background: #c62828;
  transform: translateY(-2px);
  animation: none;
}
/*---------------------------------NÚT NHẬN ƯU ĐÃI--------------------------------- */
/*---------------------------------MENU MỚI--------------------------------- */
.alacarte-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.alacarte-thumbs .thumb-item {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.alacarte-thumbs .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.alacarte-thumbs .thumb-item:hover {
  border-color: #971d03;
}

.alacarte-thumbs .overlay-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* === Alacarte Thumbnails (7 ảnh + overlay) === */
.alacarte-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.alacarte-thumbs .thumb-item {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.alacarte-thumbs .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.alacarte-thumbs .thumb-item:hover {
  border-color: #971d03;
}

.alacarte-thumbs .overlay-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
/* === Fix Alacarte Main Image Size & Buttons === */
.menu-section .alacarte-main {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;   /* ✅ Giới hạn chiều rộng ảnh chính */
  width: 100%;
  margin: 0 auto;
}

.menu-section .alacarte-main img {
  width: 100%;
  height: auto;
  max-height: 600px;  /* ✅ Giới hạn chiều cao để ảnh không quá to */
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-section .alacarte-main img:hover {
  transform: scale(1.02);
}

/* Nút điều hướng */
.menu-section .main-prev,
.menu-section .main-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.menu-section .main-prev:hover,
.menu-section .main-next:hover {
  background: #971d03;
}

/* ✅ Căn nút sát viền ảnh chứ không bị lệch ra ngoài */
.menu-section .main-prev { left: 10px; }
.menu-section .main-next { right: 10px; }

/* Responsive fix */
@media (max-width: 768px) {
  .menu-section .alacarte-main {
    max-width: 90%;
  }

  .menu-section .alacarte-main img {
    max-height: 450px;
  }

  .menu-section .main-prev,
  .menu-section .main-next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
/*---------------------------------END MENU MỚI--------------------------------- */

