/* Option 3: Gallery
   - Georgia serif for quiet elegance
   - Navigation bottom-center
   - Dramatic whitespace
   - Smaller, refined type
   - Very clean, museum-like
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  background: #fff;
  color: #2c2c2c;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation - Bottom */
nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 100;
  background: linear-gradient(to top, #fff 60%, transparent);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

nav a {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  font-family: system-ui, -apple-system, sans-serif;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.35;
}

nav a.active {
  opacity: 0.35;
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem 8rem;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
}

/* Home Page */
.home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 4vh;
}

.home-image {
  max-width: 130px;
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
}

.home-text {
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Page Headers */
h1 {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* About Page */
.about-content {
  text-align: left;
}

.about-content h1 {
  margin-bottom: 3.5rem;
  font-style: italic;
}

.about-content p {
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  text-align: justify;
  text-justify: inter-word;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* The Tree Knew Page */
.tree-knew-content {
  text-align: center;
}

.tree-knew-content h1 {
  font-style: italic;
  margin-bottom: 0.375rem;
}

.tree-knew-content .subtitle {
  font-size: 0.9375rem;
  margin-bottom: 3.5rem;
  letter-spacing: 0.02em;
}

.tree-knew-content .statement {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.75;
}

.tree-knew-content .statement p {
  margin-bottom: 0;
}

/* Works Page */
.works-content {
  text-align: center;
  width: 100%;
}

.work-item {
  margin-bottom: 3.5rem;
}

.work-item:last-of-type {
  margin-bottom: 4rem;
}

.work-title {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.375rem;
}

.work-description {
  font-size: 0.9375rem;
  font-weight: 400;
}

.works-footer {
  font-size: 0.9375rem;
  font-style: italic;
}

/* Contact Page */
.contact-content {
  text-align: center;
}

.contact-content h1 {
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.contact-content a {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 1rem;
  font-style: italic;
  transition: opacity 0.3s ease;
}

.contact-content a:hover {
  opacity: 0.35;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  nav {
    padding: 1.5rem 1rem;
  }
  
  nav ul {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  nav a {
    font-size: 0.7rem;
  }
  
  main {
    padding: 3rem 1.5rem 7rem;
    justify-content: flex-start;
    min-height: auto;
    padding-top: 15vh;
  }
  
  .home-image {
    max-width: 110px;
    margin-bottom: 3rem;
  }
  
  h1 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .about-content p {
    text-align: left;
  }
  
  .work-item {
    margin-bottom: 2.5rem;
  }
}


