/* 🌐 Global Styles */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* 📌 Section Layouts */
.section {
  height: 100vh;
  text-align: center;
  color: #fff;
}

.hero {
  background: linear-gradient(135deg, #000, #222);
}

.about {
  background: #111;
}

.contact {
  background: #222;
}

/* 🎬 Hero Section */
.hero-section {
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Glassmorphic gradient background */
  background: linear-gradient(135deg, #0a3659, #ad3209, #111);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;

  /* Custom padding */
  padding-top: 200px;   /* Extra breathing space at the top */
  padding-bottom: 70px; /* Smaller space at the bottom */
}

/* Gradient animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Optional frosted overlay for cinematic depth */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1;
}

/* Ensure hero content stays above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 0 20px #fff, 0 0 40px #000;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 10px;
  opacity: 0.8;
}

/* 🔍 Search Input */
.search-input {
  width: 300px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: #fff;
  opacity: 0.7;
}

.search-input:focus {
  outline: none;
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 15px #fff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .search-input { width: 100%; margin-bottom: 0.5rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.9rem; }
}


/* Gradient background for the carousel section */
#movieCarousel {
  background: linear-gradient(135deg, #1a1a1a, #2c2c54, #1a1a1a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  border-radius: 8px;
  padding: 20px;
}

/* Animated gradient keyframes */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Fade-in effect for cards */
.card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card img {
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  border-radius: 6px;
}

/* Hover zoom + glow effect */
.card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  cursor: pointer;
}

/* Poster image subtle zoom */
.card img {
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.08);
}

/* Title glow effect */
.card:hover .card-title {
  color: #ffd700; /* golden highlight */
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}
.card:hover::after {
  opacity: 1;
}


/* 🎥 Navbar */
.gang-navbar {
  height: 150px; /* thin navbar */
  padding: 0 2rem;
  display: flex;
  align-items: center;       /* vertically center items */
  justify-content: space-between; /* space between left links, logo, right links */
  
  /* Glassmorphism background */
  background: rgba(255, 255, 255, 0.2); /* translucent */
  backdrop-filter: blur(10px);          /* frosted glass effect */
  -webkit-backdrop-filter: blur(10px);  /* Safari support */
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* Logo */
.logo-img {
  height: 150px; /* large logo */
  filter: drop-shadow(0px 10px 25px rgba(0,0,0,0.6)); /* permanent shadow */
  transition: transform 0.4s ease;
  width: auto;
}

.logo-img:hover {
  transform: scale(1.05); /* subtle hover effect */
}

/* Navbar Links */
.gang-navbar .nav-link {
  color: #fff; /* dark text for light translucent background */
  margin: 0 20px;
  font-weight: 600;
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.gang-navbar .nav-link:hover {
  color: #ff551c;
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255,255,255,0.8); /* glow/drop shadow effect */
}

/* 📂 Dropdowns */
.dropdown-menu {
  background: rgba(255,255,255,0.85); /* translucent dropdown */
  border: 1px solid rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
}

.dropdown-item {
  color: #000;
}

.dropdown-item:hover {
  background: rgba(255,255,255,1);
  color: #000;
  box-shadow: 0 0 10px rgba(255,255,255,0.8); /* glow effect */
}

/* Footer Section */
#footer {
  width: 100%;
  background: linear-gradient(135deg, #0a3659, #ad3209, #111);
  background-size: 300% 300%;
  animation: footerGradient 20s ease infinite;
}

/* Gradient animation keyframes */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Footer with animated gradient */
.site-footer {
  background: linear-gradient(-45deg, #0a3659, #ad3209, #111, #db9f37);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  color: #f0f0f0;
  padding: 40px 20px;
}

.site-footer a {
  color: #f0f0f0;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}


/* Columns */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 0 15px;
}

.footer-column h5 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.footer-column a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 6px 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
  text-shadow: 0 0 8px #fff;
}

/* Social links */
.social-links {
  margin-top: 10px;
}
.social-links a {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover {
  color: #ff551c;
  transform: scale(1.2);
}

/* Bottom copyright */
.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Suggestions Dropdown */
#suggestions {
  position: absolute;              /* float below input */
  top: 100%;                       /* directly under input group */
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0); /* dark translucent background */
  border-radius: 8px;
  overflow: hidden;
  max-height: 300px;               /* limit height */
  overflow-y: auto;                /* scroll if too many */
  box-shadow: 0 8px 20px rgba(0,0,0,0);
}

