/* ========== Root & Globals ========== */
:root {
  --litebite-primary: #2b321b;
  --litebite-accent: #ccd5ae;
  --litebite-font: 'Cormorant Garamond', serif;
}

body {
  font-family: 'Georgia', serif;
  background-color: #fffbe1;
  color: var(--litebite-primary);
}

/* ========== Typography ========== */
h2,
h2.section-title {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: var(--litebite-primary);
}

.section-title h3,
.main-text {
  font-family: var(--litebite-font);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.navbar-brand, .logo {
  font-family: var(--litebite-font);
  font-weight: 600;
  font-size: 1.8rem;
}

/* ========== Banner ========== */
.banner,
.banner2 {
  position: relative;
  overflow: hidden;
}

.banner {
  height: 420px;
  background-color: #e5e4db;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  z-index: 0;
}

.konten-banner {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.konten-banner h1 {
  font-family: var(--litebite-font);
  font-size: 3rem;
}

/* ========== Scrolling Cards ========== */
.scrolling-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 2rem 1.5rem;
  background-color: #fffbe1;
  border-radius: 16px;
  scroll-behavior: smooth;
}

.scrolling-wrapper::-webkit-scrollbar {
  display: none;
}

.card {
  min-width: 340px;
  border: none;
  border-radius: 16px;
  background-color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card-img-top {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-size: 1.1rem;
  color: var(--litebite-primary);
}

.card-text {
  font-size: 0.95rem;
  color: #4f4f4f;
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== Buttons ========== */
.btn-custom,
.btn-order {
  background-color: var(--litebite-primary);
  color: #fff;
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-custom:hover,
.btn-order:hover {
  background-color: #6b774c;
  transform: scale(1.05);
}

.btn-custom {
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 30px;
}

/* ========== Location Section ========== */
.location-section {
  padding: 60px 0;
}

.location-section h3 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--litebite-primary);
}

.location-nav a {
  text-decoration: none;
  color: var(--litebite-primary);
  font-weight: 600;
  transition: color 0.3s;
}

.location-nav a:hover {
  color: #6b774c;
}

.location-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
}

.bi-telephone-fill {
  margin-right: 6px;
}

/* ========== Contact Form ========== */
.form-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.form-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(43, 50, 27, 0.6);
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

.contact-title-wrapper {
  color: #fff;
  font-weight: 600;
  font-size: 2.5rem;
}

.form-section {
  background: #ffffffee;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ========== Contact Footer ========== */
.contact-footer {
  background-color: var(--litebite-accent);
  color: var(--litebite-primary);
  padding: 3rem 1rem;
}

.contact-footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-footer p {
  margin: 0.25rem 0;
}

.contact-footer img {
  height: 30px;
}

/* ========== Marquee ========== */
.top-marquee {
  background-color: var(--litebite-accent);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  padding: 1rem;
  color: var(--litebite-primary);
  font-weight: 500;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ========== About Us ========== */
.aboutus-section {
  background-color: #fffbe1;
  padding: 4rem 0;
}

.icon-ourtim {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 4px solid var(--litebite-accent);
}

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

.team-section h6 {
  font-weight: 600;
}

.team-section p {
  color: #4f4f4f;
}

.img-banner-fit {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ========== Animation & Effects ========== */
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .aboutus-section {
    text-align: center;
  }

  .contact-footer .text-center {
    text-align: left !important;
  }

  .main-sidebar {
    transform: translateX(-100%);
  }

  .main-sidebar.sidebar-open {
    transform: translateX(0) !important;
  }
}

@media (max-width: 576px) {
  .location-card {
    text-align: left;
  }
}

/* ========== Menu Cards ========== */
.menu-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.menu-title {
  color: #2B321B;
  font-size: 60px;
  font-weight: bold;
}

.menu-description {
  font-size: 0.95rem;
  color: #555;
}
