/*
Theme Name: Jason Bradford
Theme URI: https://jasonbradford.com
Author: Jason Bradford
Author URI: https://jasonbradford.com
Description: Punk poster aesthetic — cream, black, burnt orange
Version: 2.0
License: MIT
*/

/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
  --cream:  #EDE5CC;
  --black:  #0D0D0D;
  --orange: #C4550A;
  --dark:   #111008;
  --gray:   #333;
  --muted:  #666;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'Courier New', Courier, monospace;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
}

.rule-black  { height: 5px; background: var(--black); }
.rule-orange { height: 5px; background: var(--orange); }

/* ============================================================
   HERO — full viewport, overpass photo as duotone background
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--orange);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%) contrast(1.2) brightness(0.65);
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(10,8,0,0.9) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4vw 5vh;
}

.hero-name {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(88px, 17vw, 220px);
  line-height: 0.82;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-name .accent { color: var(--orange); }

.hero-tagline {
  font-size: clamp(10px, 0.85vw, 11px);
  letter-spacing: 5px;
  color: var(--cream);
  text-transform: uppercase;
  margin-top: 18px;
  font-family: 'Courier New', monospace;
}

/* ============================================================
   ABOUT — studio photo left, bio right
============================================================ */
.about-section {
  display: flex;
  min-height: 400px;
  background: var(--cream);
}

.about-photo-wrap {
  width: 38%;
  flex-shrink: 0;
  overflow: hidden;
  background-color: var(--black);
  position: relative;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) brightness(1.05);
  mix-blend-mode: normal;
}

.about-copy {
  flex: 1;
  padding: 3rem 3.5rem;
  border-left: 5px solid var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy .eyebrow { margin-bottom: 1rem; }

.about-headline {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}

.about-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
}

/* ============================================================
   WHAT I DO
============================================================ */
.do-section {
  background: var(--cream);
  padding: 2.5rem 4vw;
}

.do-section .eyebrow { margin-bottom: 6px; }

.do-list { list-style: none; }

.do-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1.5px solid var(--black);
  padding: 0.7rem 0;
}

.do-list li:last-child { border-bottom: none; }

.do-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.do-num {
  font-size: 10px;
  color: var(--orange);
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
  width: 18px;
}

.do-title {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.do-desc {
  font-size: 11px;
  font-family: 'Courier New', monospace;
  color: var(--muted);
  line-height: 1;
  white-space: nowrap;
  margin-left: auto;
  text-align: right;
}

/* ============================================================
   CREDITS + PROJECTS — unified dark band, 2-column
============================================================ */
.credits-projects-band {
  background: var(--black);
  padding: 2rem 4vw 2.5rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
}

/* Credits — left column */
.credits-section {
  position: relative;
  background-image:
    linear-gradient(rgba(10,8,0,0.78), rgba(10,8,0,0.72)),
    url('images/credits-bg.jpg');
  background-size: cover;
  background-position: center center;
  padding: 3rem 2rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.credits-section .eyebrow { margin-bottom: 0.8rem; color: var(--cream); }

.credit-line {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(17px, 2.2vw, 26px);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.55;
}

.credit-line .accent { color: var(--orange); }

/* Projects — right column */
.projects-section { border-left: 1px solid #1e1e1e; padding-left: 2rem; }

.projects-section .eyebrow { margin-bottom: 1.2rem; color: var(--cream); }

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-card {
  background: var(--cream);
  padding: 0.9rem 1.2rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proj-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex-wrap: wrap;
}

.proj-title {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}

.proj-desc {
  font-size: 10px;
  font-family: 'Courier New', monospace;
  color: var(--gray);
  line-height: 1;
  white-space: nowrap;
}

.proj-link {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--orange);
  letter-spacing: 2px;
  transition: color 0.15s, transform 0.15s;
  flex-shrink: 0;
  line-height: 1;
  display: inline-block;
}

.proj-link:hover {
  color: var(--black);
  transform: translateX(3px);
}

/* ============================================================
   CONTACT
============================================================ */
.contact-section {
  background: var(--cream);
  padding: 2.5rem 4vw 3rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem;
}

.contact-left {
  flex: 0 0 35%;
  padding-top: 0.2rem;
}

.contact-left .eyebrow { margin-bottom: 0.5rem; }

.contact-right {
  flex: 1;
}

.contact-headline {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  text-transform: uppercase;
  color: var(--black);
  line-height: 0.82;
  letter-spacing: -2px;
  margin-bottom: 0;
}

.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--black);
  padding: 10px 0;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--black);
  width: 100%;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  letter-spacing: 3px;
  font-size: 9px;
  text-transform: uppercase;
}

.contact-form textarea {
  border: 2px solid var(--black);
  padding: 10px;
  height: 110px;
  resize: none;
  margin-top: 8px;
}

.submit-btn {
  background: var(--orange);
  color: var(--cream);
  border: none;
  padding: 14px 0;
  width: 100%;
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.15s;
  max-width: 580px;
}

.submit-btn:hover { background: var(--black); }

.contact-success {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--orange);
  padding: 10px 14px;
  margin-bottom: 1.5rem;
  font-family: 'Courier New', monospace;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--black);
  padding: 12px 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.site-footer span {
  font-size: 9px;
  font-family: 'Courier New', monospace;
  color: var(--cream);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer .f-accent { color: var(--cream); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .about-section          { flex-direction: column; }
  .about-photo-wrap       { width: 100%; height: 320px; }
  .about-copy             { border-left: none; border-top: 5px solid var(--orange); padding: 2rem; }
  .do-list .do-desc       { display: none; }
  .credits-projects-band  { grid-template-columns: 1fr; gap: 2rem; }
  .projects-section       { border-left: none; border-top: 1px solid #1e1e1e; padding-left: 0; padding-top: 1.5rem; }
  .projects-grid          { grid-template-columns: 1fr; }
  .contact-section        { flex-direction: column; gap: 1.5rem; }
  .contact-left           { flex: none; }
  .form-row               { grid-template-columns: 1fr; }
  .site-footer            { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .do-section, .credits-section,
  .projects-section, .contact-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-copy { padding: 1.5rem; }
}
