/* ===== NAVUREX.INFO — Main Stylesheet ===== */
:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --accent: #06b6d4;
  --dark: #0f0f1a;
  --dark2: #16162a;
  --dark3: #1e1e35;
  --card-bg: #1a1a2e;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(124,58,237,0.25);
  --radius: 12px;
}

* { box-sizing: border-box; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #67e8f9; text-decoration: underline; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(15,15,26,0.97) !important;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff !important;
}
.navbar-brand span { color: var(--primary); }
.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background: rgba(124,58,237,0.15);
}
.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { filter: invert(1); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(124,58,237,0.25);
  border: 1px solid var(--primary);
  color: #c4b5fd;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 560px;
  margin-bottom: 2rem;
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  cursor: pointer;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124,58,237,0.5);
  color: #fff;
  text-decoration: none;
}
.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--primary);
  color: #c4b5fd;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ===== REVIEW CARDS ===== */
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.3);
}
.review-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.review-card-body { padding: 1.5rem; }
.genre-tag {
  display: inline-block;
  background: rgba(124,58,237,0.2);
  color: #c4b5fd;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.review-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.review-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.star-rating { color: #fbbf24; font-size: 0.9rem; }
.score-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-left: 0.5rem;
}
.read-more-btn {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.read-more-btn:hover { color: #67e8f9; text-decoration: none; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3.5rem;
}
.newsletter-section h2 { font-size: 2rem; font-weight: 800; color: #fff; }
.newsletter-section p { color: var(--text-muted); }
.form-control-dark {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  width: 100%;
}
.form-control-dark:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
  color: #fff;
}
.form-control-dark::placeholder { color: #64748b; }

/* ===== CONTACT FORM ===== */
.contact-section { background: var(--dark2); }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-card label { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.4rem; display: block; }
.form-alert {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 600;
}
.form-alert.success {
  background: rgba(16,185,129,0.15);
  border: 1px solid #10b981;
  color: #6ee7b7;
}
.form-alert.error {
  background: rgba(239,68,68,0.15);
  border: 1px solid #ef4444;
  color: #fca5a5;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-bottom: 1px solid var(--border);
  padding: 5rem 0 4rem;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1rem;
}
.team-card h5 { color: #fff; font-weight: 700; margin-bottom: 0.25rem; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
}
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.policy-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #c4b5fd;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.policy-content p, .policy-content li { color: var(--text-muted); }
.policy-content ul { padding-left: 1.5rem; }
.policy-content a { color: var(--accent); }
.policy-date {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid var(--border);
  color: #c4b5fd;
  font-size: 0.82rem;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}
.footer-brand { font-size: 1.4rem; font-weight: 800; color: #fff; }
.footer-brand span { color: var(--primary); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; max-width: 280px; }
.footer-heading { color: #fff; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark3);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: none;
}
.cookie-bar p { margin: 0; color: var(--text-muted); font-size: 0.88rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 75vh; }
  .newsletter-section { padding: 2rem; }
  .contact-card { padding: 1.5rem; }
}
