/* ============================================================
   DARK GLOVE RECORDINGS — Artists Page Stylesheet
   Web 1.0 Style | styleartists.css
   ============================================================ */


/* ------------------------------------------------------------
   BACKGROUND
   Replace 'bg-stars.gif' with your own tiling background image
   ------------------------------------------------------------ */
body {
  background-image: url('images/bg-stars.gif'); /* <-- REPLACE with your background image */
  background-repeat: repeat;
  color: #ffffff;
  font-family: "Comic Sans MS", cursive;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* ------------------------------------------------------------
   NAVIGATION BAR
   ------------------------------------------------------------ */
.navbar {
  background-color: #ca0d0d; /* <-- REPLACE with your navbar color */
  padding: 5px;
  font-size: 20px;
}

.navbar img {
  vertical-align: middle;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
}

.navbar a:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------
   RAINBOW RULE DIVIDER
   Replace 'rainbow-rule.gif' with your own divider image
   ------------------------------------------------------------ */
hr.rainbow {
  border: 0;
  height: 20px;
  background: url('images/rainbow-rule.gif') repeat-x; /* <-- REPLACE with your divider image */
}

/* ------------------------------------------------------------
   PAGE TITLE
   ------------------------------------------------------------ */
h1.page-title {
  font-size: 2.5em;
  color: #ff0000; /* <-- REPLACE with your title color */
  text-shadow: 2px 2px #000000;
}

/* ------------------------------------------------------------
   BLINKING TEXT EFFECT
   Apply class="blink" to any element you want to blink
   ------------------------------------------------------------ */
.blink {
  animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to { visibility: hidden; }
}

/* ------------------------------------------------------------
   ARTIST CARD
   Each artist gets wrapped in a <div class="artist-card">
   ------------------------------------------------------------ */
.artist-card {
  border: 3px solid #ff0000; /* <-- REPLACE with your border color */
  background-color: rgba(0, 0, 0, 0.6); /* <-- REPLACE with your card background */
  margin: 30px auto;
  padding: 20px;
  width: 80%;
  max-width: 800px;
}

/* ------------------------------------------------------------
   ARTIST BANNER IMAGE
   Placeholder banner at top of each card — swap in your image
   The banner sits inside <div class="artist-banner">
   ------------------------------------------------------------ */
.artist-banner {
  width: 100%;
  height: 150px;
  background-color: #333333; /* shows if no image is set */
  background-image: url('images/eyes.gif'); /* <-- REPLACE per artist */
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid #ff0000; /* <-- REPLACE with your accent color */
  margin-bottom: 15px;
}

/* ------------------------------------------------------------
   ARTIST PHOTO
   Circular photo placeholder — swap in your image per artist
   The photo sits inside <div class="artist-photo">
   ------------------------------------------------------------ */
.artist-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ff0000; /* <-- REPLACE with your accent color */
  background-color: #555555; /* shows if no image is set */
  background-image: url('images/PGlogo.png'); /* <-- REPLACE per artist */
  background-size: cover;
  background-position: center;
  margin: 0 auto 15px auto;
}

/* ------------------------------------------------------------
   ARTIST NAME
   ------------------------------------------------------------ */
.artist-name {
  font-size: 2em;
  color: #ffff00; /* <-- REPLACE with your artist name color */
  text-shadow: 1px 1px #000000;
  margin: 5px 0;
}

/* ------------------------------------------------------------
   GENRE TAG
   ------------------------------------------------------------ */
.artist-genre {
  font-size: 0.9em;
  color: #00ffff; /* <-- REPLACE with your genre tag color */
  margin-bottom: 10px;
}

/* ------------------------------------------------------------
   ARTIST BIO TEXT
   ------------------------------------------------------------ */
.artist-bio {
  font-size: 1em;
  color: #ffffff;
  margin: 10px auto;
  max-width: 600px;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   RELEASES SECTION
   ------------------------------------------------------------ */
.releases-title {
  font-size: 1.2em;
  color: #ff9900; /* <-- REPLACE with your releases heading color */
  text-decoration: underline;
  margin-top: 15px;
}

.releases-list {
  list-style: none;
  padding: 0;
  margin: 8px auto;
}

.releases-list li {
  margin: 4px 0;
  color: #ffffff;
}

/* ------------------------------------------------------------
   LINKS / BUTTONS
   ------------------------------------------------------------ */
.artist-links {
  margin-top: 15px;
}

.artist-links a {
  display: inline-block;
  margin: 5px;
  padding: 6px 14px;
  background-color: #cc0000; /* <-- REPLACE with your button color */
  color: #ffffff;
  text-decoration: none;
  border: 2px solid #ffffff;
  font-family: "Comic Sans MS", cursive;
  font-size: 0.95em;
}

.artist-links a:hover {
  background-color: #ffffff; /* <-- REPLACE with your button hover color */
  color: #000000;
}

/* ------------------------------------------------------------
   DECORATIVE DIVIDER BETWEEN ARTISTS
   Replace 'laserline.gif' with your own divider image
   ------------------------------------------------------------ */
.artist-divider {
  width: 80%;
  margin: 10px auto;
  border: 0;
  height: 10px;
  background: url('images/laserline.gif') repeat-x; /* <-- REPLACE with your divider image */
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  margin-top: 30px;
  padding: 10px;
  font-size: 0.8em;
  color: #aaaaaa;
}
