body {
  font-family: sans-serif;
  margin: 40px;
  background-color: #000000;
  color: #ffffff;
}

/* GRID */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-item {
  overflow: hidden;
  border-radius: 10px;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* Header flex layout */
.site-header {
  display: flex;
  justify-content: space-between; /* pushes title left, logo right */
  align-items: center;            /* vertical alignment */
  padding: 0 20px;                /* optional spacing from edges */
}

.header-text {
  display: flex;
  flex-direction: column;
}

/* LOGO */
.header-logo {
  height: 100px;
  width: auto;
  transition: transform 0.2s ease;
}

.header-logo:hover {
  transform: scale(1.05); /* small zoom effect */
}

/* BIG TEXT */
.site-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: left;
}

/* Small TEXT */
.site-subtitle {
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: -10px;
  opacity: 0.7;
}


/* FOOTER */
.site-footer {
  text-align: center;
  padding: 40px 0;
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0.8;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* PROJECT PAGE */
.project-page {
  background-color: #000000;
  color: #ffffff;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.project-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 10px;
  padding-left: 20px; /* optional padding to match layout */
}

.project-subtitle {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 40px;
  padding-left: 20px;  /* optional padding */
}

.project-scroll {
  display: flex;
  flex-direction: column;
  /* align-items: center; */ /* remove this line */
  width: 100%;
  margin: 0;
  padding: 0 20px 80px;
}

/* FULLSCREEN IMAGES */
.project-image {
  align-self: center;  /* centers each image horizontally */
  width: auto;
  max-width: 100%;
  height: 100vh;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-bottom: 40px;
  background-color: #000;
}

