/* Custom cursor */
body {
  font-family: 'gibson', sans-serif;
  margin: 0;
  background: #fff;
  color: #111;
  overflow-x: hidden;
  cursor: url("https://glarc.neocities.org/images/logosmall.jpg") 16 16, auto;
}

/* Header */
.site-header {
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
}

.site-header h1 {
  font-family: 'gibson', sans-serif;
  font-size: 5rem;
  margin: 0;
  letter-spacing: 2px;
}

/* Scrolling images */
.scrolling-images {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  gap: 1rem;
  margin-top: 1rem;
}

.scrolling-images img {
  animation: scroll-left 15s linear infinite;
}

/* Reverse footer scroll */
.bottom-scroll img {
  animation: scroll-left 15s linear infinite reverse;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Main layout */
.main-container {
  display: flex;
  padding: 2rem;
  gap: 4rem;
}

/* Left sections */
.artist-sections {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section h2 {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section li {
  cursor: pointer;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.section li:hover {
  animation: flash-color 0.8s infinite alternate;
}

@keyframes flash-color {
  0% { color: #0077cc; }
  100% { color: #FF00FF; }
}

/* Right info panel */
.artist-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start; 
}

.artist-info img {
  width: 300px;
  border-radius: 5px;
  margin-bottom: 1rem;
  display: none;
  transition: opacity 0.5s ease;
}

/* Floating hover image */
#hover-image {
  position: absolute;
  width: 300px;
  pointer-events: none;
  display: none;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

/* Footer */
.site-footer {
  padding: 1rem 2rem;
  border-top: 1px solid #ccc;
}


.center-box {
  max-width: 800px;        /* limits the width so text isn’t too wide */
  margin: 0 auto;          /* centers it horizontally */
  padding: 20px;           /* optional: spacing inside the box */
  background: rgba(255,255,255,0.8); /* optional: subtle background */
  border: 1px solid #ccc;  /* optional: border around box */
  box-sizing: border-box;  /* ensures padding doesn’t break layout */
}