/* ===== VOKEMARIL.INFO — MAIN STYLESHEET ===== */

:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --bg-dark: #0d1117;
  --bg-card: #161b22;
  --bg-card2: #1c2333;
  --text-main: #e6edf3;
  --text-muted: #8b949e;
  --border: #30363d;
  --success: #34d399;
  --danger: #f87171;
  --warning: #fbbf24;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

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

a { color: var(--primary-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

/* ===== NAVBAR ===== */
.site-navbar {
  background: rgba(13,17,23,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.site-navbar .navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main) !important;
  letter-spacing: -0.5px;
}

.site-navbar .navbar-brand span {
  color: var(--primary-light);
}

.site-navbar .nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: .5rem 1rem !important;
  border-radius: 8px;
  transition: all .2s;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--text-main) !important;
  background: rgba(124,58,237,0.15);
}

.navbar-toggler {
  border-color: var(--border) !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 520px;
  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: var(--primary-light);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: #fff;
  font-weight: 700;
  padding: .75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all .2s;
  cursor: pointer;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124,58,237,0.4);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
  font-weight: 700;
  padding: .7rem 1.8rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all .2s;
  cursor: pointer;
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== SECTION TITLES ===== */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: .75rem;
  color: var(--text-main);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

/* ===== REVIEW CARDS ===== */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(124,58,237,0.25);
  border-color: var(--primary);
}

.review-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.review-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.review-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.review-card .genre-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(124,58,237,0.85);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .2rem .6rem;
  border-radius: 4px;
}

.review-card .score-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bg-dark);
  border: 2px solid var(--success);
  color: var(--success);
  font-size: .9rem;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card .card-body {
  padding: 1.2rem;
}

.review-card .card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: .4rem;
}

.review-card .card-meta {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}

.review-card .card-meta span {
  margin-right: .75rem;
}

.review-card .card-excerpt {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.review-card .star-row {
  color: var(--warning);
  font-size: .85rem;
  margin-bottom: .75rem;
}

.review-card .read-more-btn {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary-light);
  border: 1px solid var(--primary);
  padding: .35rem .9rem;
  border-radius: 6px;
  transition: all .2s;
  display: inline-block;
}

.review-card .read-more-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius);
  padding: 3rem 2rem;
}

.newsletter-section .form-control {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .95rem;
}

.newsletter-section .form-control:focus {
  background: var(--bg-dark);
  border-color: var(--primary);
  color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}

.newsletter-section .form-control::placeholder {
  color: var(--text-muted);
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-section .form-label {
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .4rem;
}

.contact-section .form-control,
.contact-section .form-select {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: 8px;
  padding: .75rem 1rem;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
  background: var(--bg-dark);
  border-color: var(--primary);
  color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}

.contact-section .form-control::placeholder {
  color: var(--text-muted);
}

.contact-section .form-select option {
  background: var(--bg-dark);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/about-banner.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.3);
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform .2s, border-color .2s;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.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.8rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1rem;
}

.team-name {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: .2rem;
}

.team-role {
  font-size: .8rem;
  color: var(--primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ===== POLICY PAGES ===== */
.policy-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.policy-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-top: 2rem;
  margin-bottom: .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.policy-content ul {
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content a {
  color: var(--primary-light);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  z-index: 9999;
  padding: 1rem 0;
  display: none;
}

#cookie-banner.show {
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.footer-brand span {
  color: var(--primary-light);
}

.footer-desc {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: .5rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: .9rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-address {
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.7;
  font-style: normal;
}

.footer-divider {
  border-color: var(--border);
  margin: 2rem 0 1rem;
}

.footer-bottom {
  color: var(--text-muted);
  font-size: .8rem;
}

/* ===== ALERT / NOTIFICATION ===== */
.form-success-msg {
  display: none;
  background: rgba(52,211,153,0.15);
  border: 1px solid var(--success);
  color: var(--success);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-weight: 600;
}

.form-success-msg.show {
  display: block;
}

/* ===== BREADCRUMB ===== */
.page-breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.page-breadcrumb .breadcrumb-item a {
  color: var(--text-muted);
  font-size: .85rem;
}

.page-breadcrumb .breadcrumb-item.active {
  color: var(--primary-light);
  font-size: .85rem;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--border);
}

/* ===== FEATURED TAG ===== */
.featured-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .5rem;
}

/* ===== REVIEW DETAIL PAGE ===== */
.review-meta-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.score-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--success);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
}

.score-circle .score-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--success);
  line-height: 1;
}

.score-circle .score-label {
  font-size: .6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.criteria-row {
  margin-bottom: .75rem;
}

.criteria-label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: .25rem;
}

.criteria-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.criteria-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

/* ===== UTILITY ===== */
.text-accent { color: var(--accent) !important; }
.text-primary-light { color: var(--primary-light) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.bg-card { background: var(--bg-card) !important; }
.border-custom { border-color: var(--border) !important; }
.rounded-custom { border-radius: var(--radius) !important; }

.section-py { padding: 4rem 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section { min-height: 380px; }
  .stats-bar .stat-item { margin-bottom: 1.5rem; }
  .policy-content { padding: 1.5rem; }
  .contact-section { padding: 1.5rem; }
}
