/* --- GENRAL --- */

/* Global Styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* End */

/* Page Header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin: 0;
  font-size: 21px;
}
/* End */

/* Body and Layout */
body {
  color: white;
  font-family: Verdana;
  background: url('neocities/assets/background.jpg') no-repeat center center / cover;
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding: 0 50px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.143);
  z-index: 0;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}
/* End */

/* Content Styles */
p{
  margin-bottom: 32px;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  text-align: left;
}

.centered-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 120px);
  padding: 20px;
  position: relative;
  z-index: 1;
  text-align: left;
}
/* End */

/* Overlay Effect */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
  pointer-events: none;
}
/* End */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* End */

/* Navigation */
.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-image: url('neocities/assets/background.jpg');
  background-size: cover;
  padding: 10px;
  border-radius: 5px;
}

.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
}

.topnav a:hover {
  background-color: black;
}

.topnav a.active {
  background-color: #25ff14;
  color: black;
}
/* End */

/* Links */
a:hover { text-shadow: 0 0 5px white; }

a {
  color: #25ff14;
  text-decoration: none;
}
/* End */

/* --- END --- */


/* --- HOME PAGE -- */
/* Cat (Decoration) */
#jneko {
  position: absolute;
  top: 100%;
  bottom: -85%;
  left: 51.2%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

#jneko img {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  filter: drop-shadow(0px 2px 12px #0007);
  width: 3em;
  height: 3em;
}
/* End */
/* --- END --- */


/* HEADING for current subpage*/
h1, h2, h3, h4, h5, h6 {
  margin-top: 25px;
  margin-bottom: 25px;
  position: relative;
}

h3 {
  text-align: center;
}
/* END */




@keyframes popUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.overlay-content .artists {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 130px; /* consistent size per item */
}

.overlay-content .artists img {
  width: 115px;
  height: 115px;
  object-fit: cover;  /* keeps proportions, no stretch */
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.overlay-content .artists img:hover {
  transform: scale(1.1);
}

.overlay-content .caption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: white;
  text-align: center;
  line-height: 1.2;
}


/* Footer Styles */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 120px);
  padding: 10px;
  bottom: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}
