/* emonix/css/style.css */

/* =========================
   GOOGLE FONT
========================= */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-color: #d4a017;
  --primary-dark: #b8860b;
  --secondary-color: #ffb347;
  --bg-color: #fffaf2;
  --text-color: #2c2c2c;
}

body {
  background: var(--bg-color);
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
}

/* =========================
   NAVBAR
========================= */

.navbar {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  ) !important;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 1px;
}

.nav-link {
  color: white !important;
  font-weight: 600;
}

.nav-link:hover {
  opacity: 0.85;
}

/* =========================
   CARD
========================= */

.card-custom {
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  background: white;
}

/* =========================
   HERO SECTION
========================= */

.bg-primary {
  background: linear-gradient(135deg, #d4a017, #ffb347) !important;
}

/* =========================
   BUTTON
========================= */

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );

  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-light {
  color: var(--primary-dark);
  font-weight: 700;
}

/* =========================
   SECTION TITLE
========================= */

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
}

/* =========================
   HEADINGS
========================= */

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

h4,
h5,
h6 {
  font-weight: 600;
}

/* =========================
   BORDER BOX
========================= */

.border {
  border: 1px solid rgba(212, 160, 23, 0.25) !important;
}

/* =========================
   LIST GROUP
========================= */

.list-group-item {
  border: 1px solid rgba(212, 160, 23, 0.15);
  padding: 14px 18px;
  font-weight: 500;
}

/* =========================
   LIGHT BOX
========================= */

.bg-light {
  background: #fff6e5 !important;
}

/* =========================
   FOOTER / PENUTUP
========================= */

/* TAMBAHKAN DI style.css */

/* =========================
   FOOTER
========================= */

.footer {
  background: linear-gradient(135deg, #8b6508, #d4a017);

  color: white;

  padding-top: 60px;
  padding-bottom: 30px;

  margin-top: 80px;
}

.footer-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: 0.3s;
}

.footer-menu a:hover {
  color: white;
  padding-left: 5px;
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.bg-dark {
  background: linear-gradient(135deg, #8b6508, #d4a017) !important;
}

/* =========================
   TEXT COLOR
========================= */

.text-primary {
  color: var(--primary-dark) !important;
}

.text-success {
  color: #c58b00 !important;
}

/* =========================
   PARAGRAPH
========================= */

p {
  line-height: 1.8;
  font-weight: 500;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .page-title {
    font-size: 22px;
  }

  h1 {
    font-size: 32px;
  }
}
