/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #eee9e9;
  color: #585757;
}

h1,
h2,
h3 {
  color: #003232;
}

/**********  HEADER **********/
.index-header {
  position: relative;
  font-family: Arial, sans-serif;
}

.index-header .logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #f1d2b7;
  padding: 12px 5px 0 0;
  font-size: 16px;
}

.index-header .logo img {
  height: 27px;
  margin: -14px 5px 0 0;
}

.index-header .header {
  background: #003232;
  padding: 10px 15px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

/* HAMBURGER */
.index-header .hamburger {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
}

/* MENU */
.index-header .nav ul {
  list-style: none;
}

.index-header .nav>ul {
  display: flex;
}

.index-header .nav a {
  display: block;
  padding: 10px 12px;
  color: #f1d2b7;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  border-radius: 99px;
  /* pill shape */
  transition: all 0.3s ease;
}

.index-header .nav a:hover {
  color: #fff;
  background: #e79750;
  padding-left: 14px;
  padding-right: 14px;
}

.index-header .nav li {
  position: relative;
}

/* LEVEL 2 */
.index-header .nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #016464;
  min-width: 200px;
  z-index: 999;
}

.index-header .nav li:hover>ul {
  display: block;
}

/* LEVEL 3 */
.index-header .nav ul ul ul {
  top: 0;
  left: 100%;
  background: #018585;
}

.index-header .social {
  display: flex;
  gap: 8px;
}

.index-header .social a {
  color: white;
  text-decoration: none;
}

.top_image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  padding-top: 0px;
  /* Ensures the image scales nicely */
  display: block;
}


