/*
Theme Name: SAUCD
Theme URI: https://saucd.net
Author: Thomas Clark
Description: Brutalist creative portfolio WordPress theme with overprint-inspired visuals.
Version: 1.0
Text Domain: saucd
*/

:root {
  --yellow: #f8e800;
  --black: #000000;
  --white: #ffffff;
  --cyan: #00e5ff;
  --magenta: #ff1ead;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--yellow);
  color: var(--black);
  font-family: Arial Black, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 14px 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(248,232,0,.92);
  backdrop-filter: blur(16px);
  border-bottom: 4px solid #000;
}

.nav-inner, .container {
  max-width: 1400px;
  margin: auto;
  padding: 24px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-pill {
  background: #000;
  color: var(--yellow);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transform: rotate(-4deg);
  box-shadow: 8px 8px 0 #000;
  display: inline-block;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 24px;
}

.hero h1 {
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: .9;
  letter-spacing: -.08em;
  text-transform: uppercase;
  margin: 0;
}

.overprint {
  color: white;
  
}

.hero p {
  max-width: 650px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.button {
  background: #000;
  color: var(--yellow);
  padding: 18px 30px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  margin-right: 10px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 #000;
}

.blend-wrap {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: .7;
}

.magenta { background: var(--magenta); }
.cyan { background: var(--cyan); transform: translate(30px, 30px); }

.projects {
  background: #000;
  color: var(--yellow);
  padding: 120px 24px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 40px;
}

.project-card {
  background: var(--yellow);
  color: #000;
  border-radius: 32px;
  overflow: hidden;
  border: 4px solid var(--yellow);
}

.project-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.project-content {
  padding: 30px;
}

.project-title {
  font-size: 2rem;
  text-transform: uppercase;
}

.site-footer {
  background: #000;
  color: var(--yellow);
  padding: 80px 24px;
}

@media(max-width: 900px){
  .hero { grid-template-columns: 1fr; }
  .menu { display:none; }
}
