/* Ultra-Luxury Global Styles for King of Pawn */

:root {
  /* Hyper-Luxury Palette */
  --bg-dark: #02040a;      /* Void Black */
  --bg-card: rgba(10, 17, 40, 0.4); /* Translucent Deep Sapphire for Glass effect */
  --card-border: rgba(212, 175, 55, 0.15); /* Subtle gold border */
  --text-primary: #ffffff; /* Pure white */
  --text-muted: #94a3b8;   /* Silver-blue for secondary text */
  --gold-primary: #d4af37; /* Base Classic Gold */
  --blue-glow: rgba(30, 58, 138, 0.4); /* Sapphire aura glow */
  
  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', serif; /* Elegant heading font */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  /* Luxurious ambient lighting effects in the background */
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(30, 58, 138, 0.15), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.08), transparent 30%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* Metallic Gold Text Gradient for ultimate pop */
.highlight, .logo {
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fcd34d, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

/* Buttons - High End Look */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px; /* Pill shape for elegance */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
  color: #000;
  border: 1px solid #fcf6ba;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fcf6ba 0%, #d4af37 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.btn-outline {
  background-color: rgba(212, 175, 55, 0.05);
  color: #d4af37;
  border: 1px solid #d4af37;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: rgba(212, 175, 55, 0.15);
  color: #fcf6ba;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar .logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

/* Glassmorphism Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3.5rem 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px var(--blue-glow), 0 0 25px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(15, 23, 50, 0.7);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(to right, #bf953f, #fcf6ba);
  -webkit-background-clip: text;
  background-clip: text;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4rem;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

/* Make inline styles from HTML pop more */
strong {
  color: #ffffff;
  font-weight: 600;
}

/* Footer */
footer {
  background: linear-gradient(to bottom, transparent, #010205);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-col p, .footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  .nav-links { display: none; }
  .hero { min-height: 60vh; text-align: center; }
  .hero-content { margin: 0 auto; }
}
