/* Custom Styles for AMEE Envase Estelar 2026 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --amee-navy: #003366;
  --amee-navy-dark: #001f3f;
  --amee-navy-light: #0d4b88;
  --amee-orange: #F26522;
  --amee-orange-glow: rgba(242, 101, 34, 0.35);
  --amee-gold: #FFB800;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: #0b132b;
  color: #f1f5f9;
  min-height: 100vh;
}

/* Glassmorphism containers */
.glass-card {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 101, 34, 0.4);
  box-shadow: 0 12px 40px 0 rgba(242, 101, 34, 0.15);
}

.glass-header {
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient text */
.gradient-text-amee {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #F26522 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #FFE066 0%, #FFB800 50%, #F26522 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Pulsing Glow for Highlights */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px var(--amee-orange-glow);
  }
  50% {
    box-shadow: 0 0 30px rgba(242, 101, 34, 0.7);
  }
}

.glow-orange {
  animation: pulse-glow 3s infinite ease-in-out;
}

/* Star Rating Rating Selector */
.star-btn {
  transition: transform 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.star-btn:hover {
  transform: scale(1.25);
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0b132b;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #F26522;
}

/* High Contrast Printing Styling for PDF Export & Paper Print */
@media print {
  body {
    background: #ffffff !important;
    color: #0f172a !important;
  }
  .no-print {
    display: none !important;
  }
  .glass-card, div, section, article {
    background: #ffffff !important;
    color: #0f172a !important;
    border-color: #cbd5e1 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
  h1, h2, h3, h4, h5, h6, p, span, label, th, td {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    text-shadow: none !important;
  }
  .gradient-text-gold, .gradient-text-amee, .text-amber-400, .text-orange-400, .text-emerald-400 {
    color: #c2410c !important;
    -webkit-text-fill-color: #c2410c !important;
  }
  .bg-slate-900, .bg-slate-950, .bg-slate-900\/80, .bg-slate-900\/90, .bg-slate-900\/60 {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
  }
  table {
    border-collapse: collapse !important;
    width: 100% !important;
  }
  table th {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
  }
  table td {
    background: #ffffff !important;
    color: #1e293b !important;
    border: 1px solid #cbd5e1 !important;
  }
}
