/* AnyagcsereProfil.hu - Custom Styles & Google Ads Compliant Aesthetics */

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

:root {
  --primary-emerald: #059669;
  --primary-teal: #0d9488;
  --accent-amber: #d97706;
  --dark-obsidian: #090d16;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  overflow-x: hidden;
}

/* Background Gradients */
.bg-mesh-dark {
  background-color: #061118;
  background-image: 
    radial-gradient(at 0% 0%, rgba(13, 148, 136, 0.25) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(5, 150, 105, 0.2) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(15, 23, 42, 0.95) 0px, transparent 70%);
}

.bg-mesh-light {
  background-color: #f8fafc;
  background-image: 
    radial-gradient(at 10% 20%, rgba(16, 185, 129, 0.05) 0px, transparent 40%),
    radial-gradient(at 90% 80%, rgba(14, 165, 233, 0.05) 0px, transparent 40%);
}

/* Glassmorphism Classes */
.glass-obsidian {
  background: rgba(10, 20, 26, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Interactive Card Radio Selections */
.matrix-card {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.matrix-card:hover {
  transform: translateY(-2px);
  border-color: #0d9488;
  box-shadow: 0 10px 25px -5px rgba(13, 148, 136, 0.1);
}

.matrix-card.active {
  border-color: #0d9488;
  background-color: #f0fdfa;
  box-shadow: 0 4px 15px -2px rgba(13, 148, 136, 0.15);
}

.matrix-card.active .radio-indicator {
  border-color: #0d9488;
  background-color: #0d9488;
  box-shadow: inset 0 0 0 2px #ffffff;
}

/* Sliders Styling */
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 9999px;
  background: #cbd5e1;
  outline: none;
  transition: background 0.2s;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0d9488;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.4);
  border: 2px solid #ffffff;
  transition: transform 0.15s ease-in-out, background-color 0.15s;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #0f766e;
}

input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0d9488;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.4);
  border: 2px solid #ffffff;
}

/* SVG Gauge Animation */
#ahi-progress-circle {
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.4s ease;
}

/* Modal Backdrops */
.modal-backdrop {
  background-color: rgba(5, 10, 18, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Subtle Pulse */
@keyframes softPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

.pulse-subtle {
  animation: softPulse 3s infinite ease-in-out;
}

/* PDF Print Friendly Styling */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
  header, footer, #cookie-banner, .no-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  .shadow-2xl, .shadow-xl, .shadow-md {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}
