.grid {
  display: grid;
  gap: 1rem;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.section {
  padding: 2rem 1rem;
}
.section-title h1, .section-title h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #c0392b;
}
.section-title p {
  color: #555;
  margin-bottom: 1.5rem;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}
/* container utama di header */
.site-header .container {
  padding-left: 20px;
  padding-right: 20px;  /* biar gak mepet kiri-kanan */
}
/* ===============================
   Logo Default (fallback)
=================================*/
.default-logo {
  display: inline-block;
  height: 48px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-right: 10px; /* kasih jarak dengan teks */
}

/* efek hover lembut */
.site-logo:hover .default-logo {
  transform: scale(1.05);
  opacity: 0.9;
}

/* saat di layar kecil, kecilkan sedikit logonya */
@media (max-width: 768px) {
  .default-logo {
    height: 40px;
  }
}
/* teks di sebelah logo (Hotway's Chicken) */
.site-logo span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d92b2b; /* warna khas Hotway’s */
}

/* posisi logo dan teks sejajar */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-left: 5px;
}
.site-logo img {
  max-height: 48px;
  transition: transform 0.3s ease;
}

.site-logo:hover img {
  transform: scale(1.05);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-flex {
  display: flex;
  justify-content: space-between; /* ✅ Logo kiri, hamburger kanan */
  align-items: center;
  padding: 1rem;
  background-color: #fff8f0;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #c0392b;
}

.main-menu {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-menu li {
  position: relative;
  padding-right: 1.25rem;
  display: inline;
}
.main-menu li:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 0;
  color: #ccc;
  font-weight: normal;
}
.main-menu a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}
.main-menu a:hover {
  color: #c0392b;
}

/* Reset */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 999;
        background-color: #fff8f0;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      }
    .menu-toggle {
      display: block;
      color: #c0392b;
    }

    .site-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .site-nav.active {
      max-height: 500px; /* cukup besar untuk menu */
    }

  .main-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    margin: 0;
    list-style: none;
    background: #fff;
    width: 100%;
  }

  .main-menu li {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 0.25rem 0 0.25rem 0; /* ✅ Tambah padding bawah */
  }

  .main-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0.4rem; /* ✅ Tambah jarak dari teks */
    left: 50%;
    transform: translateX(-50%);
    color: #c0392b;
    font-size: 1.2rem;
  }

  .main-menu li:last-child::after {
    display: none;
  }

  .main-menu li a {
    display: inline-block;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 1.05rem;
  }

}

.main-menu.mobile-ready {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 1rem 0;
  background: #fff;
  width: 100%;
}

.main-menu.mobile-ready li {
  padding: 0.75rem 0;
  text-align: center;
  position: relative;
}

.main-menu.mobile-ready li .dot {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #c0392b;
}

.main-menu li.current-menu-item > a,
.main-menu li.current_page_item > a {
  color: #c0392b;
  font-weight: 600;
  position: relative;
}

.main-menu li.current-menu-item > a::before,
.main-menu li.current_page_item > a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: #c0392b;
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
}
.footer-nav a {
  color: #888;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-nav a:hover {
  color: #000;
}

img {
  border-radius: 8px;
}

