/*
Theme Name: Protxs
Theme URI: 
Author: Protxs Team
Author URI: 
Description: A WordPress theme converted from the static React site without any UI/UX changes.
Version: 1.0
License: 
License URI: 
Text Domain: protxs
Tags: adult, video, dark-mode
*/

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

:root {
  --bg: #0d0d0f;
  --surface: #161619;
  --surface2: #1e1e23;
  --border: rgba(255,255,255,0.07);
  --accent: oklch(55% 0.22 15);
  --gold: oklch(78% 0.16 85);
  --text: #f0f0f4;
  --muted: rgba(240,240,244,0.45);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --px: 32px;
}

@media (max-width: 768px) { :root { --px: 16px; } }
@media (max-width: 480px) { :root { --px: 12px; } }

html, body { height: 100%; background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; }
#root { display: flex; flex-direction: column; min-height: 100vh; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 4px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-accent {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow, rgba(200,40,40,0.35)); }
  50%       { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroKenBurns {
  0%   { transform: scale(1)    translateX(0);    filter: brightness(0.92); }
  100% { transform: scale(1.08) translateX(-2.5%); filter: brightness(1.05); }
}
@keyframes heroFadePulse {
  0%   { opacity: 0.85; }
  100% { opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeOut {
  to { opacity: 0; pointer-events: none; }
}

/* ── RESPONSIVE GRID ── */
.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .video-grid { grid-template-columns: 1fr; } }

.models-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1200px) { .models-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 900px)  { .models-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .models-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .models-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── HERO RESPONSIVE ── */
.hero-content { max-width: 60%; flex: 1; }
.hero-thumb   { width: 50%; }
.hero-h1      { font-size: 26px !important; }
.hero-btns    { flex-direction: row; }

@media (max-width: 650px) {
  .hero-wrap        { height: auto !important; min-height: 360px; }
  .hero-content     { max-width: 100% !important; padding: 32px var(--px) !important; }
  .hero-thumb       { width: 100% !important; }
  .hero-fade-desktop { display: none !important; }
  .hero-fade-mobile  { display: block !important; }
  .hero-btns        { flex-direction: column; }
}

/* ── PROFILE RESPONSIVE ── */
.profile-stats { grid-template-columns: repeat(4,1fr); }
@media (max-width: 640px) { .profile-stats { grid-template-columns: repeat(2,1fr); } }

.profile-info { flex-direction: row; align-items: flex-end; }
@media (max-width: 560px) {
  .profile-info { flex-direction: column; align-items: flex-start !important; }
}

/* ── BOTTOM NAV (mobile) ── */
.bottom-nav { display: none; }
@media (max-width: 640px) { .bottom-nav { display: flex; } }

/* hide desktop nav on mobile */
.desktop-nav { display: flex; }
@media (max-width: 640px) { .desktop-nav { display: none; } }

/* header search responsive */
@media (max-width: 640px) {
  .header-search { flex: 1; min-width: 0; }
  .header-search > div:first-child { width: 100% !important; }
}
@media (max-width: 480px) {
  .header-search > div:first-child input::placeholder { font-size: 12px; }
}

/* hide free badge text on very small */
.free-badge-text { display: inline; }
@media (max-width: 380px) { .free-badge-text { display: none; } }
