* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
}

@font-face {
  font-family: 'Blair ITC';
  src: url('assets/font/Blair ITC Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'BlairBold';
  src: url('assets/font/BlairITC TT Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}


.container {
  margin: auto;
}


/* ================= TOP BAR ================= */
.topbar {
display: flex;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  justify-content: flex-end;
  padding: 10px 60px;
  font-size: 13px;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang span {
  cursor: pointer;
  color: #777;
}

.lang .active {
  color: #0f2d23;
  font-weight: 500;
}

.topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px dashed #0f2d23;
}

.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #0f2d23 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 2;
}

.why::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #0f2d23 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}

.story::after {
  content: "";
  bottom: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #0f2d23 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}

.menu::after {
  content: "";
  bottom: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #0f2d23 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}

.testi::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #0f2d23 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}

.branch::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #0f2d23 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}


/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 80px;
  z-index: 999;
}

.logo img {
  height: 30px;
  object-fit: contain;
}

.navbar nav {
  align-items: center;
  gap: 50px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  padding: 8px 18px;
  border-radius: 25px;
  transition: 0.3s;
  border: 1px solid transparent;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.navbar a:hover {
  border-color: #0f2d23;
  color: #0f2d23;
  background: rgba(15,45,35,0.08);
}

.navbar a.active {
  background: #0f2d23;
  color: white !important;
}

.navbar .btn {
  padding: 8px 20px;
  border-radius: 25px;
  color: #0f2d23;
}

.navbar .btn:hover {
  background: #0f2d23;
  color: white;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(20%);
}

/* ================= NAVBAR MOBILE — dropdown kanan ================= */
@media (max-width: 991px) {
  .navbar {
    padding: 18px 20px;
  }

  /* Posisi container relatif agar dropdown bisa absolute */
  .navbar > .container-fluid {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  /* Tombol toggler di kanan logo */
  .navbar-toggler {
    flex-shrink: 0;
    margin-left: auto;
  }

  /* Dropdown muncul di kanan, bukan melebar full */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: auto;
    min-width: 200px;
    background: white;
    border-radius: 12px;
    margin-top: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    padding: 10px 0;
    z-index: 1000;
    transition: none !important;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 2px;
    padding: 5px 10px;
    width: auto !important;
  }

  .navbar-nav .nav-link {
    font-size: 15px !important;
    width: 100%;
    text-align: right;
  }
}

/* ================= HERO ================= */

.carousel-indicators {
  bottom: 25px;
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  all: unset;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  border-radius: 20px;
  background: white;
}
.hero {
  height: calc(100vh - 110px);
  position: relative;
  overflow: hidden;
}

.hero-img {
  height: calc(100vh - 110px);
  object-fit: cover;
}
.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.hero-content {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
}

.hero-content h1 {
  font-size: 34px;
  letter-spacing: -0.34px;
  margin-bottom: 10px;
  line-height: 24px;
  font-family: 'Blair ITC', sans-serif;
}

.hero-content p {
  font-size: 20px;
  letter-spacing: -0.2px;
  margin-bottom: 25px;
}

.hero-btn {
  margin: 0 auto;
  width: 240px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: -0.2px;
  color: white;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255,255,255,0.5);
  border-radius: 60px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: white;
  color: black;
}


/* ================= about ================= */
.about-title {
  font-family: 'Source Serif Pro', serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -0.54px;
  color: #162824;
  margin-bottom: 16px;
}

.about-title .italic {
  font-style: italic;
  font-weight: 300;
}
.about {
  position: relative;
  padding: 120px 0;
}

.about-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.15px;
  color: #162824;
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 48px;
}
.about-gallery {
  margin-top: 48px;
}

.ag-left {
  height: 560px;
}
.ag-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.ag-mid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 560px;
}
.ag-mid-item {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.ag-mid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ag-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 560px;
}
.ag-right-item {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.ag-right-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .ag-left  { height: 260px; }
  .ag-mid   { height: auto; }
  .ag-right { height: auto; }
  .ag-mid-item img,
  .ag-right-item img { height: 180px; }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}


/* ================= chef ================= */
.chef {
  position: relative;
  padding: 200px 0;
}

.chef::before,
.chef::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #0f2d23 50%, transparent 50%);
  background-size: 12px 2px;
}

