/* style.css */

/* Basic Setup & Fonts */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8fafc; /* light gray background */
  color: #4a4a4a;
}

html {
  scroll-behavior: smooth;
}

/* Dark Section Styling */
.dark-section {
  background-color: #0d1b3f;
  color: #ffffff;
}

/* Universal Section Title */
.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #9333ea);
}

.dark-section .section-title {
  color: #ffffff;
}

.dark-section .section-title::after {
  background: linear-gradient(90deg, #60a5fa, #c084fc);
}

/* FAQ Details/Summary Styling */
details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

details[open] summary .fa-chevron-up {
  display: inline-block;
}

details[open] summary .fa-chevron-down {
  display: none;
}

details summary .fa-chevron-up {
  display: none;
}

/* Menu Overlay Transition */
#menu-overlay {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Lazy Loading Animation */
.lazy-load {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lazy-load.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Preloader Styles */
#preloader {
  position: fixed;
  inset: 0;
  background-color: #0d1b3f;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#preloader .logo-loader {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Privacy Policy Page Specific Styles */
.policy-content h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1e293b;
}
.policy-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #334155;
}
.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.policy-content ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

#brands-container img {
  filter: none !important;
  opacity: 1 !important;
}