html {
  scroll-behavior: smooth;
}
.orange-strip {
  border-radius: 30px;
  min-height: 700px;
  padding: 80px 100px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.form-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1000px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 30px;
  flex: 8;
  min-width: 200px;
  box-shadow: 0 9px 15px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
  margin-top: 0;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

.contact-form input {
  padding: 40px;
}

.contact-form textarea {
  padding: 60px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #ff6b00;
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}



.snail-logo img {
  max-width: 0px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.contact-icons {
  margin-top: 40px;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.contact-icons a {
  background: white;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: black;
}

:root {
  --primary-color: #e89f38; /* Màu cam vàng chủ đạo */
  --text-color: #ffffff;
  --bg-overlay: rgba(13, 17, 23, 0.85); /* Màu nền tối che phủ ảnh background */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  background-color: #0d1117;
  overflow-x: hidden; 
}


.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-image: url("/img/full.jpg");
  background-size: cover;
  background-position: center;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  z-index: 1;
}


.content-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 30px 20px 30px; /* Tăng padding trên để tránh menu che */
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand {
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
}

.brand h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.brand span {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.3rem;
  transition: 0.3s;
}




.orange-strip {
  position: absolute;
  width: 70vw;
  height: 140px;
  background-color: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
  top: 15%; /* Căn chỉnh vị trí dải màu */
  z-index: -1; /* Nằm dưới ảnh món ăn */
}

/* --- FEEDBACK FORM (Chuyển từ trang chủ sang) --- */
.feedback-section {
  padding: 50px 20px;
  background-color: #222222; /* Giữ màu nền xám tối đồng bộ */
  text-align: center;
  border-radius: 20px;
  margin-top: 50px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feedback-section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
}

#feedback-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#feedback-form input,
#feedback-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #444;
  background-color: #1a1a1a;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  outline: none;
}

#feedback-form button {
  padding: 15px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 28px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