.chef::before { top: 0; }
.chef::after  { bottom: 0; }

.chef-icon { width: 56px; }

.chef-title {
  font-family: 'Source Serif Pro', serif;
  font-size: 34px;
  color: #162824;
  margin-bottom: 33px;
}

.chef-sub {
  font-size: 18px;
  color: #444;
  font-weight: 500;
}

.chef-desc {
  font-size: 13px;
  color: #777;
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 768px) {
  .chef { padding: 80px 20px; }
  .chef-title { font-size: 22px; }
  .chef-desc { font-size: 12px; }
}

/* ================= story SECTION ================= */
.story {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  padding: 200px 0px;
}

.story-img { flex: 1; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }

.story-text {
  background: #816C21;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-text .content {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.story-text h3 {
  font-family: 'Source Serif Pro', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.34px;
  margin-bottom: 42px;
}
.story-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.85);
}

.story-text a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: -0.2px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 100px;
}

/* ================= why SECTION ================= */
.why-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.why {
  position: relative;
  padding: 250px 0px;
}

.why-title {
  font-family: 'Source Serif Pro', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.34px;
  color: #182F29;
  margin-bottom: 47px;
}
.why-title .italic {
  font-style: italic;
  font-weight: 300;
}
.why-row { gap: 40px 0; }

.why-item {
  max-width: 270px;
  margin: 0 auto;
  text-align: center;
}

.why-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.why-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.18px;
  color: #162824;
  margin-bottom: 13px;
}

.why-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.why-row {
  gap: 40px 0;
  justify-content: center;
}

.menu {
  position: relative;
  padding: 143px 0px;
}
.menu h2 {
  font-family: 'Source Serif Pro', serif;
  color:#162824;
  font-size: 34px;
  letter-spacing: 0.34px;
}
.menu-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ================= testi SECTION ================= */
.testi {
  padding: 140px 0;
  position: relative;
}

.testi-title {
  font-family: 'Source Serif Pro', serif;
  font-size: 34px;
  margin-bottom: 70px;
  line-height: 1.3;
}

.testi-title .semi { font-weight: 600; }
.testi-title .regular { font-weight: 400; }

.testi-desc {
  max-width: 300px;
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.testi-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 40px;
  background: #fff;
  height: 100%;
}

.testi-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}
.testi-right { position: relative; padding-top: 10px; }

.quote-icon {
  display: block;
  margin: 0 auto 40px auto;
  width: 38px;
  height: 32px;
}

.stars {
  color: #816C21;
  font-size: 14px;
  margin-bottom: 8px;
}

.name {
  font-size: 12px;
  color: #333;
}

/* ================= STATS ================= */
.stats { padding: 80px 0; text-align: center; }

.stats-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.stat-item { text-align: center; }

.stat-item h3 {
  font-family: 'BlairBold', sans-serif;
  font-size: 68px;
  font-weight: bold;
  color: #816C21;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.stat-item p {
  font-size: 21px;
  color: #162824;
  letter-spacing: -0.02em;
}

.divider {
  width: 1px;
  height: 40px;
  background: #ccc;
}

.plus-symbol {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  margin-left: 4px;
  vertical-align: middle;
}

/* ================= BRANCH ================= */
.branch-grid { display: flex; gap: 20px; justify-content: center; }
.branch {
  position: relative;
  padding: 100px 0;
  text-align: center;
}

.branch-icon { width: 20px; margin-bottom: 15px; opacity: 0.8; }

.branch-title {
  font-size: 32px;
  font-family: 'Source Serif Pro', serif;
  margin-bottom: 50px;
  color: #0f2d23;
}

.branch-title .italic { font-style: italic; }

.branch-card { text-align: center; }

.branch-card h5 {
  font-size: 18px;
  margin-bottom: 2px;
  color: #0f2d23;
}

.branch-sub {
  font-size: 14px;
  color: #999;
  display: block;
  margin-bottom: 15px;
}

