/* ======================================================
   CUSTOM CSS - RESTORAN RASA NUSANTARA
   ====================================================== */

:root {
  --primary-color: #ffb703;
  --primary-dark: #fb8500;
  --dark-color: #121619;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: #333333;
}

.brand-logo {
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 2.25rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(18, 22, 25, 0.75), rgba(18, 22, 25, 0.75)),
              url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  min-height: 88vh;
  position: relative;
}

.hero-title {
  font-family: var(--font-serif);
}

.hero-badge {
  letter-spacing: 0.8px;
}

/* Experience Floating Card */
.experience-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #1e2329;
  padding: 1.25rem 1.75rem;
  border-radius: 1rem;
  border-left: 5px solid var(--primary-color);
}

/* Card Menu */
.card-menu {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #ffffff;
}

.card-menu img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card-menu:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

.card-menu:hover img {
  transform: scale(1.03);
}

/* Avatar Badge for Testimonials */
.avatar-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* Social Icon Links */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  color: #121619;
  transform: translateY(-2px);
}

/* Offcanvas Cart Item Styling */
.cart-item {
  border-bottom: 1px dashed #dee2e6;
  padding: 0.75rem 0;
}

.cart-item:last-child {
  border-bottom: none;
}
