/* kinkster.dad — dark dom daddy theme */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Oswald:wght@500;700&display=swap");

:root {
  --bg: #0c0c0c;
  --bg-elevated: #141414;
  --text: #e8e4df;
  --text-muted: #9a9590;
  --accent: #9b1c2e;
  --accent-hover: #b8233a;
  --border: #2a2424;
  --border-glow: rgba(155, 28, 46, 0.35);
  --max-width: 720px;
  --radius: 6px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 50% -20%, #1a1214 0%, var(--bg) 55%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header / Hero */

.hero {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}

.site-title {
  margin: 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  line-height: 1.1;
  color: var(--text);
}

.site-title span {
  color: var(--accent);
}

.tagline {
  margin: var(--space-sm) 0 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Main content */

main {
  flex: 1;
  padding-bottom: var(--space-xl);
}

.intro {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.intro p {
  margin: 0 0 var(--space-sm);
  color: var(--text-muted);
}

.intro p:last-child {
  margin-bottom: 0;
}

.section-title {
  margin: 0 0 var(--space-md);
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* Platform link cards */

.links {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.link-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.link-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--border-glow);
  color: var(--text);
  transform: translateY(-1px);
}

.link-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.link-card__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

/* Wide emblem — scale up to match visual size of square icons */
.link-card__icon--onlyfans {
  transform: scale(1.5);
}

.link-card__label {
  flex: 1;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.link-card__badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.125rem 0.4375rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
  color: var(--accent);
  background: rgba(155, 28, 46, 0.12);
  border: 1px solid rgba(155, 28, 46, 0.35);
  border-radius: 3px;
}

.link-card__arrow {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.2s;
}

.link-card:hover .link-card__arrow {
  transform: translateX(3px);
  color: var(--accent);
}

/* Gallery */

.gallery-section {
  margin-bottom: var(--space-lg);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.gallery-empty {
  text-align: center;
  padding: var(--space-lg);
  color: var(--text-muted);
  font-style: italic;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.gallery-section[data-ready="true"] .gallery-empty {
  display: none;
}

.gallery-section:not([data-ready="true"]) .gallery {
  display: none;
}

/* Collab page */

.collab-header {
  padding: var(--space-lg) 0 var(--space-md);
}

.collab-title {
  margin: 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.collab-subtitle {
  margin: var(--space-xs) 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.back-link {
  display: inline-block;
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
}

.back-link:hover {
  color: var(--accent);
}

.collab-section {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.collab-section h2 {
  margin: 0 0 var(--space-sm);
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.collab-section p {
  margin: 0 0 var(--space-sm);
  color: var(--text-muted);
}

.collab-section p:last-child {
  margin-bottom: 0;
}

.collab-section ul,
.collab-section ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.collab-section li {
  margin-bottom: var(--space-xs);
}

.collab-section li:last-child {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */

.site-footer {
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Responsive */

@media (min-width: 480px) {
  .links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .link-card--premium {
    grid-column: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .link-card,
  .link-card__arrow {
    transition: none;
  }

  .link-card:hover {
    transform: none;
  }
}
