/*
Theme Name: FlexyCams Model
Theme URI: https://example.com/
Author: FlexyCams
Description: Reusable WordPress theme for independent model websites connected to FlexyCams.
Version: 0.1.0
Requires at least: 6.4
Requires PHP: 8.1
Text Domain: flexycams-model
*/

:root {
  --fc-bg: #0d0d10;
  --fc-card: #17171c;
  --fc-card-2: #202028;
  --fc-text: #f7f7f8;
  --fc-muted: #a6a6b0;
  --fc-accent: #f1c84b;
  --fc-border: rgba(255,255,255,.10);
  --fc-radius: 20px;
  --fc-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--fc-bg);
  color: var(--fc-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.fc-wrap { width: min(calc(100% - 32px), var(--fc-max)); margin-inline: auto; }
.fc-site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(13,13,16,.85); border-bottom: 1px solid var(--fc-border); }
.fc-header-inner { min-height: 72px; display: flex; align-items: center; gap: 24px; }
.fc-brand { font-weight: 800; letter-spacing: -.03em; font-size: 1.15rem; margin-right: auto; }
.fc-nav { display: flex; align-items: center; gap: 20px; color: #dedee3; }
.fc-nav a:hover { color: #fff; }
.fc-button, .wp-element-button, input[type=submit], button.fc-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 12px 20px; font-weight: 800;
  background: var(--fc-accent); color: #17140a; cursor: pointer;
}
.fc-button--ghost { background: transparent; color: var(--fc-text); border: 1px solid var(--fc-border); }
.fc-hero { padding: 70px 0 36px; }
.fc-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center; }
.fc-kicker { color: var(--fc-accent); text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; font-weight: 800; }
.fc-hero h1 { font-size: clamp(3rem, 7vw, 6.2rem); line-height: .92; margin: 12px 0 22px; letter-spacing: -.065em; }
.fc-hero p { max-width: 650px; color: var(--fc-muted); font-size: 1.1rem; }
.fc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.fc-photo-card { background: var(--fc-card); border: 1px solid var(--fc-border); border-radius: 32px; overflow: hidden; min-height: 520px; display: grid; place-items: center; }
.fc-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.fc-photo-fallback { color: var(--fc-muted); text-align: center; padding: 40px; }
.fc-section { padding: 34px 0 72px; }
.fc-section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 12px; letter-spacing: -.04em; }
.fc-section-copy { color: var(--fc-muted); max-width: 760px; margin-bottom: 28px; }
.fc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fc-card { background: var(--fc-card); border: 1px solid var(--fc-border); border-radius: var(--fc-radius); padding: 24px; }
.fc-card h3 { margin-top: 0; }
.fc-card p { color: var(--fc-muted); }
.fc-live-shell { background: #050506; border: 1px solid var(--fc-border); border-radius: 26px; overflow: hidden; min-height: 520px; }
.fc-live-fallback { min-height: 520px; display: grid; place-items: center; text-align: center; padding: 36px; color: var(--fc-muted); }
.fc-content { padding: 48px 0 80px; }
.fc-content article { background: var(--fc-card); border: 1px solid var(--fc-border); border-radius: var(--fc-radius); padding: clamp(22px, 5vw, 44px); }
.fc-form { display: grid; gap: 15px; max-width: 520px; }
.fc-form label { font-weight: 700; }
.fc-form input[type=text], .fc-form input[type=email], .fc-form input[type=password] {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--fc-border); background: #101014; color: #fff;
}
.fc-notice { border: 1px solid var(--fc-border); background: var(--fc-card-2); padding: 14px 16px; border-radius: 14px; margin: 0 0 18px; }
.fc-notice--success { border-color: rgba(91, 211, 132, .4); }
.fc-notice--error { border-color: rgba(255, 111, 111, .45); }
.fc-member-status { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.fc-status-pill { border-radius: 999px; padding: 7px 11px; border: 1px solid var(--fc-border); font-size: .82rem; font-weight: 800; }
.fc-status-pill.is-active { background: rgba(91,211,132,.13); border-color: rgba(91,211,132,.35); color: #9ef1ba; }
.fc-status-pill.is-inactive { color: #ffc0c0; }
.fc-site-footer { border-top: 1px solid var(--fc-border); color: var(--fc-muted); padding: 28px 0 48px; }
.fc-footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .fc-hero-grid, .fc-grid-3 { grid-template-columns: 1fr; }
  .fc-nav { display: none; }
  .fc-photo-card { min-height: 420px; }
}
