body {
    font-family: 'Poppins', sans-serif;
    background-color: #e7d1bb;
    color: #261f1d;
  }

  header {
    text-align: center;
    padding-top: 1em;
    font-family: "Poppins", sans-serif;
  }

  .site-header {
    border-bottom: 1px solid #261f1d;
    padding: 2em 3em 1em 3em; /* 👈 this moves the border down */
  }
  
  .site-title {
    font-size: 1.8rem;
    font-weight: 300 !important;
    margin: 0;
    letter-spacing: 0.2rem;
  }

  .site-title a {
    text-decoration: none !important;
    color: #261f1d !important;
  }
  
  .main-nav {
    margin-top: 0.5em;
  }
  
  .main-nav a {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    margin: 0 0.7em;
    text-decoration: none;
    color: #261f1d;
    font-weight: 500;
  }


  @media screen and (min-width: 1024px) {
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2em 3em 0em 3em;
      z-index: 9999;
      background-color: #e7d1bb;
      border-bottom: 1px solid #261f1d ;
    }
    
    .site-title {
      font-size: 5.2rem !important;
      font-weight: 300 !important;
      margin: 0;
      letter-spacing: 0.25rem;
      position: relative;
      left: -2%;
      text-decoration: none;
    }
    
    .main-nav {
      margin-top: 0;
      margin-right: 5%;
      margin-bottom: -2rem;
    }
    
    .main-nav a {
      font-size: 1.5rem !important;
      margin: 0 1em;
    }
  }



  #sf-time {
    display: none;
  }
  
  @media screen and (min-width: 1024px) {
    #sf-time {
      position: fixed;
      top: 4em;  /* adjust as needed */
      right: 2em;
      font-size: 1rem;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      color: #555;
      z-index: 99999;
      display: block;
    }
  }






  

.marker {
  position: absolute;
  width: 470px;         /* Smaller size */
  top: 220px;          /* Adjust this value to move up/down */
  left: 30%;           /* Center horizontally */
  transform: translateX(-50%) rotate(-90deg);
  z-index: 10;
}

@media screen and (min-width: 1024px) {
    .marker {
    transform: translateX(-50%) rotate(0deg);
    width: 1000px;
    top: 0px;
    left: 50%;
    }
}



.paintbrush {
    position: absolute;
    width: 480px;         /* Smaller size */
    top: 230px;          /* Adjust this value to move up/down */
    left: 70%;           /* Center horizontally */
    transform: translateX(-50%) rotate(90deg);
    z-index: 10;
  }

  @media screen and (min-width: 1024px) {
    .paintbrush {
    transform: translateX(-50%) rotate(0deg);
    width: 1100px;
    left: 52%;
   
    }
}


/* Shared label base */
.collapsible {
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
    color: black;
    font-family: 'Poppins', sans-serif;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 11;
    text-decoration: none;
  }
  @media screen and (min-width: 1024px) {
    .collapsible {
      font-size: 3rem;
    }
  }

  /* Specific label positioning */
  .label-drawings {
    top: 360px; /* above marker */
  }

  @media screen and (min-width: 1024px) {
    .label-drawings {
        top: 420px; /* above marker */
      }
}
  
  .label-paintings {
    top: 390px; /* above paintbrush */
  }

  @media screen and (min-width: 1024px) {
    .label-paintings {
        top: 480px; /* above marker */
      }
}

  .marker-spacer {
    height: 200px; /* or whatever height matches the marker */
  }


  .cr-container {
    text-align: center;
    position: absolute;
    left: 0%;
    bottom: -30%;
    width: 100%;
  }
  
  .cr {
    font-size: 0.75rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color:#3d181e;
  }

  @media screen and (min-width: 1024px) {
    .cr-container {
      text-align: center;
      position: absolute;
      left: 0%;
      width: 100%;
      bottom:-50%;
    }
  }




