body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    padding-top: 50px;
}
h1 {
    color: #000000;
    text-align: center;
}
img {
    max-width: 300px;
    height: auto;
    margin: 90px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.artwork {
  margin: 20px;
  text-align: center;
}

.artwork img {
  max-width: 250px;
  height: auto;
  display: block;
}
nav {
  margin-bottom: 40px;
}
.series-boxes {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.series-box {
  padding: 40px 60px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-size: 22px;
}

.series-box:hover {
  background-color: #f5f5f5;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0 80px;
}

.main-nav a {
  padding: 10px 20px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.main-nav a:hover {
  background-color: #f5f5f5;
}
.site-footer {
  margin-top: 80px;
  padding: 40px 0;
  text-align: center;
}

.instagram-icon {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.instagram-icon:hover {
  opacity: 0.5;
}

.email-link {
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 3px;
}

.email-link:hover {
  opacity: 0.6;
}
body {
  font-family: 'Lora', serif;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
h1 {
  font-size: 52px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}
.site-footer {
  margin-top: 80px;
  padding: 40px 0;
  text-align: center;
}

.site-footer p {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}
.clickable-image {
  cursor: pointer;
}


/* Grid container */
.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.thumbnail-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* CRITICAL */
}

.thumbnail-title {
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}


.thumbnail {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.thumbnail:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.thumbnail-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  overflow-y: auto;
  z-index: 9999;
}

.lightbox-content {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.lightbox-content img {
  display: block;
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 0 auto 40px;
}

.close {
  position: sticky;
  top: 20px;
  text-align: right;
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 40px;
  z-index: 10000;
}
.thumbnail {
  width: 200px;
  height: 300px;
  object-fit: cover;
}

.big-img {
  transform: scale(2.0); /* 100% bigger */
}
.text-image-row {
  display: flex;
  align-items: flex-start;   /* aligns tops */
  gap: 40px;                 /* space between text & image */
}

.text-column {
  flex: 1;                   /* text takes remaining space */
}

.image-column {
  flex: 0 0 40%;              /* image column width */
}

.image-column img {
  width: 100%;
  height: auto;
  display: block;
}
h2{
  margin-top: 0.5em;   /* reduce this */
}

p {
  margin-top: 0.5em;
}
.text-column {
  margin-left: 40px;
}


/* Headings */
.text-column h2 {
text-align: center;   /* or right if you prefer */
}

/* Body text */
.text-column p {
  text-align: left;
}
.text-column p {
  margin-bottom: 1.5em;
}











