:root {
  --navy: #0C1630;
  --beige: #F3E6D4;
  --orange: #FF8C42;
  --offwhite: #FFF9F1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--offwhite);
  color: #1a1a1a;
  margin: 0;
  padding-top: 70px; /* space for fixed navbar */
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
}

/* NAVBAR */

.navbar {
  background-color: var(--navy);
}

.navbar-brand, .nav-link {
  color: #ffffff !important;
  font-weight: 500;
}
.navbar-brand img{
  height: 50px;
}
.navbar-brand {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-link {
  font-size: 0.9rem;
}

.navbar .nav-link:hover {
  opacity: 0.8;
}


.navbar-brand img {
  height: 42px;
  width: auto;
  display: block;
}
/* HERO */


.hero {
  min-height: 80vh;
  padding: 5rem 0 4rem;

  background:
    radial-gradient(circle at 20% 20%, #2f3f78, transparent 50%),
    radial-gradient(circle at 80% 80%, #1a244a, transparent 50%),
    linear-gradient(to bottom, #0c1630, #0c1630);

  color: #fff;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.hero-image {
  background-image: url("../img/silom34-dishes.png");
  background-size: cover;
  background-position: center;
  border-radius: 22px;

  position: relative;
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-image {
  transform: scale(1.03);
}

/* subtle glow overlay */
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
}

/* BUTTONS */

.btn-primary {
  background-color: var(--orange);
  border-color: var(--orange);
  border-radius: 999px;
  padding-inline: 1.75rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #ff7a21;
  border-color: #ff7a21;
}

.btn-outline-light {
  border-radius: 999px;
  padding-inline: 1.5rem;
  font-weight: 500;
}

/* SECTIONS */

.section-padding {
  padding: 4rem 0;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: #666;
  margin-bottom: 2rem;
}

/* CARDS / CONTENT BLOCKS */

.card-food {
  border: none;
  border-radius: 1.25rem;
  background-color: var(--beige);
  padding: 1.5rem;
  height: 100%;
}

.card-food h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card-food p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.info-block {
  border-radius: 1.25rem;
  background-color: #ffffff;
  padding: 1.5rem;
  border: 1px solid #eee;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background-image: url("../img/silom34-interior.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  transform: scale(1.02);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08),
    rgba(0,0,0,0.18)
  );
}

#about p {
  max-width: 520px;
}

/* ===== GALLERY ===== */
.gallery-tile {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  cursor: pointer;

  will-change: transform;

  transform: scale(1);
}

.gallery-tile:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  filter: brightness(0.95);
}


/* make sure these files really exist in /assets/img/ */
.gallery-1 { background-image: url("../img/silom34-dishes.png"); }
.gallery-2 { background-image: url("../img/moo-ping.png"); }
.gallery-3 { background-image: url("../img/onigiri.png"); }
.gallery-4 { background-image: url("../img/tteokbokki.png"); }
.gallery-5 { background-image: url("../img/silom34-interior.png"); }
.gallery-6 { background-image: url("../img/thai-drinks.png"); }


/* FOOTER */

.footer {
  background-color: var(--navy);
  color: #eee;
  padding: 2rem 0;
  font-size: 0.9rem;
}

/* SMALL UTILITIES */

.small-muted {
  font-size: 0.85rem;
  color: #777;
}

/* RESPONSIVE TWEAKS */

@media (max-width: 767.98px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0.8;
}

.hero-note {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 32rem;
}

.menu-intro {
  max-width: 760px;
}

.menu-block {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #777;
  font-weight: 600;
}

.menu-group-title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.menu-group-text {
  color: #666;
  max-width: 42rem;
}

.hero-actions .btn {
  min-width: 140px;
}

.navbar-brand img {
  height: 42px;
  width: auto;
  display: block;
}

.card-food {
  background: #f3e6d4;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-food:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card-food-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-food-body {
  padding: 1rem 1.1rem 1.1rem;
}

.card-food-body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.card-food-body p {
  margin-bottom: 0;
  font-size: 0.94rem;
  color: #4d4d4d;
  line-height: 1.55;
}

/* dish images */
.card-food-img.khao {
  background-image: url("../img/khao-mun-gai.png");
}

.card-food-img.kuay {
  background-image: url("../img/kuay-teow-hang.png");
}

.card-food-img.onigiri {
  background-image: url("../img/onigiri.png");
}

.card-food-img.moo {
  background-image: url("../img/moo-ping.png");
}

.card-food-img.tteok {
  background-image: url("../img/tteokbokki.png");
}

.card-food-img.curry {
  background-image: url("../img/curry-puff.png");
}

.card-food-img.lukchin {
  background-image: url("../img/luk-chin-gai.png");
}

.card-food-img.fries {
  background-image: url("../img/fire-fries.png");
}

.card-food-img.mantou {
  background-image: url("../img/fried-mantou.png");
}

.card-food-img.sago {
  background-image: url("../img/strawberry-sago.png");
}

.card-food-img.drinks {
  background-image: url("../img/thai-drinks.png");
}

@media (min-width: 992px) {
  .hero .col-lg-6:last-child {
    padding-left: 2rem;
  }
}


.visit-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  background: #f5f2eb;
  border-radius: 20px;
  padding: 20px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .visit-card {
    grid-template-columns: 1fr;
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  background: #0d1b3d; /* your navy */
  color: #fff;

  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  background: #ff8a3d; /* your orange accent */
}