 /* style.css */

body {
    margin: 0;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    background: #fff;
    color: #000;
  }

  .container {
    padding: 2rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  /* Header and Navigation Styles */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
  }

  /* Contact info under the navigation line */
  .contact-info-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }

  .contact-info-header a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .contact-info-header a:hover {
    color: red;
  }

  .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .site-title a {
    color: #000;
    text-decoration: none;
  }

  .site-title a:hover {
    color: red;
  }

  .main-nav {
    display: flex;
    gap: 2rem;
  }

  .nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    transition: color 0.2s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    color: red;
  }

  /* Main content area */
  .main-content {
    width: 100%;
  }

  .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
  }

  .image-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .image-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
  }

  .image-card:hover {
    transform: translateY(-5px);
  }

  .image-card-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
  }

  .front-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
  }

  .image-card:hover .front-image {
    transform: scale(1.02);
  }

  .image-card-info {
    padding: 1rem 0;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .image-card-title {
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 0.3rem 0;
    color: #000;
  }

  .image-card-description {
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
    color: #000;
  }

  .image-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    opacity: 0;
  }

  .image-card:hover .image-card-overlay {
    transform: translateY(0);
    opacity: 1;
  }

  .image-card-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .image-card-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
  }

  .image-placeholder {
    background: #f5f5f5;
    border: 2px dashed #ccc;
    padding: 3rem;
    text-align: center;
    border-radius: 4px;
    grid-column: 1 / -1;
  }

  .image-placeholder p {
    margin: 0;
    color: #666;
    font-style: italic;
  }

  /* Page content for sub-pages */
  .page-content {
    width: 100%;
  }

  .page-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 2rem 0;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .content-area {
    line-height: 1.6;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  /* About page specific styles */
  .contact-info {
    background: #f8f8f8;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
  }

  .contact-info p {
    margin: 0.5rem 0;
  }

  .bio-section,
  .exhibitions-section,
  .awards-section,
  .education-section,
  .residency-section,
  .publications-section,
  .talks-section {
    margin-bottom: 3rem;
  }

  .content-area h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #000;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
  }

  .content-area h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    color: #333;
  }

  .content-area ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }

  .content-area li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .content-area li:last-child {
    border-bottom: none;
  }

  .content-area strong {
    font-weight: 600;
  }

  .bio-section p {
    margin-bottom: 1.5rem;
    text-align: justify;
  }

  /* Project page styles */
  .project-page .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .project-header {
    margin-bottom: 3rem;
  }

  .project-header h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .project-description {
    margin-bottom: 2rem;
  }

  .project-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
  }

  .project-exhibitions h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
  }

  .project-exhibitions ul {
    list-style: none;
    padding: 0;
  }

  .project-exhibitions li {
    padding: 0.3rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
  }

  .project-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .project-gallery img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
  }

  .project-image-container {
    margin-bottom: 2rem;
  }

  .project-image-title {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
  }

  /* Row layout for images 2, 3, 4 */
  .project-image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  /* Botanique specific row layout (2 images) */
  .project-image-row.botanique-row {
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
  }

  .project-image-row.botanique-row .project-image-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .project-image-row.botanique-row .project-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .project-image-container.row-item {
    margin-bottom: 0;
  }

  .project-image-container.full-width {
    width: 100%;
  }

  .project-image-container.installation-image {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }

  .project-image-description {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
    line-height: 1.4;
    font-style: normal;
  }

  .project-image-titles {
    margin-top: 0;
    margin-bottom: 3rem;
    padding-top: 0;
    border-top: 1px solid #e0e0e0;
  }

  .project-image-titles p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  /* Responsive design for image rows */
  @media (max-width: 768px) {
    .project-image-row {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .contact-info-header {
      justify-content: flex-start;
      flex-direction: column;
      gap: 0.5rem;
    }

    .main-nav {
      gap: 1rem;
    }

    .container {
      padding: 1rem;
    }

    .image-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .image-column {
      gap: 1rem;
    }

    .image-card {
      margin-bottom: 0.5rem;
    }
  }

  h1 {
    margin: 0 0 2rem 0;
    font-size: 2rem;
    font-weight: 400;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  /* Home page title section */
  .title-section {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .main-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-align: center;
  }

  .subtitle {
    font-size: 6rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    display: inline;
  }

  .image-link {
    display: inline;
    cursor: pointer;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #000;
    text-decoration: none;
  }

  .image-link:hover,
  .image-link:hover .subtitle {
    color: red;
  }

  .main-image {
    max-width: 50%;
    height: auto;
    display: block;
  }

  /* Detail page styles */
  .gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .gallery-row-first {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 2rem;
  }

  .gallery-item {
    cursor: pointer;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e0e0e0;
  }

  .gallery-item-installation {
    grid-column: span 1;
  }

  .back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .back-link:hover {
    text-decoration: underline;
  }

  /* Intro section with text and image side by side */
  .intro-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .intro-text {
    flex: 1;
    width: 50%;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .intro-text h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .intro-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .intro-image {
    flex: 1;
    width: 50%;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .intro-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .image-caption {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  /* Detail1 page layout */
  .detail-layout {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

  .detail-text-wrapper {
    width: 25%;
    flex-shrink: 0;
  }

  .detail-text {
    width: 100%;
  }

  .detail-text h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .detail-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  /* Slider styles */
  .slider-container {
    position: relative;
    width: 75%;
    flex-shrink: 0;
  }

  .slider-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
  }

  .slider-wrapper::-webkit-scrollbar {
    height: 8px;
  }

  .slider-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .slider-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  .slider-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .slider-track {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
  }

  .slider-item {
    flex-shrink: 0;
    height: 500px;
    width: auto;
  }

  .slider-item img {
    width: auto;
    height: 100%;
    display: block;
    border: 1px solid #e0e0e0;
    object-fit: cover;
  }