.btn-cta {
  background: #e74c3c;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}
.btn-cta:hover {
  background: #c0392b;
}

/*hero*/
.hero-section {
  position: relative;
  background: center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
}

.btn-cta {
  background: #e74c3c;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-cta:hover {
  background: #c0392b;
}

/*Promo Hero*/
.promo-hero {
  position: relative;
  background: url('../images/hero-promo.webp') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.promo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* overlay gelap biar teks jelas */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-cta {
  background: #e74c3c;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-cta:hover {
  background: #c0392b;
}

/*promo front*/
.promo {
  padding: 3rem 1rem;
  background: #fff8f0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1rem;
  color: #555;
}

.promo-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Archive Promo */
.page-promo {
  padding: 2rem 1rem;
}
.archive-head {
  text-align: center;
  margin-bottom: 1.25rem;
}
.archive-title {
  font-size: 1.8rem;
  color: #c0392b;
  margin: 0 0 .25rem;
}
.archive-subtitle {
  color: #666;
  margin: 0;
}

/* Promo grid responsif */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 12px auto 0;
  justify-content: center;
  justify-items: center;
  max-width: 1200px; /* batasi lebar grid */
}

.promo-item a {
  display: block;
  text-decoration: none;
}

.promo-thumb-related {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-thumb-related:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* spacing adaptif */
@media (max-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}


.promo-item .promo-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.promo-item:hover .promo-link {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
.promo-item:hover img {
  transform: scale(1.04);
}

.promo-empty {
  text-align: center;
  color: #777;
  grid-column: 1 / -1;
  padding: 2rem 0;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.pagination-wrap .page-numbers {
  display: inline-block;
  padding: .5rem .8rem;
  margin: 0 .25rem;
  border-radius: 8px;
  text-decoration: none;
  background: #f3f3f3;
  color: #333;
  font-weight: 600;
}
.pagination-wrap .page-numbers.current {
  background: #e74c3c;
  color: #fff;
}
.pagination-wrap .page-numbers:hover {
  background: #ddd;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .archive-title { font-size: 1.5rem; }
}


/* Single Promo */
.promo-single {
  padding: 2rem 1rem;
}

.promo-article {
  max-width: 900px;
  margin: 0 auto;
}

.promo-header {
  text-align: center;
  margin-bottom: 1rem;
}

.promo-title {
  font-size: 1.8rem;
  margin: 0 0 .25rem;
  color: #c0392b;
}

.promo-date {
  color: #888;
  font-size: .95rem;
}

.promo-media {
  text-align: center;
  margin: 16px 0;
}

.promo-thumb {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.promo-single .promo-terms {
  background: #fff7f7;
  border: 1px solid #ffd9d9;
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 18px;
}

.promo-single .promo-terms h2 {
  margin: 0 0 8px;
  color: #c91f1f;
}


.promo-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.promo-actions {
  margin-top: 1.5rem;
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  background: #eee;
  color: #333;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease;
}
.btn-secondary:hover {
  background: #ddd;
}

.promo-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  font-weight: 600;
}
.promo-nav a {
  color: #c0392b;
  text-decoration: none;
}
.promo-nav a:hover {
  text-decoration: underline;
}

/* Related promos */
.promo-related {
  margin-top: 2.5rem;
}
.promo-related h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #c0392b;
}

.promo-related .promo-item a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.promo-related .promo-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .25s ease;
}

.promo-related .promo-item:hover img {
  transform: scale(1.04);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .promo-title {
    font-size: 1.5rem;
  }
  .promo-nav {
    flex-direction: column;
    align-items: center;
  }
}

/*menu section*/
.menu-section {
    padding: 2rem 1rem;
    background: #fff;
    text-align: center;
}
.section-title h2 {
    font-size: 1.75rem;
    color: #e74c3c;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.menu-card {
    background: #fefefe;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.menu-card img {
    width: 100%;
    border-radius: 8px;
}
.menu-card h3 {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}
.section-sub {
    margin-top: 2rem;
}
.btn-secondary {
    display: inline-block;
    background: #ddd;
    color: #222;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
}
.btn-secondary:hover {
    background: #ccc;
}

/* ===========================
   Section Kemitraan
=========================== */
.kemitraan-section {
  text-align: center;
  padding: 40px 20px;
}

.kemitraan-section .section-title h2 {
  font-size: 1.8rem;
  color: #d92b2b;
  margin-bottom: 6px;
}

.kemitraan-section .section-title p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

/* ===========================
   Testimoni Slider (Horizontal Scroll)
=========================== */
.testimoni-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 5px 15px;
  scroll-behavior: smooth;
  justify-content: center;
}

.testimoni-slider::-webkit-scrollbar {
  height: 6px;
}

.testimoni-slider::-webkit-scrollbar-thumb {
  background: #d92b2b;
  border-radius: 10px;
}

.testimoni-card {
  flex: 0 0 180px; /* ukuran kartu */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 12px;
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimoni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.testimoni-thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimoni-text h3 {
  font-size: 1rem;
  color: #d92b2b;
  margin-bottom: 5px;
}

.testimoni-text p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* ===========================
   CTA Buttons
=========================== */
.kemitraan-cta {
  margin-top: 25px;
}

.btn-cta,
.btn-wa {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  margin: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-cta {
  background: #d92b2b;
  color: #fff;
}

.btn-cta:hover {
  background: #b61f1f;
}

.btn-wa {
  background: #25d366;
  color: #fff;
}

.btn-wa:hover {
  background: #1da955;
}


/*Kemitraan*/
.kemitraan-page {
    padding: 2rem 1rem;
    background: #fff;
}
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.benefit-list li {
    background: #f9f9f9;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid #e74c3c;
    font-size: 0.95rem;
}
.peta-frame iframe {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.form-section {
    margin-top: 2rem;
}
.kemitraan-contact {
    margin-top: 1.5rem;
}
.btn-email {
    display: inline-block;
    background: #555;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    /*margin-left: 0.5rem;*/
}
.btn-email:hover {
    background: #333;
}
/*form kemitraan*/
.form-kemitraan {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}
.form-alert.success {
    margin-top: 1rem;
    background: #e0f9e6;
    padding: 1rem;
    border-left: 4px solid #27ae60;
    color: #2e7d32;
}
/*page-karir*/
.karir-page {
    padding: 2rem 1rem;
}
.karir-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.karir-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.karir-image img {
    width: 100%;
    height: auto;
}
.karir-info {
    padding: 1rem;
}
.karir-info h3 {
    font-size: 1.2rem;
    color: #c0392b;
    margin-bottom: 0.5rem;
}
.karir-expired {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

/*single karir*/
.karir-single {
    padding: 2rem 1rem;
}
.karir-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.karir-foto img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}
.karir-deskripsi {
    font-size: 1rem;
}
.karir-deskripsi .btn-cta {
    margin-top: 1rem;
}
/*Page Profil*/
.profil-page {
    padding: 2rem 1rem;
}
.about-section, .video-section, .sosmed-section {
    margin-top: 2rem;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}
.sosmed-list {
    list-style: none;
    padding: 0;
}
.sosmed-list li {
    margin: 0.5rem 0;
}
.sosmed-list a {
    color: #c0392b;
    text-decoration: none;
    font-weight: bold;
}

/*kontak*/
.kontak-page {
    padding: 2rem 1rem;
}
.form-kritik {
    max-width: 500px;
    margin: 0 auto;
}
.kontak-lain {
    margin-top: 2rem;
    text-align: center;
}
.kontak-list {
    list-style: none;
    padding: 0;
}
.kontak-list li {
    margin: 0.5rem 0;
}
.kontak-list a {
    font-weight: bold;
    color: #c0392b;
    text-decoration: none;
}
.kontak-list a:hover {
    text-decoration: underline;
}

/*Page Promo */
.page-promo .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.promo-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: block;
  transition: transform .25s ease;
}
