/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Reduced color variables */
:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --primary: #000000;
  --primary-foreground: #fafafa;
}

.dark {
  --background: #0a0a0a;
  --foreground: #fafafa;
  --muted-foreground: #a3a3a3;
  --border: #262626;
  --primary: #fafafa;
  --primary-foreground: #000000;
}

/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
}

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
}

/* Utility classes */
.text-balance { text-wrap: balance; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Common section styles */
[id*="-section"] {
  padding: 3rem 0;
  background-color: #ffffff;
}

[class*="-container"] {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

[class*="-grid"] {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}

[class*="-date"],
[class*="-description"] {
  color: #aaa;
}

[class*="-subtitle"] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

[class*="-title"] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
}

[class*="-list"] {
  list-style: none;
  color: var(--muted-foreground);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: #000;
  border-bottom: 1px solid #444;
}

.header-inner {
  display: flex;
  height: 3.5rem;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-button {
  color: #fff;
  transition: color 0.2s ease-in-out;
  background: #000;
}

.nav-button:hover {
  color: #ccc;
}

.header-right {
  display: flex;
  align-items: center;
}

.resume-button {
  display: none;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  transition: all 0.2s ease-in-out;
}

.resume-button:hover {
  background-color: #fff;
  color: #000;
}

/* Hero Section */
#hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
  z-index: 10;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  width: 100%;
  max-width: 28rem;
  padding: 0 1rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fff;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.hero-description {
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-top: 10rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.icon-button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
}

.icon-button:hover {
  background-color: #fff;
  color: #000;
}

/* Main Content */
main .spacer { height: 100vh; }
main { background: #000; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background-color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
  align-items: center;
}

.footer-text,
.footer-link {
  font-size: 0.75rem;
  color: #888;
}

.footer-link {
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

h2[class*="-title"] {
  font-size: 2.5rem;
}

.about-image {
  max-width: 15rem;
  height: auto;
}

.about-photo {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* Media Queries */
@media (min-width: 768px) {
  
  [class*="-grid"] {
    grid-template-columns: 1fr 1fr;
  }
  .resume-button {
    display: flex;
  }
  .about-image {
    max-width: 17rem;
  }    
}

@media (max-width: 420px) {
  .hero-description {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 8rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .about-image {
    width: 100%;
  }     

}

