/* Custom styles for smooth transitions and font */
body {
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light Mode Styles (Default) */
body.light {
    background-color: #f7fafc; /* Light background for body */
    color: #2d3748; /* Dark text for body */
}

body.light nav {
    background-color: #ffffff; /* White background for nav in light mode */
    color: #2d3748; /* Dark text for nav in light mode */
}

body.light .section-content {
    background-color: #ffffff; /* White background for sections in light mode */
    color: #2d3748; /* Dark text for sections in light mode */
}

/* Dark Mode Styles */
body.dark {
    background-color: #1a202c; /* Dark background for body */
    color: #e2e8f0; /* Light text for body */
}

body.dark nav {
    background-color: #2d3748; /* Darker background for nav in dark mode */
    color: #e2e8f0; /* Light text for nav in dark mode */
}

body.dark .section-content {
    background-color: #2d3748; /* Darker gray background for sections in dark mode */
    color: #e2e8f0; /* Light text for sections in dark mode */
}

/* Style for the active navigation link */
.nav-link.active {
    color: #3b82f6; /* Blue-500 */
    font-weight: 600; /* Semi-bold */
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.floating-report {
  animation: float 6s ease-in-out infinite;
  opacity: 0.12;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

/* Section 2 carousel custom styles */
#carousel-left, #carousel-right {
  transition: background 0.3s, box-shadow 0.3s;
  min-width: 300px;
}
#carousel-left:hover, #carousel-right:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 2;
}
.add-to-bag-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5em 1.5em;
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s;
}
.add-to-bag-btn:hover {
  background: #f3f4f6;
  color: #3b82f6;
  text-decoration: underline;
}
@media (max-width: 768px) {
  #carousel-left, #carousel-right {
    min-width: 100%;
  }
}

/* Section 1 custom styles */
.case-tag {
  display: inline-block;
  border: 2px solid #F9415A;
  color: #fff;
  background: transparent;
  border-radius: 9999px;
  padding: 0.25em 1em;
  font-size: 1rem;
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.08em;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  transition: background 0.2s, color 0.2s;
}
.case-tag:hover {
  background: #F9415A;
  color: #fff;
}

.case-btn {
  display: inline-block;
  background: #F9415A;
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  padding: 0.7em 2em;
  border-radius: 0.2em;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.case-btn:hover {
  background: #fff;
  color: #F9415A;
  border: 2px solid #F9415A;
}

.case-btn-outline {
  display: inline-block;
  border: 2px solid #F9415A;
  color: #F9415A;
  background: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  padding: 0.6em 2em;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
}
.case-btn-outline:hover {
  background: #F9415A;
  color: #86f1f1;
}

/* Orbitron font for digital/tech look */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

/* Section 1 custom styles */
.showcase-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #86b31c;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: color 0.3s;
}
body.light .showcase-title {
  color: #F9415A;
  text-shadow: none;
}
body.dark .showcase-title {
  color: #edf11a;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Section 3 Loader styles */
#section3 {
  background: #000 !important;
  color: #fff;
}
#loader-bar {
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
#illusion-container {
  background: rgba(0,0,0,0.85);
  transition: opacity 0.7s;
}
.illusion-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: contrast(1.2) brightness(1.1) saturate(1.2);
  transition: transform 1s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.7s;
  opacity: 0;
  transform: scale(0.7) rotate(-8deg);
}
#illusion-container.show .illusion-img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
#illusion-container.show .illusion-img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
/* Force Section 3 loader to be visible in all modes */
.loader-section,
#section3 {
  background: #000 !important;
  color: #fff !important;
  min-height: 100vh;
  position: relative;
}
#section3 * {
  color: #fff !important;
  font-family: 'Orbitron', 'Inter', monospace, sans-serif;
}
#loader-bar {
  background: #fff !important;
}
#loader-percentage {
  color: #fff !important;
}

#section4 {
  background: #f4f7fb !important;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}
#ripple-canvas {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  pointer-events: auto;
  background: transparent !important;
  z-index: 1;
}

#section5 {
  background: #fcf7f6 !important;
}