body {
  font-family: 'Lato', sans-serif; /* Winky+Sans Quicksand Cormorant+Garamond Mulish*/
}

/* Base styles for the container */
.sculpture-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  gap: 2rem;
}

/* Desktop layout (min-width: 769px) */
@media (min-width: 769px) {
  .sculpture-container {
    /* We define 2 columns and 3 rows:
       1) Title spans both columns
       2) Cover left, Info right
       3) Cover left, Thumbnails right
    */
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title title"
      "cover info"
      "cover thumbnails";
  }

  /* Title on top spanning 2 columns */
  .sculpture-title {
    grid-area: title;
  }

  .sculpture-title h1{
    font-size: 1.9rem;      /* desktop size – adjust to taste */
    line-height: 1.25;
    margin: 0 0 0.5rem 0;   /* tighten spacing */
  }

  /* Cover top-left (and continues on second row) */
  .sculpture-cover {
    grid-area: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Info top-right */
  .sculpture-info {
    grid-area: info;
  }

  /* Thumbnails bottom-right */
  .sculpture-thumbnails {
    grid-area: thumbnails;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

@media (max-width: 480px){
  .sculpture-title h1{
    font-size: 1.8rem;
  }
}

/* Mobile layout (max-width: 768px) */
@media (max-width: 768px) {
  .sculpture-container {
    /* Single column order: info, then cover, then thumbnails */
    grid-template-columns: 1fr;
    grid-template-areas:
     "title"
      "cover"
      "thumbnails"
      "info";
  }
  .title {
    grid-area: title;
    text-align: center;
    margin-bottom: 2rem;
  }
  .sculpture-cover {
    grid-area: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sculpture-thumbnails {
    grid-area: thumbnails;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .sculpture-info {
    grid-area: info;
  }

}

/* Additional styling */

/* Cover image styling */
.sculpture-cover img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Thumbnails styling */
.sculpture-thumbnail {
  width: 150px;
  height: 150px;
  overflow: hidden;
}
.sculpture-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA button styling */
.sculpture-cta {
  display: inline-block;
  padding: 0.6rem 1rem;
  margin-top: 1rem;
  background-color: #91c35c;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}


.line-break {
  /* width: 100%; */
  height: 1rem;             
  /* background-color: #ccc;  line color */
  /* margin: 1rem 0;          spacing above and below the line */
}

hr {
  width: 90%;
  margin: 2rem auto; /* 2rem top and bottom; auto left/right centers it */
  border: none;
  border-bottom: 1px solid #000; /* or use #fff for a white line */
}

.prose figure {
  display: block !important;
  margin: 0 auto !important;
  text-align: center !important;
  float: none !important;
}
.prose figure img {
  margin: 0 auto !important;
  display: block; /* pour s’assurer qu’il puisse se centrer */
  float: none !important;
}

.prose {
  text-align: justify;
}


.sculpture-info p {
  text-align: justify;
}


.sculpture-cta {
  display: inline-block;
  padding: 0.6rem 1rem;
  margin-top: 1rem;
  background-color: #000;  /* default: button is black */
  color: #fff;             /* text is white */
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* When the background is dark (user prefers dark mode) */
@media (prefers-color-scheme: dark) {
  .sculpture-cta {
    background-color: #fff;  /* button becomes white */
    color: #000;             /* text becomes black */
  }
}


/* Container around the form */
.contact-form {
  max-width: 500px;              /* limit form width */
  margin: 2rem auto;             /* center horizontally, add top/bottom space */
  padding: 2rem;                 /* space inside the container */
  background-color: #fff;        /* form background */
  border-radius: 0.5rem;         /* rounded corners */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* subtle shadow */
  font-family: "Segoe UI", Tahoma, sans-serif; /* pick a clean font */
}

/* Headline and optional paragraph */
.contact-form h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.contact-form p {
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #555; /* a softer text color */
}

/* Label styling */
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

/* Inputs and textarea styling */
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: inherit; /* keep consistent font */
  box-sizing: border-box;
}

/* Button styling */
.contact-form button[type="submit"] {
  display: inline-block;
  background-color: #333;  /* button color */
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background-color: #555; /* darker on hover */
}

.anchor-link{
  margin-left:0.3rem;
  font-size:0.9rem;
  text-decoration:none;
  color:#666;
}
.anchor-link:hover{color:#000}

.copy-link{
  background:#000; color:#fff; border:none;
  padding:0.3rem 0.7rem; border-radius:4px;
  cursor:pointer; font-size:0.8rem;
}
.copy-link:hover{opacity:0.85}

#menu .menu-divider {
  list-style: none;
  margin: 0.5rem 0;
  padding: 0;
}

#menu .menu-divider hr {
  border: none;
  border-top: 1px solid #888;
  width: 100%;
}


/* Horizontal image rows */
.img-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  margin: 1rem 0;
}
.img-row figure {
  margin: 0;
}
.img-row img {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

