/*
Theme Name: prmpt – Archive Collection
Theme URI: https://prmpt.fashion
Description: Full-screen scroll-driven fashion archive landing page with video hero, custom cursor, and gallery phase.
Version: 1.0.0
Author: prmpt
Author URI: https://prmpt.fashion
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prmpt-archive
Domain Path: /languages
*/

/* ─────────────────────────────────────────────────────────────────────────── */
/* prmpt Landing Page – Global Styles */
/* ─────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: white;
  font-family: 'Inter Tight', sans-serif;
}

/* Force cursor:none on desktop for custom cursor */
@media (min-width: 1024px) {
  body, * {
    cursor: none !important;
  }
}

/* mix-blend-mode: exclusion makes white text on white bg = black, white on black = white */
/* All fixed overlay elements use this for automatic contrast */

.bp-card {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .bp-card {
    will-change: auto;
  }
}

/* Remove default WordPress styles */
#wpadminbar {
  display: none;
}

.wp-block-* {
  display: none;
}
