/* ======= VOLRANT BANK - Luxury Dark UI Style ======= */

body.luxury-theme {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0E0E0E;
  color: #EDEDED;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  margin: 0;
}

/* Header */
.lux-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1A1A1A;
  padding: 20px 40px;
  border-bottom: 1px solid #444;
}

.lux-header-left h1 {
  font-size: 28px;
}

.client-tier {
  font-size: 14px;
  color: #C0C0C0;
  display: block;
  margin-top: 4px;
}

.rek {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.btn-logout {
  background-color: #D4AF37;
  color: #0E0E0E;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-logout:hover {
  background-color: #b89630;
}

/* Layout Container */
.dashboard-container {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card Style */
.card {
  background-color: #1A1A1A;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

.card h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ccc;
  font-size: 14px;
}

.card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
}

/* Asset Summary */
.asset-summary .amount {
  font-size: 32px;
  font-weight: 600;
  margin: 12px 0 20px;
  color: #ffffff;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lux-btn {
  background-color: #D4AF37;
  color: #0E0E0E;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none; /* Ensure no underline for anchor tags */
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lux-btn:hover {
  background-color: #b89630;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.lux-btn:active {
  background-color: #a68a2a; /* Slightly darker for click feedback */
  transform: scale(0.95); /* Subtle scale-down effect on click */
  box-shadow: 0 1px 4px rgba(212, 175, 55, 0.2);
}

.lux-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.lux-btn:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
}

.lux-btn-secondary {
  background-color: transparent;
  color: #D4AF37;
  border: 1px solid #D4AF37;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.lux-btn-secondary:hover {
  background-color: #D4AF37;
  color: #0E0E0E;
}

.see-more {
  display: inline-block;
  margin-top: 12px;
  color: #D4AF37;
  text-decoration: underline;
  font-size: 14px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.9);
  max-width: 400px;
  width: 90%;
  color: #fff;
}

.modal-content input[type="number"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #555;
  background-color: #111;
  color: #eee;
  margin-bottom: 16px;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 768px) {
  .dashboard-container {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .lux-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .quick-actions {
    flex-direction: column;
  }
}

/* END */