/* MansFokus Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --primary-dark: #0f172a;
  --primary-navy: #1e293b;
  --accent-green: #15803d;
  --accent-light-green: #22c55e;
  --accent-gold: #d97706;
  --accent-warm: #f59e0b;
  --bg-slate: #f8fafc;
  --text-main: #334155;
  --text-dark: #0f172a;
  --border-light: #e2e8f0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, .font-serif-heading {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Custom Navigation Blur */
.header-glass {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Certificate Badge & Modal Styling */
.cert-badge {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(21, 128, 61, 0.15);
}

/* Custom Interactive Quiz Styling */
.quiz-option-card {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.quiz-option-card:hover {
  border-color: var(--accent-light-green);
  background-color: #f0fdf4;
}

.quiz-option-card.selected {
  border-color: var(--accent-green);
  background-color: #ecfdf5;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}

/* Footer & Disclaimers */
.disclaimer-box {
  background-color: #f1f5f9;
  border-left: 4px solid #94a3b8;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #64748b;
}

/* Cookie Banner Styling */
#cookie-banner {
  box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.1), 0 -8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Floating Action Button for Quiz / Consult */
.pulse-glow {
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
