/* ==============================================
   DARK THEME – Aditya Landing Page
   This is the DEFAULT theme.
   The base design in style.css IS the dark theme.
   This file contains only dark-specific enhancements
   and overrides that reinforce the dark appearance.
   ============================================== */

/* ---- Dark theme body ---- */
[data-theme="dark"] body {
  background-color: #0a0a1400;
  color: #ffffff00;
}

/* ---- Navbar – dark reinforcement ---- */
[data-theme="dark"] .header .reva-navbar.scrolled {
  background: #152133 !important;
}

/* ---- Logo on dark background – ensure brightness ---- */
[data-theme="dark"] .aditya-logo {
  filter: brightness(1.05);
}

/* ---- Cards & Surfaces ---- */
[data-theme="dark"] .admission-card-form {
  background: rgba(255, 255, 255, 0.97) !important;
}

/* ---- Dark section backgrounds (already in style.css, reinforced here) ---- */
[data-theme="dark"] .study_at_reva_main_section {
  background-color: #152133;
}

[data-theme="dark"] .recruter_main_section {
  background-color: #152133;
}

[data-theme="dark"] .life_at_reva_main2 {
  background-color: #0f172a;
}

[data-theme="dark"] .reva-footer {
  background: #152133;
}

/* ---- Images in dark mode – boost slightly for dark bg ---- */
[data-theme="dark"] .accredited_main_slider .item img {
  filter: brightness(1.1);
}

[data-theme="dark"] .recruiter-partners_slider-logo li img {
  filter: brightness(1.05);
}

/* ---- How-to-apply icons – inverted to white (already in style.css) ---- */
[data-theme="dark"] .how_to_apply_content ul li img {
  filter: invert(1);
  -webkit-filter: invert(1);
}