/* Global Theme & Aesthetics */

:root {
  /* Use golden color #F5A623 and rgba(245, 166, 35, ...) for accents */
  --color-accent: #F5A623 !important;
  --color-accent-light: #F5A623 !important;
  --color-accent-dark: #D48C1C !important;
  --color-accent-glow: rgba(245, 166, 35, 0.15) !important;
  --color-accent-gradient: linear-gradient(135deg, #F5A623, #F5A623) !important;
  --color-cta: #F5A623 !important;
  --color-cta-hover: #F5A623 !important;
  --color-cta-gradient: linear-gradient(135deg, #F5A623, #F5A623) !important;
  --color-star: #F5A623 !important;
  --primary-accent: #F5A623 !important;
  --premium-gradient: linear-gradient(135deg, #F5A623 0%, #F5A623 100%) !important;
  
  --bg-color: #000000;
  --text-color: #FFFFFF;
  
  /* Force Pure White Text */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #FFFFFF;
  --color-text-tertiary: #FFFFFF;
  --color-text-muted: #FFFFFF;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Premium Buttons */
.btn--primary, .btn--cta {
  background: var(--premium-gradient) !important;
  border: none !important;
  color: #111111 !important;
  font-weight: bold !important;
}

/* Gradient Text */
.gradient-text {
  background: var(--premium-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Particles JS Container */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

/* Card UI - Frosted Glass & Hover Glow */
.card {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

.card:hover {
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.3) !important;
  transform: translateY(-5px) !important;
}

/* Search Styles */
.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto 30px auto;
}
.search-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 30px;
  border: 2px solid var(--primary-accent);
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 1rem;
}
.search-input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  margin-top: 10px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  text-align: left;
}
.search-result-item {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid #222;
}
.search-result-item:hover {
  background: #222;
}
.search-result-item:last-child {
  border-bottom: none;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  z-index: 1000;
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 8px;
  overflow: hidden;
  top: 100%;
  left: -20px;
}
.dropdown-content a {
  color: #FFFFFF !important;
  padding: 12px 16px !important;
  text-decoration: none !important;
  display: block !important;
  font-size: 0.9rem !important;
  border-bottom: 1px solid #222;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.dropdown-content a::after {
  display: none !important;
}
.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  background-color: #222;
  color: #F5A623 !important;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.nav-links {
  align-items: center;
}
.dropbtn {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  cursor: pointer;
}
.dropdown:hover .dropbtn {
  color: #F5A623;
}

/* Force Pure White Text for Contrast */
body, p, li, span:not(.star):not(.star--empty):not(.logo-icon):not(.gradient-text), .article-content, .review-content, .card-excerpt, .section-subtitle, .about-mission-text {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

/* Ensure Headings are Pure White (except gold gradients) */
h1:not(.gradient-text), h2:not(.gradient-text), h3:not(.gradient-text) {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  gap: 20px;
}
.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-content a {
  color: #F5A623;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
