:root {
  color-scheme: light only; /* Ngăn trình duyệt tự động đổi sang Dark Mode */
}

body {
  background-color: #fff; /* Hoặc màu nền mong muốn */
  color: #000; /* Màu chữ tương phản để dễ đọc */
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%; /* Điều chỉnh chiều cao phù hợp */
  overflow: hidden;
}

/* Slider chứa ảnh */
.hero-slider {
  display: flex;
  width: 100%; /* Tổng số ảnh * 100% */
  transition: transform 1s ease-in-out;
}

/* Ảnh bên trong slider */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image5 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.hero-image6 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* CSS cho header */
.navbar {
  background-color: rgba(255, 165, 0, 0.8); /* Cam nhẹ, độ mờ 40% */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease-in-out;

}

/* Khi cuộn trang, navbar đổi màu */
.navbar.scrolled {
  background-color: rgba(255, 140, 0, 0.8); /* Cam đậm hơn khi cuộn */
  padding: 0px;
}

/* Thêm khoảng trống cho phần nội dung sau header */
body {
  margin: 0;
  padding: 0;
}

/* Thêm khoảng trống cho phần nội dung */
.addpadding {
  padding-top: 90px; /* Tạo khoảng trống cho phần nội dung (bằng chiều cao của ) */
}

html {
  scroll-behavior: smooth;
}

.cafe-landing {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* justify-content: flex-start; */
  font-family: Roboto, sans-serif;
  align-items: center; /* Căn giữa theo chiều ngang */
  justify-content: center; /* Căn giữa theo chiều dọc */
  text-align: center;
}

.small-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}
.margin {
  margin-top: 0;
  margin-bottom: 0px;
}
.navbar {
  background-color: #fff;
  display: flex;
  min-height: 72px;
  width: 100%;
  /* flex-direction: column; */
  justify-content: center;
  /* padding: 0 64px; */
}
.navbar-container {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 32px;
  justify-content: center;
  text-align: center;
  /* flex-wrap: wrap; */
}
.nav-links {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: flex-start;
  color: #000;
  justify-content: flex-start;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
  font-size: 16px;
}
.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
}
.nav-link {
  align-self: stretch;
  gap: 4px;
  margin: auto 0;
}
.dropdown-wrapper {
  align-self: stretch;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 102px;
  margin: auto 0;
}
.dropdown-toggle {
  z-index: 0;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  justify-content: center;
}
.dropdown-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}
.dropdown-menu {
  background-color: #fff;
  position: absolute;
  z-index: 0;
  display: flex;
  max-width: 100%;
  width: 113px;
  flex-direction: column;
  overflow: hidden;
  justify-content: flex-start;
  right: -11px;
  bottom: -160px;
  padding: 24px;
  border: 1px solid #000;
}
.dropdown-item {
  margin-top: 16px;
}
.logo-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%; /* Đặt chiều rộng của wrapper là 100% */
}

