/* ============================================
   MICHEL PHOTOGRAPHY — PREMIUM EFFECTS
   Custom cursor, spotlight, scroll progress,
   section transitions, gold shimmer text
   ============================================ */

/* ============================================
   CUSTOM CURSOR
   ============================================ */
* { cursor: none !important; }

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease),
              opacity 0.15s var(--ease);
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              width 0.3s var(--ease),
              height 0.3s var(--ease),
              opacity 0.3s var(--ease),
              border-color 0.3s var(--ease);
}

.cursor-ring.hover {
  width: 54px;
  height: 54px;
  border-color: rgba(201,169,110,0.8);
  background: rgba(201,169,110,0.04);
}

.cursor-ring.clicking {
  transform: translate(-50%, -50%) scale(0.85);
}

/* Hide cursor on touch devices */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  * { cursor: auto !important; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--clr-accent-2), var(--clr-accent), #e8d5a3);
  z-index: 10300;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(201,169,110,0.5);
  transition: width 0.1s linear;
}

/* ============================================
   MOUSE SPOTLIGHT
   Subtle warm light that follows mouse on sections
   ============================================ */
.spotlight-section {
  position: relative;
  overflow: hidden;
}

.spotlight-layer {
  position: absolute;
  inset: 0;
  pointer-events: none !important;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(201,169,110,0.04) 0%,
    transparent 60%
  );
  z-index: 0;
  transition: background 0.1s;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.spotlight-section:hover .spotlight-layer {
  opacity: 1;
}

/* ============================================
   GOLD SHIMMER TEXT
   Apply to hero title or section headings
   ============================================ */
.shimmer-text {
  background: linear-gradient(
    105deg,
    var(--clr-accent) 0%,
    #e8d5a3 30%,
    var(--clr-accent) 50%,
    #a07840 70%,
    var(--clr-accent) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ============================================
   SECTION REVEAL — line wipe
   ============================================ */
.section-label {
  position: relative;
  overflow: hidden;
}

.section-label::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-bg);
  transform: translateX(-101%);
  transition: transform 0.6s var(--ease);
}

/* ============================================
   IMAGE HOVER LIFT
   ============================================ */
.img-hover-lift {
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}

.img-hover-lift:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5),
              0 0 0 1px rgba(201,169,110,0.1);
}

/* ============================================
   GOLD BORDER GLOW — for cards / wrappers
   ============================================ */
.gold-border {
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow: 0 0 0 0 rgba(201,169,110,0);
  transition: border-color var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}

.gold-border:hover {
  border-color: rgba(201,169,110,0.35);
  box-shadow: 0 0 30px rgba(201,169,110,0.08),
              inset 0 0 30px rgba(201,169,110,0.02);
}

/* ============================================
   HORIZONTAL MARQUEE STRIP (optional use)
   ============================================ */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 1rem 0;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--clr-border);
  user-select: none;
}

.marquee-sep {
  color: var(--clr-accent);
  opacity: 0.4;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PAGE TRANSITION FADE
   ============================================ */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99990;
  pointer-events: none !important;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.page-transition-overlay.active {
  opacity: 1;
  /* pointer-events: none — still never block, transition is visual only */
}

/* ============================================
   FAQ BUG FIX — ensure + icon not clipped
   ============================================ */
.faq-section.spotlight-section,
.faq-item,
.faq-question {
  overflow: visible !important;
}

.faq-section .spotlight-layer {
  overflow: hidden;
}
