@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');

:root {
  --bg-col: #f4f4f0;
  --text-col: #111111;
  --accent-col: #ff2a2a;
  --font-main: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-col);
  color: var(--text-col);
  font-family: var(--font-main);
  line-height: 1;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.04em;
}

/* Header & Profile Section */
header {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem;
}

.profile-photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 6rem;
  filter: grayscale(100%) contrast(1.3);
}

.hero-title {
  font-size: 10vw;
  line-height: 0.85;
}

.hero-subtitle {
  font-size: 3vw;
  margin-top: 2rem;
  color: var(--accent-col);
}

/* Immersive Project Bands */
.project-band {
  width: 100vw;
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 4px solid var(--text-col);
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
}

.project-band:hover {
  padding-left: 4rem;
  padding-right: 0;
}

/* Band Variations */
.band-dark {
  background-color: var(--text-col);
  color: var(--bg-col);
  border-top: 4px solid var(--bg-col);
}

.band-accent {
  background-color: var(--bg-col);
  color: var(--accent-col);
}

.band-light {
  background-color: var(--bg-col);
  color: var(--text-col);
}

.band-meta {
  font-size: 2vw;
  font-weight: 900;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.band-title {
  font-size: 16vw; 
  line-height: 0.8;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.band-dark .band-title {
  color: var(--bg-col);
}

.band-dark:hover {
  background-color: var(--accent-col);
  color: var(--bg-col);
}
.band-accent:hover {
  background-color: var(--text-col);
  color: var(--accent-col);
}
.band-light:hover {
  background-color: var(--text-col);
  color: var(--bg-col);
}

/* Footer Navigation */
footer {
  width: 100vw;
  padding: 4rem 2rem;
  display: flex;
  justify-content: space-between;
  border-top: 4px solid var(--text-col);
}

.footer-link {
  font-size: 3vw;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-col);
  text-decoration: none;
}
.footer-link:hover {
  color: var(--accent-col);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 15vw; }
  .hero-subtitle { font-size: 5vw; }
  .band-meta { font-size: 4vw; flex-direction: column; }
  .band-title { font-size: 20vw; }
  .footer-link { font-size: 6vw; }
}
