:root {
  --orange: #FC4100;
  --yellow: #FFCC00;
  --navy: #0f1724;
  --text: #f4f4f4;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Righteous', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.5;
  text-transform: uppercase;
}

/* Header */
header {
  background: rgba(15,15,15,0.95);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: var(--yellow);
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

/* Two-column layout */
.responsive-two-columns {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.leftcol,
.rightcol {
  flex: 1 1 50%;
}

/* Square cropped headshot */
.leftcol {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leftcol img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;   /* stay square */
  object-fit: cover;     /* crop instead of stretch */
  border: 4px solid var(--orange);
  box-shadow: 4px 4px 0 var(--yellow);
  background: black;
}

/* Bio */
.rightcol {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rightcol h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.rightcol h2 {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.6;
  text-transform: none;
}

.resumebutton {
  margin-top: 2rem;
}

.resumebutton a h1 {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--orange);
  box-shadow: 2px 2px 0 var(--yellow);
  background: black;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.resumebutton a h1:hover {
  background: var(--yellow);
  color: black;
  border-color: var(--orange);
  cursor: pointer;
}

/* Mobile Navbar */
@media(max-width:768px){
  nav {
    position: fixed;
    inset: 0;
    background: rgba(15,15,15,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  nav a {
    font-size: 1.5rem;
  }
  .hamburger { display: flex; }
}

/* Responsive two-columns stack */
@media(max-width:768px){
  .responsive-two-columns {
    flex-direction: column;
    text-align: center;
  }
  .leftcol img {
    max-width: 300px;
    margin: 0 auto;
  }
  .rightcol h1 {
    margin-top: 1rem;
  }
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
