/* 1. GLOBAL SAFETY NETS & RESETS */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

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

/* Force icons to stay small across the site */
.brand img, .footer-brand img, .footer img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain;
}

/* 2. DESIGN TOKENS */
:root {
  --bg: #0b1220;
  --panel: rgba(255, 255, 255, 0.08);
  --panel2: rgba(255, 255, 255, 0.12);
  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.78);
  --brand: #5aa7ff;
  --brand-grad: linear-gradient(135deg, #5aa7ff, #7c5cff);
  --ring: rgba(90, 167, 255, 0.55);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --max: 1100px;
}

/* 3. BASE STYLES */
body {
  font-family: "Roboto", system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(122, 92, 255, 0.30), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(90, 167, 255, 0.25), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* 4. SHARED UTILITIES */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.glass {
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
  font-weight: 600;
}
.btn:hover { background: var(--panel2); transform: translateY(-1px); }
.btn-primary { background: var(--brand-grad); color: #0b1220; border: none; }

/* 5. LAYOUTS */
.grid-auto, .cards {
  display: grid !important;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.70);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

@media (min-width: 860px) {
  .hero { grid-template-columns: 1.15fr 1fr; }
}

/* 6. COMPONENT SPECIFICS */
.search-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  margin: 16px auto;
  max-width: 500px;
  /* Updated for better mobile visibility */
  background: var(--panel); 
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.search-wrap input {
  background: transparent;
  border: none;
  color: white;
  width: 100%;
  outline: none;
  font-size: 1rem;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(90, 167, 255, 0.2); /* Slightly brighter background */
  border: 1px solid rgba(90, 167, 255, 0.4);
  flex-shrink: 0;
}

/* This is the magic part that fixes the black icon */
.icon-box i {
  color: #ffffff !important; /* Forces the icon to be white */
  font-size: 1.25rem;
  filter: drop-shadow(0 0 8px rgba(90, 167, 255, 0.6)); /* Makes it "glow" slightly */
}

.menu-card {
  display: flex !important;
  align-items: center;
  gap: 15px;
  padding: 16px;
  width: 100%; 
  justify-content: flex-start;
  text-align: left;
}

.menu-card h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
}

.menu-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.video-wrap {
  width: 100%;
  max-width: 800px;
  margin: 20px 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* General fix for any icon that might still be black */
.fa-solid, .fa-brands {
  color: var(--text); /* Makes them match your light-colored text */
}