.branch-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.branch-address {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

/* ================= ORDER ================= */
.order {
  text-align: center;
  min-height: 500px;
  padding: 160px 0;
}

.order-sub {
  font-family: 'Source Serif Pro', serif;
  font-size: 14px;
  color: #999;
  line-height: 1.8;
  margin-bottom: 15px;
}

.order-title {
  font-size: 54px;
  font-family: 'Source Serif Pro', serif;
  color: #0f2d23;
  margin-bottom: 50px;
}

.order img {
  height: 58px;
  object-fit: contain;
  transition: 0.3s;
}

.logo-active { opacity: 1; }
.logo-fade { opacity: 0.3; }

.order img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ================= footer ================= */
.footer {
  background: #0E1412;
  padding: 30px;
  padding-right: 100px;
  margin: 0;
  width: 100%;
}

.footer-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left { flex: 0 0 280px; }

.footer-logo {
  width: 100%;
  margin-bottom: 100px;
  display: block;
}

.footer-desc {
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
}

.footer-middle {
  display: flex;
  flex-direction: row;
  gap: 120px;
  flex: 1;
  justify-content: flex-start;
  margin-left: 180px;
}

.footer-middle p {
  font-size: 16px;
  color: #ddd;
  margin: 0;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.32px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
  margin-top: 20px;
  margin-left: auto;
}

.footer-right p {
  font-size: 14px;
  color: #B7B7B7;
  margin: 0;
  cursor: pointer;
}

.footer-middle p:hover,
.footer-right p:hover { color: white; }

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .container { padding-left: 20px; padding-right: 20px; }

  .navbar { padding: 15px 20px !important; }
  .logo img { height: 24px; }

  .hero { height: 70vh; }
  .hero-img { height: 70vh; }
  .hero-content { top: 70%; padding: 0 20px; }
  .hero-content h1 { font-size: 20px; line-height: 1.3; }
  .hero-content p { font-size: 14px; }
  .hero-btn { width: 180px; height: 36px; font-size: 12px; }

  .about { padding: 80px 0; }
  .about-title { font-size: 28px; }
  .about-desc { font-size: 13px; line-height: 1.6; }

  .about-gallery .row { display: flex; flex-direction: column; }
  .about-gallery .col-6,
  .about-gallery .col-3 { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }

  .ag-right, .ag-mid, .ag-left { height: auto !important; }
  .ag-right-item, .ag-mid-item { height: 180px; }
  .ag-left img { height: 260px; }

  .story { grid-template-columns: 1fr; padding: 80px 0; }
  .story-text { padding: 40px 20px; }
  .story-text h3 { font-size: 22px; }
  .story-text p { font-size: 13px; }
  .story-text a { margin-top: 40px; }

  .why { padding: 100px 0; }
  .why-title { font-size: 24px; }
  .why-row { gap: 20px !important; }

  .chef { padding: 80px 20px; }
  .chef-title { font-size: 22px; }

  .menu { padding: 80px 0; }
  .menu h2 { font-size: 22px; }

  .testi { padding: 80px 0; }
  .testi-title { font-size: 22px; margin-bottom: 30px; }
  .testi-desc { max-width: 100%; text-align: center; margin-bottom: 20px; }
  .testi .row { text-align: center; }
  .testi-card { padding: 20px; }

  .stats-wrapper { flex-direction: column; gap: 25px; }
  .stat-item h3 { font-size: 40px; }
  .stat-item p { font-size: 14px; }
  .divider { display: none; }

  .branch { padding: 80px 0; }
  .branch-title { font-size: 22px; }
  .branch-card img { height: 180px; }

  .order { padding: 80px 0; }
  .order-title { font-size: 28px; }
  .order img { height: 40px; }

  .footer { padding-right: 30px; }
  .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .footer-left { flex: unset; }
  .footer-logo { width: 250px; margin-bottom: 20px; }
  .footer-middle { flex-wrap: wrap; gap: 15px !important; margin: 0 !important; justify-content: center; }
  .footer-right { flex-direction: row; flex-wrap: wrap; gap: 10px; justify-content: center; text-align: center; }
  .footer-middle p, .footer-right p { font-size: 12px; }

  .story-text .content { max-width: 320px; padding: 45px 0px; }
  .story { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }

  .stats-wrapper { flex-direction: column; gap: 20px; }
  .divider { display: none; }

  .order { padding: 100px 0; }
  .order-title { font-size: 36px; }
  .order-sub { font-size: 14px; }
  .order img { height: 40px; }
}

.navbar-nav { text-align: center; }