/* Each suggestion item */
#suggestions .list-group-item {
  background: transparent;
  color: #fff;                     /* white text */
  border: none;
  padding: 12px 16px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect */
#suggestions .list-group-item:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;                  /* accent color */
  cursor: pointer;
}

/* Links inside suggestions */
#suggestions .list-group-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0); /* dark translucent background */
  border-radius: 8px;
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  color: #fff; /* ensure text is white */
}

#suggestions li {
  cursor: pointer;
}

/* Disabled input styling */
.disabled-input {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  cursor: not-allowed;
}


/* About Us Section */
.about-section {
  position: relative;
  padding: 60px 40px;
  color: #fff;
  background: linear-gradient(135deg, #111, #ad3209, #0a3659);
  background-size: 300% 300%;
  animation: aboutGradient 20s ease infinite;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
}

@keyframes aboutGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #fff, 0 0 40px #000;
}

.about-subtitle {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #fff;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards layout */
.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.about-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff; /* accent color */
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.about-card p {
  font-size: 1.2rem;
  opacity: 0.85;
  line-height: 1.4;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* Hero Cards */
.hero-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-card {
  flex: 1 1 200px;
  max-width: 220px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-card h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
}

.suggestion-list {
  max-height: 300px; /* scrollable area */
  overflow-y: auto;
  position: relative;
}

.view-all-sticky {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  padding: 8px;
  z-index: 10;
}

.view-all-sticky a {
  color: #00e0ff;
  font-weight: 600;
  text-decoration: none;
}

.view-all-sticky a:hover {
  color: #ff551c;
  text-shadow: 0 0 8px #fff;
}

/* NavBar Button CSS */
.btn-signup, .btn-login {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Sign Up button */
.btn-signup {
  background: rgba(255,255,255,0.1);
  color: #00e0ff;
  border: 1px solid #0a3659;
}

.btn-signup:hover {
  background: rgba(0,224,255,0.2);
  color: #fff;
  box-shadow: 0 0 12px #0a3659;
}

/* Login button */
.btn-login {
  background: rgba(255,255,255,0.1);
  color: #ff551c;
  border: 1px solid #ff551c;
  margin-left: 10px;
}

.btn-login:hover {
  background: rgba(255,85,28,0.2);
  color: #fff;
  box-shadow: 0 0 12px #ff551c;
}

/* Social Media NavBar */
/* Navbar styling */
    .navbar {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .nav-link {
      color: #fff !important;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #ff551c !important;
    }

    .break-margin {
      margin-bottom: 1px; /* Adds 1px of invisible space below */
    }

    /* Movie HTML CSS */


/* Animated background for movie section */

.movie-details {
  /* margin-top: 300px; ensures it sits below navbar/hero */
  padding-top: 150px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  background: linear-gradient(-45deg, #0a3659, #ad3209, #111, #db9f37);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  color: #f0f0f0;
}

/* Modifier for compact section */
.movie-details.compact {
  padding: 10px 10px;
}

/* Modifier for spacious section */
.movie-details.spacious {
  padding: 150px 30px;
}

/* Person Page CSS */
.person-details {
  /* margin-top: 350px; ensures it sits below navbar/hero */
  padding-top: 200px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  background: linear-gradient(-45deg, #0a3659, #ad3209, #111, #db9f37);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  color: #f0f0f0;
}

/* Boxoffice Page CSS */
.boxoffice {
  /* margin-top: 350px; ensures it sits below navbar/hero */
  padding-top: 150px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  background: linear-gradient(-45deg, #0a3659, #ad3209, #111, #db9f37);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  color: #f0f0f0;
}


/* Gradient animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glassmorphic card */
.detail-card {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(255,85,28,0.3);
  animation: fadeInUp 1.2s ease;
}

/* Title + tagline */
.movie-title {
  font-size: 2.5rem;
  color: #ff551c;
  text-shadow: 0 0 15px rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.movie-tagline {
  font-size: 1.2rem;
  color: #db9f37;
  font-style: italic;
  margin-bottom: 20px;
}

/* Text + links */
.detail-card p {
  font-size: 1rem;
  margin: 10px 0;
}

.detail-card strong {
  color: #ff551c;
}

.detail-card a {
  color: #00e0ff;
  text-decoration: none;
}

.detail-card a:hover {
  text-decoration: underline;
  color: #ff551c;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.movie-title {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(255,85,28,0.7);
}

.movie-tagline {
  font-size: 1.2rem;
  color: #db9f37;
  font-style: italic;
  text-shadow: 0 0 15px rgba(255,255,255,0.7);text-shadow: #fff;
}

.poster-img {
  max-height: 500px;
  object-fit: cover;
  border: 4px solid #ff551c;
}

.nav-tabs .nav-link {
  color: #fff;
}
.nav-tabs .nav-link.active {
  background-color: #ff551c;
  color: #111;
}

.card {
  border: none;
}
.card-title {
  color: #ff551c;
}
.adsense-placeholder {
  font-size: 1rem;
  opacity: 0.8;
}

.cast-img {
  width: 100%;
  height: 250px;          /* fixed height for uniformity */
  object-fit: cover;      /* crop/scale to fit nicely */
  border-radius: 8px;     /* rounded corners */
  box-shadow: 0 4px 8px rgba(0,0,0,0.5); /* subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cast-img:hover {
  transform: scale(1.05); /* zoom effect */
  box-shadow: 0 8px 16px rgba(0,0,0,0.7); /* stronger shadow */
}

.cast-card {
  border: none;           /* cleaner look */
  background-color: #1c1c1c;
}

.card-text a {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

/* ===========================
   🎬 Movie Carousel Section Styling
   =========================== */
.movie-carousel-section {
  position: relative;
  background: linear-gradient(135deg, #0a3659, #ad3209, #111);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  padding: 100px 3rem 20px 3rem; /* Top 100px, bottom 20px */
  border-top: 0.5px solid #fff;
  overflow: hidden;
}

/* 🎬 Translucent Carousel Container */
#movieCarousel {
  background: rgba(0, 0, 0, 0.00);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

/* Section titles */
.movie-carousel-section h4 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(255,255,255,0.9); /* White glow shadow */
  animation: fadeSlideScaleIn 1s ease forwards;
}

/* ===========================
   Movie Cards Styling
   =========================== */
.movie-carousel-section .card {
  border: none;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeSlideScaleIn 0.8s ease forwards;

  /* Uniform card size */
  width: 260px;   /* Slightly wider */
  height: 440px;  /* Slightly taller */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.movie-carousel-section .card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* Portrait movie images */
.movie-carousel-section .card-img-top {
  width: 100%;
  height: 340px;          /* Increased height for larger posters */
  object-fit: contain;    /* Show full image without cropping */
  border-radius: 6px;
  background-color: rgba(0,0,0,0.3);
  z-index: 2;
}

/* Card body (movie name + revenue) */
.movie-carousel-section .card-body {
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
  flex-grow: 1;
}

.movie-carousel-section .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.movie-carousel-section .card-text {
  font-size: 1rem;
  font-weight: 600;
  color: #ffc107; /* Gold for revenue */
}

/* ===========================
   Grid Layout (4 per row)
   =========================== */
.movie-carousel-section .row-cols-md-4 > .col {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  justify-content: center;
}

/* ===========================
   Carousel Controls
   =========================== */
.movie-carousel-section .carousel-control-prev-icon,
.movie-carousel-section .carousel-control-next-icon {
  filter: invert(100%) brightness(250%);
  width: 3rem;
  height: 3rem;
}

.movie-carousel-section .carousel-control-prev,
.movie-carousel-section .carousel-control-next {
  opacity: 1;
}

/* ===========================
   Badges Styling
   =========================== */
.movie-carousel-section .badge {
  font-size: 0.8rem;
  padding: 0.4em 0.6em;
  border-radius: 6px;
}

/* ===========================
   Animations
   =========================== */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeSlideScaleIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Staggered delays */
.movie-carousel-section .col:nth-child(1) .card { animation-delay: 0.1s; }
.movie-carousel-section .col:nth-child(2) .card { animation-delay: 0.2s; }
.movie-carousel-section .col:nth-child(3) .card { animation-delay: 0.3s; }
.movie-carousel-section .col:nth-child(4) .card { animation-delay: 0.4s; }
.movie-carousel-section .col:nth-child(5) .card { animation-delay: 0.5s; }
.movie-carousel-section .col:nth-child(6) .card { animation-delay: 0.6s; }
.movie-carousel-section .col:nth-child(7) .card { animation-delay: 0.7s; }
.movie-carousel-section .col:nth-child(8) .card { animation-delay: 0.8s; }

/* ===========================
   Responsive Adjustments
   =========================== */
@media (max-width: 768px) {
  .movie-carousel-section .card {
    width: 180px;   /* Shrink width on tablets */
    height: 300px;
  }
  .movie-carousel-section .card-img-top {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .movie-carousel-section .card {
    width: 150px;   /* Shrink further on mobile */
    height: 260px;
  }
  .movie-carousel-section .card-img-top {
    height: 190px;
  }
  .movie-carousel-section .card-title {
    font-size: 0.85rem;
  }
  .movie-carousel-section .card-text {
    font-size: 0.8rem;
  }
}

/* ===========================
   Filter Labels (Country, Language, Showing movies in Hindi)
   =========================== */
.filter-label {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255,255,255,0.9); /* White glow shadow */
  margin-right: 0.5rem;
  transition: text-shadow 0.3s ease;
}

/* Hover pulse glow */
.filter-label:hover {
  text-shadow: 0 0 12px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,0.8);
}

/* ===========================
   Filter Dropdowns / Inputs (Glass effect, readable text)
   =========================== */
.filter-select,
.filter-input {
  background: rgba(0,0,0,0.4);       /* Dark translucent background */
  backdrop-filter: blur(6px);        /* Glass blur */
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;                       /* White text */
  padding: 0.5rem 1rem;
  text-shadow: 0 0 6px rgba(255,255,255,0.8); /* White glow for readability */
  transition: all 0.3s ease;
  appearance: none;                  /* Remove default browser styling */
}

/* Focus state */
.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: #ffc107; /* Gold accent */
  box-shadow: 0 0 12px rgba(255,193,7,0.6);
}

/* Dropdown options */
.filter-select option {
  background: #111;   /* Dark background for options */
  color: #fff;        /* White text inside options */
}


/* ===========================
   Apply Button (Glass + Glow)
   =========================== */
.filter-button {
  background: rgba(255,193,7,0.2); /* Gold translucent */
  backdrop-filter: blur(6px);
  border: 1px solid #ffc107;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255,255,255,0.9);
  padding: 0.5rem 1.2rem;
  transition: all 0.3s ease;
}

.filter-button:hover {
  background: rgba(255,193,7,0.4);
  box-shadow: 0 0 15px rgba(255,193,7,0.7);
}