.video-btn {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 110px;
  height: 38px;

  background: linear-gradient(to bottom, #540909, #e24949, #540909);
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  margin: 10px 10px 10px 5px;

}

.play-circle {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.play-icon {
  width: 0;
  height: 0;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #e60000;

  margin-left: 2px;
}


.video-text {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  margin-right: 5px;
}

.video-btn:hover {
  background: linear-gradient(to bottom,
      #7a0c0c 0%,
      #ff4d4d 50%,
      #7a0c0c 100%);

  transform: translateY(-1px);
}

.dining-title-card {
  width: 100%;
  height: 80px;
  display: inline-block;
  background: #fff;
  padding: 5px 32px;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
  text-align: center;
  margin: 0px auto;
  border-left: 5px solid #028b8b;
  margin-bottom: 10px;
  margin-top: 20px;
}

.dining-title-card h2 {
  margin: 0;
  color: #028b8b;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.section-title p {
  color: #6b7280;
  font-size: 1rem;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.cuisine-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease;
  border-left: 5px solid #028b8b;
}

.cuisine-card:hover {
  transform: translateY(-4px);
}

.cuisine-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #0f172a;
  font-size: 1.3rem;
  border-bottom: 2px solid #f3f4f6;
  padding-bottom: 12px;
}

.restaurant-item {
  margin-bottom: 18px;
}

.restaurant-item:last-child {
  margin-bottom: 0;
}

.restaurant-item h4 {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
}

.restaurant-item span {
  color: #f59e0b;
  font-weight: 500;
}

.restaurant-item p {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.route-block{
  margin-left: 25px;
}

.route-items {
  margin-left: 25px;
}


/********** MOBILE **********/
@media (max-width: 768px) {
  .index-header .hamburger {
    display: block;
  }

  .index-header .nav {
    display: none;
    background: #008080;
    position: absolute;
    top: 50px;
    right: 0;
    width: 50%;
  }

  .index-header .nav.active {
    display: block;
  }

  .index-header .nav>ul {
    flex-direction: column;
  }

  .index-header .nav ul ul {
    position: static;
    display: none;
    padding-left: 35px;
    background: #016666;
  }

  .index-header .nav li.open>ul {
    display: block;
  }

  .index-header .social {
    display: flex;
    gap: 5px;
    justify-content: center;
    width: 100%;
  }

    .dining-title-card {
    width: 95%;
    padding: 5px 16px;
    border-radius: 10px;
    min-height: auto;
  }

  .dining-title-card h2 {
    font-size: 1.2rem;
    margin: 0 auto;
  }

}

/********** FOOTER **********/
.site-footer {
  background: linear-gradient(135deg, #003232, #013a3a);
  text-align: center;
  color: #ecc7a6;
  padding: 0 20px;
  margin-top: 100px;
}

.site-footer .sf-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
}

.site-footer .sf-links {
  display: flex;
  gap: 15px;
}

.site-footer .sf-links a {
  color: #ecc7a6;
  text-decoration: none;
  font-size: 13px;
}

.site-footer .sf-links a:hover {
  color: #f79d4e;
  text-decoration: underline;
}

.site-footer .sf-copy {
  font-size: 13px;
}

/********** MOBILE FOOTER **********/
@media (max-width: 768px) {
  .site-footer .sf-container {
    flex-direction: column;
    height: auto;
    padding: 5px 0;
  }
}

/********** CAROUSEL **********/
.carousel {
  position: relative;
  padding-top: 40px;
  background: linear-gradient(to bottom, #04a0a0, #012d35);
  z-index: 1;
}

/* fade edges */
.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.carousel::before {
  left: 0;
  background: linear-gradient(to right, #05070f, transparent);
}

.carousel::after {
  right: 0;
  background: linear-gradient(to left, #05070f, transparent);
}

.carousel-container {
  /*width: min(92%, 1200px);*/
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 22px;
  transform: translateX(0);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* capsule card */
.carousel-item {
  flex: 0 0 auto;
  width: 250px;
  height: 400px;
  border-radius: 999px;
  overflow: hidden;
  background: #09a5a5;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: 0.25s;
  border: 1px solid #85ebeb;
  text-decoration: none;
}

.carousel-item:hover {
  transform: scale(1.02);
  border: 2px solid white;
}

/* image */
.image-wrapper {
  height: 90%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* text */
.carousel-item span {
  display: block;
  text-align: center;
  font-size: 12px;
  color: white;
  padding: 6px;
}

/* arrows */
.arrow {
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 22px;
}

.arrow.prev {
  left: 6%;
}

.arrow.next {
  right: 6%;
}

.carousel-dots {
  text-align: center;
  margin-top: 8px;
}

.carousel-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
}

.carousel-dots .dot.active {
  background: white;
  transform: scale(1.2);
}

/********** CAROUSEL MOBILE **********/
@media (max-width: 768px) {
  .carousel-item {
    width: 160px;
    height: 250px;
  }

  .image-wrapper {
    height: 85%;
  }

  .carousel-item span {
    font-size: 10px;
  }

  .arrow.left {
    left: calc(10% - 50px);
  }

  .arrow.right {
    right: calc(10% - 50px);
  }

  .carousel-container {
    height: 270px;
  }

  .carousel-item {
    font-size: 10px;
  }

  .arrow {
    top: 45%;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .arrow.prev {
    left: 4%;
  }

  .arrow.next {
    right: 4%;
  }
}

/* ===== Scoped Content (AsiaByLand) ===== */
.index-content {
  width: 90%;
  margin: 0 auto;
}

.index-content h1 {
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}

.index-content h2 {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
}

.index-content h3 {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
  width: 70%;
}

/****** Video Links ******/
.index-content .cards-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
}

.index-content .link-box {
  flex: 1;
  min-width: 220px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
}

.index-content .card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  padding: 3px 25px;
  transition: color 0.2s ease;
}

.index-content .card-link:hover {
  color: #0004e6;
  font-weight: bold;
}

.index-content .card-link:first-child {
  padding-top: 15px;
}

.index-content .card-link:last-child {
  padding-bottom: 15px;
}

.index-content .yt-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/****** COUNTRY CARDS  ******/
.index-content .country_grid_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 98%;
  margin: 0 auto;
}

.index-content .country_card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.index-content .country_card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.index-content .country_card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.index-content .country_card .card-content {
  padding: 10px;
}

.index-content .country_card .card-title {
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}

/********** BENEFITS **********/
.index-content .benefits_container {
  max-width: 90%;
  margin: 40px auto;
  padding: 0px;
}

.index-content .benefits_container h1 {
  margin-bottom: 10px;
  text-align: center;
}

.index-content .benefits_container .intro {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.1em;
}

.index-content .benefits_container .benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.index-content .benefits_container .card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  font-size: 14px;
}

.index-content .benefits_container .card:hover {
  transform: translateY(-5px);
}

.index-content .benefits_container .card h3 {
  margin: 5px 0px 0px 0px;
  /*margin-bottom: 5px;*/
  text-align: left;
  color: #035353;
  width: 90%;
}

.index-content .benefits_container .card .single_card {
  margin: 14px 20px;
  color: #1e3a5f;
  line-height: 1.5;
}



/* ===== INDEX CONTENT SCOPE ===== */

/* Grid layout for cards */
.index-content .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 88%;
  margin: 20px auto;
}

/* Base card style */
.index-content .card-grid .card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.index-content .card-grid .card:hover {
  transform: translateY(-4px);
}

/* Titles */
.index-content .card-grid .card h3 {
  margin-bottom: 12px;
  text-align: center;
  color: #1e3a5f;
}

/* Lists */
.index-content .card-grid .card ul {
  padding-left: 18px;
  margin: 0;
}

.index-content .card-grid .card li {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #333;
}

/* Optional color accents */
.index-content .card-grid .card-dos h3 {
  color: #1b7f5a;
}

.index-content .card-grid .card-donts h3 {
  color: #b42318;
}

.index-content .benefits_container .card .festival-card p {
  padding-bottom: 5px;
}

/********** CONTENT MOBILE **********/
@media (max-width: 768px) {
  .index-content .card-grid .card-grid {
    grid-template-columns: 1fr;
    width: 90%;
  }

  .index-content .benefits_container .card .festival-card p {
    padding-bottom: 8px;
  }

  .index-content .cards-wrapper {
    width: 90%;
  }

  .index-content .country_grid_cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .index-content .content_section h1 {
    font-size: 18px;
    color: #035353;
  }

  .index-content .content_section h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    color: #028b8b;
  }

  .index-content .benefits_container h1 {
    font-size: 18px;
    color: #035353;
  }

  .index-content .benefits_container h2 {
    font-size: 16px;
    color: #028b8b;
  }

  .index-content .benefits_container h3 {
    margin-bottom: 0px;
    text-align: center;
    font-size: 14px;
    width: 80%;
    color: #037777;
  }
}

.city-carousel {
  width: 80%;
  margin: 50px auto;
  font-family: Arial;
  position: relative;
}

.city-carousel .viewport {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.city-carousel .track {
  display: flex;
  will-change: transform;

  gap: 22px;
  transform: translateX(0);
  padding-top: 10px;
  padding-bottom: 10px;
}

.city-carousel .item {
  text-align: center;
  flex: 0 0 auto;
  width: 250px;
  height: 400px;
  border-radius: 999px;
  overflow: hidden;
  background: #09a5a5;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid #85ebeb;
  text-decoration: none;
  font-size: 12px;

  /* 🔥 KEY FIX */
  display: flex;
  flex-direction: column;
}

.city-carousel .item img {
  flex: 0 0 90%;
  width: 100%;
  height: 90%;
  object-fit: cover;
  display: block;
  padding-bottom: 10px;
}

.city-carousel .item h4 {
  color: white;
  text-decoration: none;
  font-size: 12px;

}

.city-carousel .arrow {
  position: absolute;
  top: 40%;
  background: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.city-carousel .prev {
  left: 0;
}

.city-carousel .next {
  right: 0;
}

.city-carousel .dots {
  text-align: center;
  margin-top: 15px;
}

.city-carousel .dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
}

.city-carousel .dot.active {
  background: #000;
}

/* =========================
   📱 MOBILE (< 768px)
========================= */
@media (max-width: 768px) {

  .city-carousel {
    width: 100%;
    margin: 20px auto;
  }

  .city-carousel .item {
    /*min-width: 75%; 
    margin-right: 15px;*/

    flex: 0 0 auto;
    width: 250px;
    height: 400px;
    border-radius: 999px;
    overflow: hidden;
    background: #09a5a5;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: 0.25s;
    border: 1px solid #85ebeb;
    text-decoration: none;
  }

  .city-carousel .item img {
    height: 200px;
  }

  .city-carousel .arrow {
    top: 35%;
    padding: 8px;
  }

  .city-carousel .dots {
    margin-top: 10px;
  }
}

/* =========================
   💻 DESKTOP (> 768px)
========================= */
@media (min-width: 769px) {

  .city-carousel {
    width: 90%;
  }

  .city-carousel .item {
    min-width: 240px;
    /* default desktop size */
  }

  .city-carousel .item img {
    height: 160px;
  }
}