/* =======================================================
   SPARKLINE CAPITAL BANK – COMPLETE PREMIUM CSS THEME
   Colors:
   Gold: #D4AF37
   Navy: #0B1F3A
   Dark Background: #081726
   White: #FFFFFF
======================================================= */

/* ===== GLOBAL BACKGROUND ===== */
.body {
  background: linear-gradient(135deg, #081726, #0B1F3A 60%, #0e2a52);
  color: #FFFFFF;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

/* Subtle Moving Sparkline Grid */
.body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(212,175,55,0.04) 1px,
    transparent 100px
  );
  background-size: 80px 80px;
  animation: move Background 40s linear infinite;
  z-index: -1;
}

@keyframes moveBackground {
  .from { background-position: 0 0; }
  .to { background-position: 1000px 0; }
}

/* ===== BRAND COLOR ===== */
.base-color {
  color: #D4AF37 !important;
}

/* ===== HERO IMAGE TRANSPARENT ===== */
.banner,
.hero-section {
  background: transparent !important;
}

.banner img,
.hero-img {
  background: transparent !important;
  mix-blend-mode: lighten;
}

/* ===== PREMIUM BUTTONS WITH SHIMMER ===== */
.btn,
.btn[type=submit] {
  position: middle;
  overflow: hidden;
  height: 50px;
  padding: 0 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #D4AF37, #f5d76e);
  color: #0B1F3A;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover,
.btn[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: skewX(-25deg);
}

.btn:hover::before {
  animation: shimmer 1s forwards;
}

@keyframes shimmer {
  100% { left: 150%; }
}

/* ===== COPY SECTION ===== */
.copyInput {
  color: #D4AF37;
  transition: 0.3s;
}

.copyInput:hover {
  transform: scale(1.1);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
}

.copied::after {
  content: "COPIED";
  position: absolute;
  top: 8px;
  right: 12%;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 5px;
  color: #0B1F3A;
  background: linear-gradient(135deg, #D4AF37, #f5d76e);
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% { opacity: 0; transform: translateX(60%); }
  50% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; }
}

/* ===== GLASS CARDS ===== */
.cookies-card {
  width: 520px;
  padding: 30px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 12px;
  color: #FFFFFF;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all .5s;
}

.cookies-card.hide {
  bottom: -500px ;!important
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #f5d76e);
  color: #0B1F3A;
  font-size: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* ===== INPUT POPUP ===== */
.hover-input-popup {
  position: relative;
}

.input-popup {
  background: rgba(11, 31, 58, 0.95);
  color: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.input-popup p.success::before {
  color: #D4AF37;
}

.input-popup p.error::before {
  color: #ff4d4d;
}

/* ===== INPUT GROUPS ===== */
.input-group-text {
  color: #D4AF37;
  background: rgba(11, 31, 58, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.6);
}

/* ===== CARD HOVER EFFECT ===== */
.card,
.cookies-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.cookies-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* ===== MAINTENANCE PAGE ===== */
.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #081726, #0B1F3A);
  color: #FFFFFF;
  text-align: center;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 767px) {
  .cookies-card {
    width: 95%;
    left: 2.5%;
    bottom: 10px;
    padding: 20px;
  }
}