/* ==== RESET & FONTS ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: transparent;
  
}
/* ==== NAVBAR ==== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 10px 0;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  height: 80px;
}

.nav-left, .nav-right {
  display: flex;
  list-style: none;
  gap: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-left { right: 50%; margin-right: 60px; }
.nav-right { left: 50%; margin-left: 60px; }

.nav-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-logo img {
  width: 80px;
  transition: all 0.3s ease;
}

.nav-left li a, .nav-right li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: clamp(12px, 1.2vw, 18px);
}

/* ==== HERO SECTION ==== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: white;
  padding: 40px;
  background: transparent; /* ← xoá nền đen */
  border-radius: 0;         /* ← bỏ bo góc nếu không cần */
}

.hero-text h1 {
    font-size: clamp(36px, 6vw, 80px);
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: white;
}

.hero-text p {
   font-size: clamp(20px, 3vw, 36px);
  color: white;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 20px;
}

.hero-text .button {
  display: inline-block;
  padding: 14px 32px;
  background: #8a2be2;
  color: white;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-text .button:hover {
  background: #5a189a;
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* ==== ABOUT SECTION ==== */
.about-section {
  background: black;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.about-box {
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
}

/* ==== TEXT ON BACKGROUND ==== */
.text-on-bg {
  background: url('gallery-bg.jpg') center/cover no-repeat fixed;
  padding: 140px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-content-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.text-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.text-box h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  color: #5c4437;
}

.text-box h3 {
  font-size: 20px;
  color: #222;
  margin: 10px 0;
}

.text-box p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.side-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==== GALLERY 4 ẢNH ==== */
.tight-gallery {
  margin: 0;
  padding: 0;
  background: black; /* nếu muốn nền tối cho giống Mido */
}

.grid-row {
  display: flex;
  width: 100vw; /* toàn bộ chiều ngang màn hình */
  margin: 0 auto;
  padding: 0;
}

.grid-row a {
  flex: 1;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

.grid-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.grid-row a:hover img {
  transform: scale(1.08);
}
/* ==== RESERVATION SECTION ==== */
.reservation-section {
  background-color: #111;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.reservation-container {
  max-width: 1000px;
  margin: auto;
}

.reservation-title {
  font-family: 'Dancing Script', cursive;
  font-size: 48px;
  color: #ffae42;
  margin-bottom: 10px;
}

.reservation-subtitle {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.reservation-description {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

.reservation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.form-left, .form-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reservation-grid input,
.reservation-grid textarea {
  padding: 14px;
  border-radius: 5px;
  border: none;
  background: #222;
  color: white;
  font-size: 16px;
}

.submit-btn {
  margin-top: 30px;
  background: none;
  color: white;
  border: 2px solid white;
  padding: 12px 28px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: white;
  color: black;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .nav-left, .nav-right {
    display: none;
  }
  .hero-text h1 {
    font-size: 48px;
  }
  .hero-text p {
    font-size: 22px;
  }
  .grid-row {
    flex-direction: column;
  }
  .text-content-wrapper {
    flex-direction: column;
  }
  .form-left, .form-right {
    flex: 1 1 100%;
  }
}.navbar.shrink #main-logo {
  width: 50px;
  transition: all 0.3s ease;
}.footer-extended {
  background: #000;
  color: white;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  text-align: left;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: white; /* Màu chữ */
  background-color: #1a1a1a; /* Màu nền phía sau dòng chữ */
  padding: 10px 20px;
  border-radius: 6px; /* Bo nhẹ nếu muốn */
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);     /* 👈 Đen mờ */
    backdrop-filter: blur(10px);        /* 👈 Làm mờ nền phía sau */
    -webkit-backdrop-filter: blur(10px); /* 👈 Cho Safari hỗ trợ */
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 25px;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* viền trên nhẹ */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 0;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .menu-toggle,
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
}/* === NAVBAR MOBILE === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-container.responsive .nav-left,
  .nav-container.responsive .nav-right {
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px;
    gap: 15px;
    z-index: 999;
  }

  .nav-left li, .nav-right li {
    text-align: center;
  }
}

/* === LOGO CUỘN NHỎ === */
.navbar.shrink #main-logo {
  width: 50px;
  transition: all 0.3s ease;
}
/* === NỀN MENU PAGE CÓ HIỆU ỨNG ZOOM === */
body.menu-page {
  background: url('menu-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  animation: zoomEffect 20s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
  0% { background-size: 100%; }
  100% { background-size: 105%; }
}.menu-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.menu-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: subtleZoom 15s ease-in-out infinite alternate;
  filter: brightness(35%);
}.menu-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.menu-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: subtleZoom 8s ease-in-out infinite alternate;
}

.menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* lớp phủ đen mờ 50% */
}
/* ===== MOBILE MENU CHỈ HIỆN TRÊN ĐIỆN THOẠI ===== */
.mobile-menu {
  position: fixed;
  top: 100px; /* CHỈNH DÒNG NÀY: không cho nó chiếm từ đầu màn hình */
  left: 0;
  height: calc(100vh - 80px); /* CHỈNH DÒNG NÀY: trừ phần cao của navbar/logo */
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
  list-style: none;
  margin: 10px 0;
}

.mobile-menu.show li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.show li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.show li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.show li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.show li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.show li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.show li:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
.mobile-menu.show {
  display: flex;
}

/* Hiển thị 3 gạch và ẩn menu cũ trên điện thoại */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1002;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
  }

  .nav-left,
  .nav-right {
    display: none;
  }
}

