/* ความสูง navbar ประมาณนี้ ปรับได้ */
:root {
  --nav-height: 120px;
}

/* ให้ทุก section เลื่อนลงมาไม่ติด navbar */
section {
  scroll-margin-top: var(--nav-height);
}
body {
  margin: 0;
  font-family: "League spartan", Arial, sans-serif;
  background: #ffe8df;
}

/* ========== NAVBAR ========== */
/* ===== Navbar Wrapper ===== */
.navbar {
  /* border: 5px dashed #d8c5b6; */

  padding-top: 15px;
  display: flex;
  justify-content: center;

  position: fixed; /* ← ทำให้ค้างบนจอ */
  top: 0; /* ← อยู่ติดขอบบน */
  left: 0;
  width: 100%; /* ← ให้เต็มความกว้าง */
  z-index: 999; /* ← ไม่ให้โดนรูปทับ */
  background: #ffe8df; /* ← ใส่พื้นหลังกันทะลุ */
}
/* ===== Big Capsule ===== */
.nav-capsule {
  width: 85%;
  /* max-width: 1400px; */

  display: flex;
  align-items: center;
  justify-content: flex-end; /* ← ให้ทุกอย่างชิดขวา */

  /* background: #fff3eb00; */
  border: 2px solid #d8c5b6;
  border-radius: 50px;
  padding: 10px 20px; /* top and buttom, left and right ← เพิ่ม padding ด้านข้าง */
}

/* ===== Menu ===== */
.nav-menu {
  display: flex;
  gap: 30px;
  margin-right: 20px; /* เว้นห่างก่อนถึงปุ่ม */
}

.nav-menu a {
  text-decoration: none;
  color: #8e2a15;
  font-size: 15px;
  font-weight: 500;
}

.nav-menu a.active {
  font-weight: 700;
  color: #6c1a0a;
}

