/*
Theme Name: Marcus Rogers Portfolio
Theme URI: https://marcusrogers.design
Author: Premium Design Specialist
Description: A highly interactive, bespoke cinematic portfolio theme styled with Tailwind and GSAP. Features immersive 3D parallax elements, buttery smooth state transitions, responsive grids, and an interactive brand blueprint workshop.
Version: 1.0.0
License: GNU GPLv2 or later
Text Domain: marcus-rogers
*/

/* Core Theme Base Resets & Custom Classes */
html, body {
  background-color: #000000;
  color: #FFFFFF;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Custom interactive grain effect to emulate high-fashion photographic textures */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  opacity: 0.05;
  pointer-events: none;
  z-index: 99;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Webkit scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #4C4C4C;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D6FF97;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Custom inputs range appearance */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D6FF97;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(214, 255, 151, 0.5);
  transition: transform 0.25s, background-color 0.25s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: #FFFFFF;
}

/* Modal and layout transitions default fallback */
.modal-overlay {
  transition: opacity 0.4s ease, visibility 0.4s;
}
.modal-content {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
