/* ============================================================
   LILLI BRENNER PORTFOLIO — Global Styles
   ============================================================ */


/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica', sans-serif;
  font-weight: 300;
  background-color: #fff;
  color: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ---------- Sticky Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
}

.navbar__logo {
  font-family: 'Helvetica', serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.navbar__logo a:hover {
  opacity: 0.6;
}

.navbar__links {
  display: flex;
  gap: 110px;
  list-style: none;
}

.navbar__links li a {
  font-family: 'Helvetica', sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}

.navbar__links li a:hover {
  opacity: 0.45;
}

.navbar__links li a.active {
  font-family: 'Corporate A Pro', serif;
  font-style: italic;
}

/* ---------- Homepage ---------- */
.home-bio {
  flex: 1;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 64px 48px;
}

.home-bio p {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  color: #000;
}

/* ---------- Homepage Footer Info ---------- */
.home-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 32px 36px;
}

.home-info__left,
.home-info__right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-block {
  display: flex;
  align-items: last baseline;
  gap: 14px;
  line-height: 1;
}

.info-block__label {
  font-family: 'Helvetica', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.info-block__detail {
  font-size: 12px;
  line-height: 1.2;
  color: #000;
  padding-bottom: 4px;
}

/* ---------- Overview Pages (Design / Photography) ---------- */
.overview-container {
  padding: 60px 0 80px;
}

.overview-strip {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  overflow: visible;
}

.overview-strip__item {
  flex: 1;
  height: 320px;
  overflow: hidden;
  position: relative;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #f2f2f2;
}

.overview-strip__item:hover {
    flex: 4;
    height: 75vh; 
    object-fit: contain;
}

.overview-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.overview-strip__item:hover img {
  transform: scale(1.03);
}

.overview-strip__item .item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s;
}

.overview-strip__item:hover .item-label {
  opacity: 1;
}

.overview-strip__item a {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Project Pages ---------- */
.project-page {
  padding: 60px 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.project-page__back {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.project-page__back:hover {
  opacity: 0.5;
}

.project-page__title {
  font-family: 'Corporate A Pro', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 48px;
}

.project-page__hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #f0f0f0;
  margin-bottom: 48px;
}

.project-page__hero.tall {
  aspect-ratio: 3/4;
  max-width: 600px;
}

.project-page__description {
  max-width: 640px;
  line-height: 1.8;
  color: #333;
  font-size: 0.95rem;
}

.project-page__meta {
  margin-top: 40px;
  display: flex;
  gap: 60px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
}

.project-page__meta span strong {
  display: block;
  color: #111;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
  font-weight: 400;
}

.project-gallery {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #f0f0f0;
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
  }

  .songcover-intro {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 48px 24px;
  }
}
