/* Global resets & typography */
body {
  margin: 0;
  background: #faf9f6;
  color: #333;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #222;
  margin-top: 0;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 4vw;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
/* Headings & logo */
.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #222;
  text-transform: none;
  margin: 0;
}

/* Mobile menu toggle button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}
nav {
  display: flex;
  gap: 2.3rem;
  align-items: center;
}
/* Navigation links */
nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 1rem;
  position: relative;
  padding: 0.25rem 0;
}
nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #bfa36f;
  transition: width 0.3s;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}
nav select {
  background: #faf9f6;
  color: #333;
  border: 1px solid #ccc;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-left: 1rem;
}
main {
  margin: 0 auto;
  max-width: 1200px;
  width: 97vw;
  padding: 0;
}

/* HERO Landing Image */
/* Hero section with background image */
.hero-image {
  position: relative;
  width: 100%;
  height: 80vh;
  /* Hero background placeholder - replace with final artwork */
  background: url('../img/IMG_5222.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* GALLERY GRID */
.gallery-grid, .sketchbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.7vw;
  margin: 6vh auto 7vh auto;
  padding: 0;
  width: 97vw;
  max-width: 1100px;
}
.gallery-item, .sketchbook-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5em;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gallery-item:hover, .sketchbook-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.gallery-item img, .sketchbook-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img, .sketchbook-item:hover img {
  transform: scale(1.03);
}
.caption {
  color: #555;
  font-size: 1rem;
  text-align: left;
  margin: 0.8em 0 0.2em 0.3em;
  opacity: 0.9;
}

/* BIOGRAPHY PAGE */
.bio-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 5rem auto;
  max-width: 850px;
  align-items: center;
  background: #fff;
  padding: 2rem;
  border-radius: 0.5em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.bio-pic {
  width: 210px;
  border-radius: 0.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.bio-text {
  flex: 1 1 370px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  min-width: 250px;
}
.bio-title {
  font-size: 2rem;
  color: #222;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

/* CONTACT PAGE */
.contact-container {
  max-width: 500px;
  margin: 5rem auto;
  background: #fff;
  border-radius: 0.5em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 2rem;
  text-align: center;
}
.contact-title {
  font-size: 2rem;
  color: #222;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.contact-desc {
  color: #555;
  margin-bottom: 2em;
  font-size: 1rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.6em;
  margin-bottom: 2em;
  flex-wrap: wrap;
}
.social-links a {
  color: #333;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.18s;
}
.social-links a:hover {
  border-bottom-color: #bfa36f;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1.6em;
}
.contact-form label {
  text-align: left;
  color: #d2d2d2;
  font-size: 1rem;
  margin-bottom: 0.2em;
}
.contact-form input,
.contact-form textarea {
  background: #f9f9f6;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 0.25em;
  font-size: 1rem;
  padding: 0.6em 1em;
  resize: vertical;
}
.contact-form button {
  margin-top: 1rem;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 0.25em;
  background: #bfa36f;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #a88c53;
}

/* LIGHTBOX */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-content {
  max-width: 97vw;
  max-height: 92vh;
}
.lightbox-content img {
  width: auto;
  max-width: 97vw;
  max-height: 92vh;
  border-radius: 0.8em;
  box-shadow: 0 6px 44px 0 rgba(0,0,0,0.43);
}
.lightbox-close {
  position: absolute;
  top: 3vw; right: 4vw;
  font-size: 2.1em;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.9;
}
.lightbox-close:hover { opacity: 1; }

@media (max-width: 700px) {
  header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .menu-toggle {
    display: block;
  }
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  nav.open {
    display: flex;
  }
  nav a {
    margin: 0.5rem 0;
  }
  nav select {
    margin: 0.5rem 0;
  }
  .hero-title { font-size: 2rem; }
  .gallery-grid, .sketchbook-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .bio-container { flex-direction: column; padding: 2vw; }
  .bio-pic { width: 100%; max-width: 290px; }
}
