/* style.css */

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: #000;
  }

  .container {
    padding: 2rem;
  }

  h1 {
    margin: 0 0 2rem 0;
    font-size: 2rem;
    font-weight: 400;
  }

  .image-link {
    display: inline-block;
    cursor: pointer;
  }

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

  /* Detail page styles */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .gallery-item {
    cursor: pointer;
  }

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

  .back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
  }

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