/* Font di-host lokal (public/fonts) agar 100% offline-resilient di venue */
@import url('/css/fonts.css');

:root {
  /* Bank Jatim Islamic Luxury Brand Palette */
  --bj-red: #E30613;
  --bj-red-dark: #B80008;
  --bj-red-glow: rgba(227, 6, 19, 0.4);

  --bj-navy-deep: #060D15;
  --bj-navy: #0B1622;
  --bj-navy-card: #122133;
  --bj-navy-light: #1A2F48;

  --bj-emerald: #0A3C32;
  --bj-emerald-light: #10594B;
  --bj-emerald-glow: rgba(16, 89, 75, 0.35);

  --bj-gold: #DFB247;
  --bj-gold-light: #F7D788;
  --bj-gold-dark: #A98124;
  --bj-gold-glow: rgba(223, 178, 71, 0.35);

  --text-white: #FFFFFF;
  --text-muted: #9BB0C7;
  --text-dark: #1E293B;

  --border-gold: rgba(223, 178, 71, 0.3);
  --border-gold-solid: #DFB247;
  --border-glass: rgba(255, 255, 255, 0.12);

  --shadow-gold: 0 8px 32px rgba(223, 178, 71, 0.2);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.5);

  --font-title: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-arabic: 'Amiri', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bj-navy-deep);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Islamic Geometric Background Pattern */
.bg-islamic-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0.08;
  pointer-events: none;
  background-image: radial-gradient(var(--bj-gold) 1px, transparent 1px), radial-gradient(var(--bj-red) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

/* Luxury Glassmorphism */
.glass-panel {
  background: rgba(18, 33, 51, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  border-radius: 16px;
}

/* Gold Gradient Text */
.text-gold-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #F7D788 35%, #DFB247 70%, #AA8022 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Primary Button with Gold Shimmer */
.btn-gold {
  background: linear-gradient(135deg, #DFB247 0%, #C9982E 100%);
  color: #060D15;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--bj-gold-light);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px var(--bj-gold-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(223, 178, 71, 0.5);
  background: linear-gradient(135deg, #F7D788 0%, #DFB247 100%);
}

.btn-gold:active {
  transform: translateY(1px);
}

/* WhatsApp Share Primary Button (paling menonjol di pass) */
.btn-wa {
  background: linear-gradient(135deg, #2BE06F 0%, #1FA855 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid #25D366;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
  background: linear-gradient(135deg, #45EC85 0%, #25D366 100%);
}

.btn-wa:active {
  transform: translateY(1px);
}

.btn-red {
  background: linear-gradient(135deg, #E30613 0%, #B80008 100%);
  color: #FFFFFF;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--bj-red-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.6);
}

/* Inputs & Form Elements */
.input-luxury {
  width: 100%;
  padding: 14px 18px;
  background: rgba(11, 22, 34, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  outline: none;
}

.input-luxury:focus {
  border-color: var(--bj-gold);
  box-shadow: 0 0 0 3px rgba(223, 178, 71, 0.25);
  background: rgba(18, 33, 51, 0.9);
}

.input-luxury::placeholder {
  color: var(--text-muted);
}

/* ========================================================
   RESPONSIVE GLOBAL (berbagai ukuran layar)
   ======================================================== */
@media (max-width: 480px) {
  .glass-panel {
    border-radius: 14px;
  }
  .btn-gold {
    font-size: 0.95rem;
    padding: 13px 18px;
  }
  .btn-red {
    font-size: 0.9rem;
    padding: 11px 16px;
  }
}
