/* -----------------------------
   Daisy Page CSS
----------------------------- */

/* Reset / Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #f5f5f5 url('textures/light-paper.jpg') repeat;
    color: #222;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    padding: 40px;
    text-align: center;
  }
  
  /* Header */
  .file-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .file-header h1 {
    font-family: 'Georgia', serif;
    font-size: 3em;
    color: #446; /* muted blue-gray */
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(68,68,102,0.3);
    font-weight: normal;
  }
  
  .file-header p {
    color: #666;
    font-style: italic;
    margin-top: 5px;
  }
  
  /* File Content */
  .file-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    text-align: left;
  }
  
  .file-content section {
    margin-bottom: 30px;
  }
  
  .file-content h2 {
    font-family: 'Georgia', serif;
    color: #446;
    border-bottom: 2px solid #bbb;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 1.8em;
  }
  
  .file-content p {
    font-family: 'Courier New', monospace;
    background: rgba(0,0,0,0.03);
    padding: 10px;
    border-left: 4px solid #446;
    line-height: 1.5;
    color: #333;
  }
  
  /* Contact / Copy Email Button */
  .contact {
    text-align: center;
  }
  
  .contact button {
    background: #446;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-family: 'Georgia', serif;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact button:hover {
    background: #668;
    box-shadow: 0 0 10px rgba(68,68,136,0.5);
  }
  
  .copy-msg {
    display: none;
    margin-top: 10px;
    color: #446;
    font-style: italic;
  }
  
  /* Back to Home Button */
  .back-home {
    text-align: center;
    margin-top: 20px;
  }
  
  .back-home button {
    background: #bbb;
    color: #222;
    border: none;
    padding: 10px 20px;
    font-family: 'Georgia', serif;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .back-home button:hover {
    background: #446;
    color: #fff;
    box-shadow: 0 0 10px rgba(68,68,102,0.5);
  }
  
  /* Footer */
  .file-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9em;
    color: #777;
  }
  
  /* Art Gallery */
  .art-gallery {
    margin-top: 30px;
  }
  
  .art-gallery h2 {
    font-family: 'Georgia', serif;
    color: #446;
    border-bottom: 2px solid #bbb;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.8em;
    text-align: left;
  }
  
  .art-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .art-item {
    background: rgba(0,0,0,0.03);
    border-left: 4px solid #446;
    padding: 10px;
    border-radius: 6px;
    max-width: 300px;
    text-align: center;
  }
  
  .art-item img {
    max-width: 100%;
    border-radius: 4px;
    display: block;
    margin: 0 auto 8px auto;
  }
  
  .art-item p {
    font-size: 0.9em;
    color: #555;
    font-family: 'Courier New', monospace;
    margin-top: 5px;
  }
  
  #lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 245, 0.95); /* light grey overlay */
    display: flex;           
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: zoom-out;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #ccc;  /* soft grey border */
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2); /* subtle shadow */
}

.hidden {
    display: none !important; 
}