/* ===== Right Rounded Button ===== */
.nav-btn {
  background: linear-gradient(90deg, #d55c2d, #a6311b);
  border: none;
  width: 90px;
  height: 42px;
  border-radius: 50px;
  color: white;
  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== TEXT ABOVE IMAGES ========== */
.hero-text {
  text-align: center;
  margin-top: 250px; /* ← เพิ่มให้ลงมาต่ำกว่า navbar */
  color: #8e2a15;

  /* border: 4px dashed #d8c5b6; */
}

/*Discover the Flavors of Tradition Thai food*/
.subtitle {
  font-size: 20px;
  color: #a40a00;
  /* border: 4px dashed #d8c5b6; */
}

/*Saithong Para Thai*/
.title {
  font-size: 80px;
  font-weight: bold;
  margin: 10px 0 40px;
  color: #a40a00;
}

/* ========== HERO IMAGE CONTAINER ========== */
.hero-container {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 4px dashed #d8c5b6; */
}

/* รูปใหญ่กลาง */

.hero-main-img {
  width: 500px;
  height: 500px;

  margin: auto;
  border-radius: 50%;
  overflow: hidden;

  border: 12px solid #ffffffd0; /* <-- กรอบขาวแบบที่ต้องการ */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* เงาเพิ่มความลึก */

  position: relative;
  z-index: 10;
}

.hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* รูปเล็กซ้าย/ขวา */
.side-img {
  position: absolute;
  width: 180px;
  height: 240px;
  border-radius: 30px;
  overflow: hidden;
  top: 30%;
}

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

.side-img.left {
  left: 0px;
}

.side-img.right {
  right: 0px;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  margin-top: 150px;
  padding: 50px 5%;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  width: 50%;
  color: #8e2a15;
}

.about-text h1 {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #8e2a15;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: justify; /* จัดชิดซ้ายขวา */
  text-justify: inter-word; /* กระจายคำให้พอดี */
}

/* Read More Button */
.read-more-btn {
  background: #8e2a15;
  padding: 13px 30px;
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 15px;
}

/* Signature line */
.about-sign {
  margin-top: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-sign .line {
  height: 4px;
  width: 60px;
  background: #8e2a15;
}

/* Images */
.about-images {
  width: 50%;
  position: relative;
}

.about-main-img {
  width: 430px;
  height: 430px;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-small-img {
  width: 260px;
  height: 260px;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  right: -50px;
  bottom: -40px;

  border: 12px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== content ========== */
/* ========== CONTENT SECTION ========== */
.content-section {
  margin-top: 120px;
  background: #e85f2c; /* พื้นหลังสีส้ม */
  padding: 60px 5% 120px;
  border-radius: 20px;
  color: #ffe8df;
}

.content-title {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 30px;
}

.content-read-btn {
  background: #c8f7d4;
  padding: 14px 35px;
  color: #8e2a15;
  border-radius: 40px;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 50px;
}

/* กล่องอาหาร */
.dish-container {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffe8df;
  margin-top: -60px;
  padding: 50px;
  border-radius: 40px;
  color: #8e2a15;
}

/* รูปซ้าย */
.dish-img-large {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}

.dish-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* label บนรูป */
.dish-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #d0ffd8;
  padding: 10px 30px;
  border-radius: 40px;
  font-size: 20px;
  color: #8e2a15;
  font-weight: 600;
}

/* ข้อความด้านขวา */
.dish-text {
  flex: 1;
}

.dish-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.dish-text p {
  font-size: 18px;
  line-height: 1.7;
}

/* ===== Menu ===== */
/* WRAPPER */
.content-wrapper {
  margin-top: 120px;
  padding: 50px 5%;
  background: #ffe8df;
}

/* ========== TOP ROW ========== */
.content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e9652b;
  padding: 40px;
  border-radius: 25px;
  position: relative;
}

.content-text {
  width: 55%;
  color: #fff;
}

.content-text h2 {
  font-size: 60px;
  margin-bottom: 15px;
}

.content-text p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify; /* จัดชิดซ้ายขวา */
  text-justify: inter-word; /* กระจายคำให้พอดี */
}

.read-btn {
  padding: 12px 28px;
  background: #d6f6d0;
  color: #8b2c14;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
}

/* Right circle image */
.content-img-circle {
  position: relative;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FLOATING MIDDLE IMAGE WITH LABEL ===== */
/* ===== LABEL บนรูป ===== */

.content-img-middle {
  position: relative;
  width: 300px;
  height: 120px;
  margin: -60px auto 0;
  position: relative;
  border-radius: 120px;
  overflow: hidden;
  /* border: 10px solid #fff; */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.content-img-middle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.img-wrapper .img-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);

  background: #d6f6d0;
  padding: 10px 35px;
  border-radius: 40px;

  /* ไม่มี border แล้ว */
  border: none;

  /* ปิดเงาที่ทำให้ดูเหมือนมีขอบ */

  font-size: 14px;
  font-weight: 100;
  color: #8e2a15;

  white-space: nowrap;
  /* min-width: 0px; */
  text-align: center;

  z-index: 10;
}

/* ===== TOP LABEL ===== */
.dish-label2 {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #f8dfd7;
  padding: 10px 40px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #8e2a15;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* ========== BOTTOM ROW ========== */
.content-bottom {
  margin-top: 0px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.content-img-large-circle {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.content-img-large-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-bottom-text {
  width: 55%;
  color: #8b2c14;
  position: relative;
  top: -100px;
}

.content-bottom-text h3 {
  font-size: 40px;
  margin-bottom: 15px;
}

.content-bottom-text p {
  font-size: 22px;
  line-height: 1.7;
  text-align: justify; /* จัดชิดซ้ายขวา */
  text-justify: inter-word; /* กระจายคำให้พอดี */
}

/* ===========================
   THAI TEA SECTION (NEW FIXED)
=========================== */

.thai-tea-section {
  margin-top: 160px;
  padding: 40px 5% 160px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #ffe8df;

  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.thai-tea-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  width: 100%;
}

/* ---------- LEFT TEXT ---------- */
.tea-left {
  width: 50%;
  color: #8e2a15;
}

.tea-left h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.05;
}

.tea-left p {
  font-size: 20px;
  line-height: 1.7;
  width: 90%;
  margin-top: 28px;
}

/* ---------- RIGHT IMAGES ---------- */
.tea-right {
  width: 50%;
  position: relative;
  min-height: 470px; /* compact */
}

/* All wrappers absolute */
.tea-wrapper {
  position: absolute;
}

/* ========== Image Sizes ========== */

/* IMG fit */
.tea-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Positions (ไม่พัง) ---------- */
.tea-big {
  top: 0;
  left: 10px;
  z-index: 3;
}

.tea-mid {
  bottom: 0;
  left: 40px;
  z-index: 2;
}

.tea-tall {
  top: 40px;
  right: 10px;
  z-index: 1;
}

/* ---------- LABELS ---------- */
.tea-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #d6f6d0;
  padding: 8px 25px;
  border-radius: 40px;
  color: #8e2a15;
  font-size: 16px;
  white-space: nowrap;
}

.tea-label.vertical {
  top: 50%;
  right: -70px;
  transform: translateY(-50%) rotate(90deg);
  padding: 10px 28px;
}
/* ===========================
   Z-INDEX HIERARCHY ที่ถูกต้อง 
   =========================== */

.tea-big,
.tea-big {
  top: 40px;
  left: -100px;
  z-index: 20; /* เพิ่มจากเดิม 10 → 20 */
}

.tea-mid {
  bottom: -70px;
  left: -100px;
  z-index: 10; /* อยู่กลาง */
}

.tea-tall {
  top: 60px;
  right: 200px;
  z-index: 1; /* อยู่หลังสุด */
}

/* ========== IMAGE STYLES ========== */
.tea-img {
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
}

/* Circle sizes */
.tea-img.big,
.tea-img.mid {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 12px solid #9a2415; /* กรอบปรับให้เล็กลงตามสัดส่วน */
}

/* Tall image (big rounded rectangle) */
.tea-img.tall {
  width: 360px;
  height: 480px;
  border-radius: 200px;
  border: none; /* ดีไซน์ไม่มีกรอบ */
}

/* IMG */
.tea-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LABELS */
.tea-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #d6f6d0;
  padding: 12px 35px;
  border-radius: 40px;
  font-size: 18px;
  color: #8e2a15;
  white-space: nowrap;
  z-index: 30; /* label ต้องอยู่บนสุด */
}

/* Vertical label (Thai Ice Tea) */
.tea-label.vertical {
  top: 50%;
  bottom: auto;
  left: auto;
  right: -90px;
  transform: translateY(-50%) rotate(90deg);
  padding: 14px 40px;
}

/* ============================
   CONTACT SECTION CONTAINER
   ============================ */
.contact-section {
  background: #ffe8df;
  padding: 160px 5% 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* MAIN TEXT */
.contact-content h1 {
  font-size: 60px;
  color: #8e2a15;
  font-weight: 800;
  margin-top: -120px; /* ยกขึ้น 40px */
  margin-bottom: 50px;
}

.hours h3 {
  font-size: 22px;
  font-weight: 700;
  color: #8e2a15;
  margin-top: 25px;
}

.hours p {
  font-size: 18px;
  color: #8e2a15;
  margin: 5px 0 10px;
}

/* ============================
   SIDE DECOR IMAGES (LEFT/RIGHT)
   ============================ */
.contact-side {
  position: absolute;
  top: 40%;
  transform: translateY(-45%);
  width: 240px;
  height: 440px;
  background-size: cover;
  background-position: center;
  border-radius: 260px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* LEFT IMAGE */
.left-side {
  left: -120px;
  background-image: url("img/page5/food-left.png"); /* เปลี่ยน path */
}

/* RIGHT IMAGE */
.right-side {
  right: -120px;
  background-image: url("img/page5/food-right.png"); /* เปลี่ยน path */
}

/* ============================
   FOOTER BAR
   ============================ */
.footer-bar {
  margin-top: 120px;
  background: #d8572b;
  padding: 25px 40px;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 18px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.icon {
  font-size: 26px;
}

/* ============================
   RESPONSIVE
   ============================ */

/* Mobile */
@media (max-width: 600px) {
  .title {
    font-size: 48px;
  }

  .subtitle {
    font-size: 15px;
  }

  .hero-main-img {
    width: 260px;
    height: 260px;
  }

  .side-img {
    opacity: 0.15;
    width: 100px;
    height: 140px;
    top: 35%;
  }

  .side-img.left {
    left: -10px;
  }

  .side-img.right {
    right: -10px;
  }

  .tea-img.big,
  .tea-img.mid {
    width: 140px;
    height: 140px;
  }

  .tea-img.tall {
    width: 240px;
    height: 320px;
  }

  .tea-label.vertical {
    right: -60px;
  }

  .about-main-img {
    width: 300px;
    height: 300px;
  }

  .content-img-large-circle {
    width: 260px;
    height: 260px;
  }

  .contact-side {
    opacity: 0.15;
    width: 240px;
    height: 400px;
  }

  .footer-bar {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===========================
   ABOUT SECTION RESPONSIVE 
   =========================== */

/* Tablet (จอ 1000px ลงมา) */
@media (max-width: 1000px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .about-text,
  .about-images {
    width: 100%;
  }

  .about-text h1 {
    font-size: 55px;
  }

  .about-text p {
    font-size: 17px;
  }

  .about-main-img {
    width: 360px;
    height: 360px;
    margin: 0 auto;
  }

  .about-small-img {
    width: 210px;
    height: 210px;
    right: -20px;
    bottom: -20px;
  }
}

/* Mobile (จอ 600px ลงมา) */
@media (max-width: 600px) {
  .about-section {
    padding: 40px 6%;
    margin-top: 80px;
  }

  .about-content {
    flex-direction: column-reverse; /* รูปขึ้นก่อน */
    text-align: center;
    gap: 40px;
  }

  .about-text h1 {
    font-size: 42px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
  }

  .read-more-btn {
    font-size: 16px;
    padding: 10px 25px;
  }

  /* รูปใหญ่ */
  .about-main-img {
    width: 190px;
    height: 190px;
    margin: 0 auto;
    border-width: 8px;
  }

  /* รูปเล็ก */
  .about-small-img {
    width: 90px;
    height: 90px;
    border-width: 8px;
    right: 0px;
    bottom: 0px;
  }

  .about-sign {
    justify-content: center;
  }
}

/* ===============================
   RESPONSIVE — Famous Thai Dishes
================================ */

/* -------- Tablet -------- */
@media (max-width: 900px) {
  .content-top {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .content-text {
    width: 100%;
  }

  .content-text h2 {
    font-size: 45px;
  }

  .content-text p {
    font-size: 18px;
  }

  .content-img-circle {
    width: 190px;
    height: 190px;
    margin: 0 auto;
  }

  .img-label {
    font-size: 14px;
    padding: 8px 20px;
  }

  .content-img-middle {
    width: 230px;
    height: 90px;
  }

  .content-bottom {
    flex-direction: column;
    text-align: center;
  }

  .content-bottom-text {
    width: 90%;
    top: 0;
  }

  .content-img-large-circle {
    width: 250px;
    height: 250px;
  }
}

/* -------- Mobile -------- */
@media (max-width: 600px) {
  .content-section {
    margin-top: 60px;
    padding: 50px 5% 90px;
  }

  .content-title {
    font-size: 45px;
    text-align: center;
  }

  .content-read-btn {
    font-size: 16px;
    padding: 12px 25px;
  }

  /* TOP ROW */
  .content-top {
    flex-direction: column;
    padding: 30px;
    gap: 25px;
  }

  .content-text h2 {
    font-size: 38px;
  }

  .content-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .content-img-circle {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-width: 8px;
  }

  .img-label {
    font-size: 13px;
    padding: 6px 16px;
    top: -12px;
  }

  /* Middle Floating Image */
  .content-img-middle {
    width: 200px;
    height: 80px;
    margin: -30px auto 0;
    border-radius: 80px;
  }

  /* BOTTOM ROW */
  .content-bottom {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .content-img-large-circle {
    width: 200px;
    height: 200px;
    border-width: 8px;
  }

  .content-bottom-text {
    width: 100%;
    top: 0;
  }

  .content-bottom-text p {
    font-size: 17px;
    text-align: center;
  }
}

/* ===============================
   RESPONSIVE — THAI TEA SECTION
================================ */
/* ============================================
   RESPONSIVE — GLOBAL MOBILE (max-width: 600px)
============================================ */
@media (max-width: 600px) {
  .title {
    font-size: 48px;
  }
  .subtitle {
    font-size: 15px;
  }
  .hero-main-img {
    width: 260px;
    height: 260px;
  }
  .side-img {
    opacity: 0.15;
    width: 100px;
    height: 140px;
    top: 35%;
  }
  .side-img.left {
    left: -10px;
  }
  .side-img.right {
    right: -10px;
  }
  .about-main-img {
    width: 300px;
    height: 300px;
  }
  .content-img-large-circle {
    width: 260px;
    height: 260px;
  }
  .contact-side {
    opacity: 0.15;
    width: 240px;
    height: 400px;
  }
  .footer-bar {
    flex-direction: column;
    gap: 20px;
  }
}

/* ============================================
   ABOUT — TABLET (max-width: 1000px)
============================================ */
@media (max-width: 1000px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .about-text,
  .about-images {
    width: 100%;
  }
  .about-text h1 {
    font-size: 55px;
  }
  .about-main-img {
    width: 360px;
    height: 360px;
    margin: 0 auto;
  }
  .about-small-img {
    width: 210px;
    height: 210px;
    right: -20px;
    bottom: -20px;
  }
}

/* ============================================
   ABOUT — MOBILE (max-width: 600px)
============================================ */
@media (max-width: 600px) {
  .about-section {
    padding: 40px 6%;
    margin-top: 80px;
  }
  .about-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  .about-text h1 {
    font-size: 42px;
  }
  .about-main-img {
    width: 190px;
    height: 190px;
    border-width: 8px;
  }
  .about-small-img {
    width: 90px;
    height: 90px;
    border-width: 8px;
    right: 0;
    bottom: 0;
  }
}

/* ============================================
   FAMOUS THAI DISHES — TABLET (max-width: 900px)
============================================ */
@media (max-width: 900px) {
  .content-top {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .content-text {
    width: 100%;
  }
  .content-img-circle {
    width: 190px;
    height: 190px;
    margin: 0 auto;
  }
  .content-bottom {
    flex-direction: column;
    text-align: center;
  }
  .content-bottom-text {
    width: 90%;
    top: 0;
  }
}

/* ============================================
   FAMOUS THAI DISHES — MOBILE (max-width: 600px)
============================================ */
@media (max-width: 600px) {
  .content-section {
    margin-top: 60px;
    padding: 50px 5% 90px;
  }
  .content-title {
    font-size: 45px;
    text-align: center;
  }

  /* hide top/bottom round images */
  .content-top .img-wrapper,
  .content-bottom .img-wrapper {
    display: none !important;
  }

  .content-img-middle {
    width: 200px;
    height: 80px;
    margin: 20px auto 0;
  }

  .content-bottom-text {
    width: 100%;
    top: 0 !important;
    text-align: center;
  }
}

/* ============================================
   THAI TEA — TABLET (max-width: 900px)
============================================ */
@media (max-width: 900px) {
  .thai-tea-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .tea-left {
    width: 90%;
  }
  .tea-left h1 {
    font-size: 55px;
  }
  .tea-left p {
    width: 100%;
  }
  .tea-right {
    width: 100%;
    min-height: 380px;
  }
}

/* ==========================================================
   THAI TEA — MOBILE (tall อยู่ตรงกลาง)
========================================================== */
@media (max-width: 600px) {
  /* ========= ให้ทั้งแถวยืดได้และจัดเรียงซ้าย-กลาง-ขวา ========= */
  .tea-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 14px !important;
    margin-top: 20px !important;
  }

  /* reset absolute */
  .tea-wrapper,
  .tea-big,
  .tea-mid,
  .tea-tall {
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  /* ========= บังคับ order ========= */
  .tea-big {
    order: 1 !important;
  }
  .tea-tall {
    order: 2 !important;
  } /* 🔥 อยู่กลาง */
  .tea-mid {
    order: 3 !important;
  }

  /* ========= ปรับขนาดรูป ========= */

  /* big (ซ้าย) */
  .tea-img.big {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    border-width: 6px !important;
  }

  /* tall (กลาง) */
  .tea-img.tall {
    width: 110px !important;
    height: 170px !important;
    border-radius: 24px !important;
  }

  /* mid (ขวา) */
  .tea-img.mid {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    border-width: 6px !important;
  }

  /* ========= label ใต้รูปทุกตัว ========= */
  .tea-label,
  .tea-label.vertical {
    position: static !important;
    transform: none !important;
    rotate: 0deg !important;
    margin-top: 8px !important;
    display: block !important;
    text-align: center !important;
    font-size: 14px !important;
    padding: 6px 12px !important;
  }
}

/* ============================================
   CONTACT — MOBILE (max-width: 600px)
============================================ */
@media (max-width: 600px) {
  .contact-section {
    padding: 120px 5% 80px;
  }
  .contact-side {
    top: 20%;
    transform: none;
    width: 180px;
    height: 280px;
    opacity: 0.18;
  }
  .left-side {
    left: -80px;
  }
  .right-side {
    right: -80px;
  }
  .contact-content h1 {
    font-size: 42px;
    margin-top: 0;
  }
  .footer-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
/* ============================================
   FIX — FORCE RISE ANIMATION TO ALWAYS WORK
============================================ */
/* === GLOBAL RISE ANIMATION (MOBILE FRIENDLY) === */
.rise {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* force animation even on mobile */
@media (max-width: 600px) {
  .rise {
    transform: translateY(40px) !important;
  }
}

.rise.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.order-btn {
  background: linear-gradient(135deg, #d14900, #a83700);
  padding: 8px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  font-family: "League Spartan", sans-serif;

  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