/* Ẩn menu-toggle ở desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
.mobile-menu li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.mobile-menu.show li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.show li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.show li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.show li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.show li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.show li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.show li:nth-child(6) { transition-delay: 0.6s; }
html, body {
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    align-items: center;
    margin-bottom: 30px;
  }

  .footer-column h3,
  .footer-column p,
  .footer-column a {
    text-align: center;
  }
}@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
  }
}/* Header cho điện thoại */
.mobile-header {
  display: none;
  background: black;
  color: white;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
}

.mobile-logo img {
  height: 40px;
}

.burger {
  font-size: 26px;
  cursor: pointer;
}

/* Responsive menu bên trái */
@media (max-width: 768px) {
  .mobile-header {
    display: flex;
  }

  .sidebar {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 200px;
    height: 100vh;
    background: black;
    transition: left 0.3s ease;
    z-index: 1001;
    padding: 20px;
  }

  .sidebar.show {
    left: 0;
  }

  .content {
    margin-left: 0 !important;
    margin-top: 100px;
  }
}.menu-item {
  display: flex;
  background: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  gap: 20px;
}

.menu-item img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
}

.menu-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-header h3 {
  margin: 0;
  font-size: 16px;
  color: white;
}

.menu-action {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-action span {
  font-weight: bold;
  font-size: 16px;
  color: #ffae42;
}

.add-btn {
  padding: 6px 12px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  background: #ffae42;
  color: black;
  cursor: pointer;
}

/* Dropdown */
.menu-info select {
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
}.menu-category {
  padding: 60px 20px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.menu-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.category-image {
  max-width: 700px;
  width: 90%;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.product {
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  text-align: left;
}

.product h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.product p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 16px;
  font-weight: bold;
  color: #f0c040;
}

.add-btn {
  background-color: #f0c040;
  border: none;
  padding: 5px 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  background: #000;
  color: white;
  padding: 20px;
  z-index: 1000;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

/* Logo và menu */
.sidebar-logo {
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-logo img {
  width: 100px;
  margin-bottom: 10px;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar ul li {
  margin: 12px 0;
}
.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  z-index: 1100;
  cursor: pointer;
}

/* Trên điện thoại: sidebar bị ẩn, cần toggle */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.show {
    transform: translateX(0);
  }
  .hamburger {
    display: block;
  }
}.impressum-section {
  padding-top: 120px; /* Đẩy xuống để không bị che */
  padding-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.9); /* Nền trắng mờ giúp dễ đọc */
  min-height: 100vh; /* Đảm bảo trang đủ cao */
}

.impressum-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 48px;
  text-align: center;
  margin-bottom: 30px;
  color: #5c4437;
}

.impressum-content {
  max-width: 800px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

.impressum-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.impressum-content a {
  color: #8a2be2;
  text-decoration: none;
}

.impressum-content a:hover {
  text-decoration: underline;
}
body.menu-page {
  background: url('menu-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  animation: zoomEffect 20s ease-in-out infinite alternate;
  padding-top: 100px; /* Nếu muốn áp cho toàn bộ trang */
}

.footer-copy {
  background-color: #222;      /* màu nền bạn thích */
  color: white;                /* màu chữ */
  padding: 12px 20px;
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
  border-top: 1px solid #444;  /* tuỳ chọn: kẻ viền trên */
}
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  animation: subtleZoom 4s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 1.5s ease;
  filter: brightness(60%);
}

.hero-slide.active {
  opacity: 1;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  animation: subtleZoom 4s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 1.5s ease;
  filter: brightness(60%);
}
.menu-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.menu-gallery img {
  width: 100%;
  max-width: 600px; /* Bạn có thể điều chỉnh 500px → 600px nếu muốn */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 1.5s infinite;
  opacity: 0.8;
}

@keyframes wheelMove {
  0% { top: 10px; opacity: 0.8; }
  50% { top: 20px; opacity: 0.3; }
  100% { top: 10px; opacity: 0.8; }
}.hero-title {
  font-size: 42px;
  font-weight: bold;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #8a2be2;
  color: white;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: white;
}

.hero-title {
  font-size: 44px;
  font-weight: bold;
  margin: 0;
  opacity: 0;
  transform: scale(0.6);
  animation: scaleUp 1.8s ease-out forwards;
}

.hero-sub {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  margin-top: 12px;
  opacity: 0;
  transform: scale(0.6);
  animation: scaleUp 1.8s ease-out forwards;
  animation-delay: 0.6s;
}

.hero-button {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 32px;
  background: #8a2be2;
  color: white;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 2s ease-out forwards;
  animation-delay: 1.4s;
}

/* Mượt và chậm */
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}.hero-content * {
  transition: all 0.4s ease-in-out;
}.hero {
  position: relative;
  overflow: hidden;
}

#rice-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Giới hạn trong hero */
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.rice-grain {
  position: absolute;
  top: -20px;
  width: 4px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 60% / 40%;
  opacity: 0.6;
  filter: blur(0.3px);
  animation: riceFall linear infinite;
}

@keyframes riceFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
.fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* hoặc 150px tùy hiệu ứng bạn muốn */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000000 100%);
  z-index: 2;
}.framed-box {
  border: 3px solid #F5C33B; /* Màu vàng như hình */
  border-radius: 20px;
  padding: 20px;
  height: 100%; /* Đảm bảo chiều cao bằng với ảnh */
  box-sizing: border-box;
  display: flex;
  align-items: center;  /* Canh giữa theo chiều dọc */
  justify-content: center;
  background-color: white; /* Đảm bảo khung có nền trắng */
}.side-image img {
  border-radius: 20px; /* bo góc tròn như khung chữ */
  width: 100%;
  height: auto;
  object-fit: cover;
}.impressum-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px; /* 20px hai bên trái phải */
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
}