.navbar-container img {
  width: 100%; /* Đảm bảo logo chiếm toàn bộ chiều rộng của container */
  height: 100px; /* Giữ tỷ lệ của logo không bị méo */
}
.logo {
  aspect-ratio: 2.33;
  object-fit: contain;
  object-position: center;
  width: 84px;
}
.cta-button {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: flex-end;
  color: #010101;
  white-space: nowrap;
  justify-content: center;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
  font-size: 16px;
}
.primary-button {
  align-self: stretch;
  background-color: #000;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid #000;
  color: #fff;
}
.hero-section {
  background-color: #fff;
  display: flex;
  width: 100%;
  flex-direction: column;
  font-family: Roboto, sans-serif;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: 100vw;   /* Chiếm toàn bộ chiều rộng */
  height: 120vh;  /* Chiếm toàn bộ chiều cao */
  object-fit: cover; /* Cắt ảnh để lấp đầy toàn bộ mà không méo */
  object-position: center; /* Căn giữa ảnh */
  display: block;
}
@media (max-width: 768px) {
  .hero-image {
    width: 100%;  /* Thu nhỏ ảnh lại */
    max-height: 50vh; /* Giới hạn chiều cao */
    margin: 0 auto; /* Căn giữa */
  }
}
.hero-content {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 40px 80px;
  overflow: hidden;
  /* justify-content: flex-start; */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 64px;
}
.hero-title {
  min-width: 240px;
  font-size: 56px;
  color: #000;
  font-weight: 700;
  line-height: 67px;
  flex: 1;
}
.hero-description {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  font-weight: 400;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  flex-basis: 0%;
}
.hero-text {
  color: #000;
  font-size: 22px;
  line-height: 27px;
}
.hero-buttons {
  align-self: center;
  display: flex;
  margin-top: 32px;
  gap: 16px;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.secondary-button {
  align-self: stretch;
  gap: 8px;
  color: #000;
  padding: 12px 24px;
  border: 1px solid #000;
}
.about-section {
  background-color: #fff;
  display: flex;
  width: 100%;
  flex-direction: row;
  overflow: hidden;
  font-family: Roboto, sans-serif;
  color: #000;
  justify-content: center;
  padding: 60px 40px;
}
.about-container {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 40px 80px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.about-content {
  align-self: center; /* Hoặc stretch nếu cần */
  display: flex;
  min-width: 240px;
  flex-direction: column;
  justify-content: center; /* Căn giữa theo chiều dọc */
  align-items: center; /* Căn giữa theo chiều ngang */
  flex: 1;
  flex-basis: 0%;
  margin: auto;
  text-align: center; /* Đảm bảo text cũng căn giữa */
}

.about-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}
.about-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-top: 24px;
}
/* .about-image {
  aspect-ratio: 0.96;
  object-fit: contain;
  object-position: center;
  width: 100%;
  align-self: stretch;
  min-width: 240px;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
} */
.about-image {
  width: 30%;   /* Chiếm toàn bộ chiều rộng */
  height: 30%;  /* Chiếm toàn bộ chiều cao */
  object-fit: cover; /* Cắt ảnh để lấp đầy toàn bộ mà không méo */
  object-position: center; /* Căn giữa ảnh */
  display: block;
}
@media (max-width: 768px) {
  .about-image {
    width: 60%;  /* Thu nhỏ ảnh lại */
    max-height: 60%; /* Giới hạn chiều cao */
    margin: 0 auto; /* Căn giữa */
  }
}
.features-section {
  background-color: #fff;
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  font-family: Roboto, sans-serif;
  color: #000;
  justify-content: flex-start;
}
.section-title {
  display: flex;
  width: 768px;
  max-width: 100%;
  flex-direction: column;
  text-align: center;
  justify-content: flex-start;
}
.tagline {
  align-self: center;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.title-content {
  display: flex;
  margin-top: 16px;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
}
.title-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}
.title-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-top: 24px;
}
.features-content {
  align-self: stretch;
  display: flex;
  margin-top: 20px;
  width: 100%;
  flex-direction: column;
  text-align: center;
  justify-content: flex-start;
}
.features-row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 40px 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-column {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  justify-content: flex-start;
  flex: 1;
  flex-basis: 0%;
}
/* .feature-image {
  aspect-ratio: 1.69;
  object-fit: contain;
  object-position: center;
  width: 100%;
} */
.feature-image {
  width: 100%;   /* Chiếm toàn bộ chiều rộng */
  height: 100%;  /* Chiếm toàn bộ chiều cao */
  object-fit: cover; /* Cắt ảnh để lấp đầy toàn bộ mà không méo */
  object-position: center; /* Căn giữa ảnh */
  display: block;
}
@media (max-width: 768px) {
  .feature-image {
    width: 100%;  /* Thu nhỏ ảnh lại */
    max-height: 100%; /* Giới hạn chiều cao */
    margin: 0 auto; /* Căn giữa */
  }
}
.feature-content {
  display: flex;
  margin-top: 32px;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
}
.feature-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 0px;
}
.feature-text {
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 10px;
}
.features-buttons {
  display: flex;
  margin-top: 80px;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  justify-content: flex-start;
}
.link-button {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  justify-content: center;
  margin: auto 0;
}
.link-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
}
.how-it-works {
  background-color: #fff;
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  font-family: Roboto, sans-serif;
  color: #000;
  justify-content: center;
  padding: 20px 64px;
}
.how-it-works-container {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 40px 80px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.how-it-works-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  flex-basis: 0%;
  margin: 10px;
}
.steps-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
}
.steps-grid {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
}
.steps-row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 8px 0;
}
.step-item {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  justify-content: center; /* Căn giữa theo chiều dọc */
  align-items: center; /* Căn giữa theo chiều ngang */
  text-align: center; /* Nếu có văn bản */
  flex: 1;
  flex-basis: 0%;
}
.step-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 48px;
}
.step-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 16px;
}
.step-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
}
.how-it-works-image {
  aspect-ratio: 0.96;
  object-fit: contain;
  /* object-position: center; */
  width: 100%;
  align-self: flex-start; /* Đưa ảnh lên trên cùng */
  min-width: 240px;
  flex: 1;
  flex-basis: 0%;
  margin: 10px;
}
.footer {
  background-color: #fff;
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  justify-content: flex-start;
  padding: 80px 64px;
}
.footer-content {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer-logo {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
}
.footer-logo-image {
  aspect-ratio: 2.33;
  object-fit: contain;
  object-position: center;
  width: 84px;
}
.footer-links {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  align-items: flex-start;
  gap: 32px;
  color: #000;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: auto 0;
  font: 600 14px Roboto, sans-serif;
}
.social-links {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
}
.social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
}
.footer-credits {
  display: flex;
  .footer-credits {
  display: flex;
  margin-top: 80px;
  width: 100%;
  flex-direction: column;
  color: #000;
  justify-content: flex-start;
  font: 400 14px Roboto, sans-serif;
}}
.footer-divider {
  background-color: #000;
  display: flex;
  min-height: 1px;
  width: 100%;
  border: 1px solid #000;
}
.footer-info {
  align-self: center;
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-link {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .navbar {
    max-width: 100%;
    padding: 0 1px;
  }
  .navbar-container {
    max-width: 100%;
  }
  .nav-links {
    max-width: 100%;
  }
  .dropdown-menu {
    display: none;
    padding: 0 20px;
  }
  .cta-button {
    max-width: 100%;
    white-space: initial;
  }
  .hero-image {
    max-width: 100%;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 20px;
  }
  .hero-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 54px;
  }
  .hero-description {
    max-width: 100%;
  }
  .about-section {
    max-width: 100%;
    padding: 100px 20px;
  }
  .about-container {
    max-width: 100%;
  }
  .about-content {
    max-width: 100%;
  }
  .about-image {
    max-width: 100%;
  }
  .features-section {
    max-width: 100%;
    padding: 100px 20px;
  }
  .section-title {
    max-width: 100%;
  }
  .title-content {
    max-width: 100%;
  }
  .title-heading {
    max-width: 100%;
    font-size: 40px;
    line-height: 54px;
  }
  .title-text {
    max-width: 100%;
  }
  .features-content {
    max-width: 100%;
    margin-top: 40px;
  }
  .features-row {
    max-width: 100%;
  }
  .features-buttons {
    margin-top: 40px;
    white-space: initial;
  }
  .secondary-button {
    white-space: initial;
    padding: 0 20px;
  }
  .how-it-works {
    max-width: 100%;
    padding: 100px 20px;
  }
  .how-it-works-container {
    max-width: 100%;
  }
  .how-it-works-content {
    max-width: 100%;
  }
  .steps-wrapper {
    max-width: 100%;
  }
  .steps-grid {
    max-width: 100%;
  }
  .steps-row {
    max-width: 100%;
  }
  .how-it-works-image {
    max-width: 100%;
  }
  .footer {
    max-width: 100%;
    padding: 0 20px;
  }
  .footer-content {
    max-width: 100%;
  }
  .footer-links {
    max-width: 100%;
  }
  .footer-credits {
    max-width: 100%;
    margin-top: 40px;
  }
  .footer-divider {
    max-width: 100%;
  }
  .footer-info {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .dropdown-menu {
    display: none;
  }
  .hero-content {
    padding-top: 20px;
  }
  .hero-title {
    text-align: center;
  }
  .hero-description {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0 auto;
  }
  .hero-text {
    text-align: center;
    margin: 0 auto;
  }
  .about-section {
    padding-top: 20px;
    text-align: center;
  }
  .features-section {
    padding-top: 20px;
  }
  .how-it-works {
    padding-top: 20px;
    text-align: center;
  }
  .step-item {
    justify-content: center;
  }
  .footer {
    padding-bottom: 20px;
  }
  .footer-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}





