/* =========================================
   THEME: LIQUID BLACK (Higsfield Adaptation)
   CONCEPT: High Contrast, Electric, Bold, Dark Mode
   ========================================= */

/* --- 1. FONTS IMPORT (UPDATED) --- */
/* Menggunakan 'Playfair Display' untuk Heading (Mewah) dan 'Plus Jakarta Sans' untuk Body (Modern) */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* --- 2. VARIABLES --- */
:root {
  /* Backgrounds */
  --lb-bg: #000000; /* Pure Black */
  --lb-bg-alt: #111111; /* Off Black (Card Bg) */
  --lb-card: #1a1a1a; /* Dark Charcoal */

  /* Accents */
  --lb-primary: #d1fe17; /* Lime Green (Base) */
  --lb-primary-hover: #e2ff62; /* Lighter Lime (Hover) */
  --lb-secondary: #ffffff; /* Pure White */

  /* Text */
  --lb-text-main: #ffffff; /* White Text */
  --lb-text-muted: #a1a1a1; /* Light Gray Text */
  --lb-text-inv: #000000; /* Black Text (on Lime buttons) */

  /* Borders & Lines */
  --lb-border: #333333;

  /* System */
  --lb-radius-pill: 100px;
  --lb-radius-card: 24px; /* Smooth Rounded */
  --lb-radius-sm: 12px;

  /* Neon Glow Shadows */
  --lb-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --lb-shadow-glow: 0 0 20px rgba(209, 254, 23, 0.4); /* Lime Glow */

  /* Fonts (UPDATED) */
  --font-heading: "Playfair Display", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

/* --- 3. BASE & TYPOGRAPHY --- */
body {
  background-color: var(--lb-bg) !important;
  color: var(--lb-text-main) !important;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.lb-heading,
.lb-font-heading,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-family: var(--font-heading);
  color: var(--lb-text-main);
  font-weight: 900; /* Extra Bold untuk Playfair */
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  color: var(--lb-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--lb-primary-hover);
  text-shadow: 0 0 10px rgba(209, 254, 23, 0.6);
}

/* --- 4. HEADER & NAVIGATION --- */
.lb-navbar {
  background-color: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lb-border);
  padding: 1rem 0;
  z-index: 1070;
}

.lb-nav-link {
  color: var(--lb-text-main) !important;
  font-family: var(--font-body);
  font-weight: 600 !important; /* Sedikit lebih tebal untuk Plus Jakarta Sans */
  margin: 0 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover Line Animation */
.lb-nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--lb-primary);
  transition: width 0.3s;
}
.lb-nav-link:hover::after {
  width: 100%;
}
.lb-nav-link:hover {
  color: var(--lb-primary) !important;
}

/* --- BRAND / LOGO --- */
.navbar-brand {
  padding: 0;
  margin-right: 2rem;
}

.lb-logo-text {
  /* Ubah dari var(--font-heading) menjadi var(--font-body) */
  font-family: var(--font-body) !important;

  font-weight: 800; /* Tetap tebal */
  font-size: 1.8rem;

  /* Hapus atau ganti font-style: italic; menjadi normal agar tegak */
  font-style: normal;

  color: var(--lb-text-main);
  letter-spacing: -1px; /* Rapatkan sedikit biar padat */
  display: inline-flex;
  align-items: center;
}

.lb-logo-accent {
  color: var(--lb-primary);
  font-size: 2.5rem;
  line-height: 0;
  margin-left: 2px;
  text-shadow: 0 0 15px var(--lb-primary);
  font-style: normal;
}

/* Utility Buttons (Search/Cart) */
.lb-util-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lb-bg-alt);
  color: var(--lb-text-main);
  border-radius: 50%;
  border: 1px solid var(--lb-border);
  text-decoration: none;
  transition: 0.3s ease;
}
.lb-util-btn:hover {
  background: var(--lb-primary);
  color: var(--lb-text-inv); /* Icon jadi hitam */
  border-color: var(--lb-primary);
  box-shadow: var(--lb-shadow-glow);
}

.lb-cart-badge {
  background-color: var(--lb-primary) !important;
  color: var(--lb-text-inv) !important;
  border: 2px solid var(--lb-bg);
  font-weight: 800;
  font-family: var(--font-body);
}

/* --- 5. FOOTER STYLES --- */
.lb-footer {
  background-color: #050505;
  border-top: 1px solid var(--lb-border);
  padding: 80px 0 40px;
}
.lb-social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lb-bg-alt);
  color: var(--lb-text-main);
  border: 1px solid var(--lb-border);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.lb-social-link:hover {
  background-color: var(--lb-primary);
  color: var(--lb-text-inv);
  transform: translateY(-5px);
  box-shadow: var(--lb-shadow-glow);
}

/* --- 6. COMPONENT: CARDS --- */
.lb-card,
.lb-gallery-card {
  background: var(--lb-bg-alt);
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-card);
  transition: all 0.4s ease;
  overflow: hidden;
}
.lb-card:hover,
.lb-gallery-card:hover {
  border-color: var(--lb-primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.lb-img-container {
  background: #000;
  position: relative;
  overflow: hidden;
}
.lb-img-container img {
  transition: transform 0.5s ease;
}
.lb-card:hover img {
  transform: scale(1.05);
}

/* --- 7. COMPONENT: BUTTONS --- */
.btn,
.lb-btn-main,
.lb-btn-primary {
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--lb-radius-pill);
  padding: 14px 35px;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
  background-color: var(--lb-primary);
  color: var(--lb-text-inv) !important;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover,
.lb-btn-main:hover,
.lb-btn-primary:hover {
  background-color: var(--lb-primary-hover);
  box-shadow: var(--lb-shadow-glow);
  transform: scale(1.02);
  color: var(--lb-text-inv) !important;
}

.lb-btn-outline {
  background: transparent;
  border: 2px solid var(--lb-border);
  color: var(--lb-text-main) !important;
}
.lb-btn-outline:hover {
  border-color: var(--lb-primary);
  color: var(--lb-primary) !important;
}

/* --- 8. COMPONENT: FORMS --- */
.lb-input,
.form-control {
  background-color: var(--lb-bg-alt) !important;
  border: 1px solid var(--lb-border) !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  color: var(--lb-text-main) !important;
  font-family: var(--font-body);
  transition: all 0.3s;
}
.lb-input:focus,
.form-control:focus {
  border-color: var(--lb-primary) !important;
  background-color: #000 !important;
  box-shadow: 0 0 0 2px rgba(209, 254, 23, 0.3) !important;
  color: var(--lb-primary) !important;
}
::placeholder {
  color: #555 !important;
}

/* --- 9. UTILITIES --- */
.lb-font-sub {
  font-family: var(--font-body);
  color: var(--lb-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.lb-badge {
  background-color: var(--lb-bg-alt);
  color: var(--lb-text-main);
  border: 1px solid var(--lb-border);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.lb-divider {
  width: 100%;
  height: 1px;
  background: var(--lb-border);
  margin: 2rem 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--lb-bg);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--lb-primary);
}

/* --- 10. MODAL --- */
.modal-content {
  background-color: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
}
.btn-close {
  filter: invert(1);
}

/* --- 11. RESPONSIVE --- */
@media (max-width: 991px) {
  .display-1 {
    font-size: 3rem;
  }
  .display-2 {
    font-size: 2.5rem;
  }
  .lb-card {
    margin-bottom: 20px;
  }
}
