/* ---------- Base ---------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f7f8f7;
  color: #2b2b2b;
}

/* ---------- Header ---------- */

.site-header {
  text-align: center;
  padding: 60px 20px 20px;
}

.site-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3em;
  margin: 0;
}

.tagline {
  font-size: 0.95em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  color: #777;
}

/* ---------- Projects (DESKTOP GRID) ---------- */

.projects {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 40px 4vw;
}

/* ---------- Project Column ---------- */

.project {
  padding: 25px 15px;
  display: grid;
  grid-template-rows: 160px auto 1fr auto;
  border-right: 1px solid rgba(200,164,75,0.6);
  transition: background 0.4s ease;
}

.project:last-child {
  border-right: none;
}

.music { box-shadow: inset 0 0 0 9999px rgba(78,170,164,0.05); ; }
.podcast { box-shadow: inset 0 0 0 9999px rgba(99,89,170,0.05); }
.collage { box-shadow: inset 0 0 0 9999px rgba(3,151,8,0.05); }
.book { box-shadow: inset 0 0 0 9999px rgba(186,120,94,0.05); }
.blog { box-shadow: inset 0 0 0 9999px rgba(255,196,0,0.05); }




/* ---------- Image ---------- */

.project-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Text ---------- */

.project h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 1.4em;
  font-weight: 400;
  margin: 25px 0 10px;
}

.project p {
  font-size: 0.95em;
  line-height: 1.5;
  margin: 0;
  color: #444;
}

/* ---------- Links ---------- */

.project-link {
  margin-top: 20px;
  align-self: flex-start;
  font-size: 0.75em;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  color: #2b2b2b;
}

.project-link:hover {
  border-bottom-color: #c8a44b;
}

/* ---------- Footer ---------- */

.site-footer {
  text-align: center;
  padding: 50px 20px 30px;
  font-size: 0.95em;
}

.newsletter {
  margin: 30px 0 0px 0;
}

.socials a {
  margin: 0 14px;
  color: #2b2b2b;
  text-decoration: none;
  font-size: 1.3em;
}

.socials a:hover {
  opacity: 0.7;
}

.copyright {
  margin-top: 30px;
  font-size: 0.75em;
  color: #777;
}

/* ---------- Mobile ---------- */

@media (max-width: 1000px) {
  .projects {
    grid-template-columns: 1fr;
  }

  .project {
    border-right: none;
    border-bottom: 1px solid rgba(200,164,75,0.6);
  }

  .project:last-child {
    border-bottom: none;
  }
}
