:root {
  --bg-color: #fdfcfb;
  --text-primary: #333333;
  --text-secondary: #6b6b6b;
  --accent-color: #d97706;
  --card-bg: #ffffff;
  --border-color: #edeae6;
  --font-main: "League Spartan", sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-header .title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.main-header .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Carousel */
.carousel-item-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 320px;
  flex-shrink: 0;
}

.carousel-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.carousel-item-card img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.carousel-content {
  padding: 20px;
}

.carousel-content .name {
  font-size: 1.25rem;
  font-weight: 700;
}

.carousel-content .desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 8px 0 16px;
}

.carousel-content .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.carousel-nav-btn {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.2s ease;
  border: 1px solid var(--border-color);
}

.carousel-nav-btn:hover {
  transform: scale(1.1);
  background-color: #ffffff;
}

.carousel-nav-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

/* Tabel Jam Buka */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.info-table th,
.info-table td {
  padding: 18px 24px;
  text-align: left;
}

.info-table thead {
  border-bottom: 2px solid var(--border-color);
}

.info-table th {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.info-table .day {
  font-weight: 700;
}

.info-table .hours {
  font-weight: 400;
}
