body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #181818;
    color: white;
    overflow-x: hidden;
}

.return-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1.8em;
    z-index: 100;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease;
}

.return-icon:hover {
    transform: scale(1.2);
}

.watermark {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);  
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2em;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 50;
  text-align: center;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body-title {
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 2px;
}

.body-years {
  font-size: 0.85em;
  opacity: 0.6;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}

.body-tools {
  font-size: 0.75em;
  opacity: 0.5;
  letter-spacing: 1px;
  text-transform: none; 
}

@media (max-width: 600px) {
  .watermark {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 12px; 
    font-size: 1.2em; 
    top: 10px;
    padding: 0 10px;
    text-align: center;
  }

  .body-title,
  .body-years,
  .body-tools {
    font-size: 0.85em;
    margin: 0;
    white-space: nowrap; 
  }
    
  body {
    padding-top: 40px;  
  }
}

.art-gallery {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.art-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.art-gallery img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.art-gallery img:hover {
    transform: scale(1.05);
}

/* Fullscreen Modal */

.fullscreen-modal {
    display: none; 
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.close-fullscreen {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.2s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* subtle black shadow */
}

.close-fullscreen:hover {
    transform: scale(1.2);
}

.fullscreen-content {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.fullscreen-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    margin-bottom: 20px; 
}

.fullscreen-caption {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    max-width: 90vw;
    text-align: center;
}

@media (max-width: 600px) {
    .art-gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        margin-top: 80px;
    }
}

.release-date a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.release-date a:hover {
    color: #ffffff;
}

.artist-statement-container {
    max-width: 800px;
    margin: 60px auto 20px;
    padding: 0 20px;
    text-align: center;
}

.toggle-button {
    background: none;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-button:hover {
    color: white;
    border-color: white;
}

.artist-statement {
    margin-top: 20px;
    font-size: 0.95em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.vr-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline dotted;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.vr-link:hover {
    color: white;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

