@charset "utf-8";
/* CSS Document */

/* Global Styles */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background-color: #111;
  color: #eee;
}

header {
  text-align: center;
  padding: 20px;
  background: linear-gradient(90deg, #ff0080, #7928ca, #00eaff);
}

.logo {
  width: 100px;
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #00eaff;
}

h2 {
  font-size: 1.8rem;
  color: #ff0080;
}

h3 {
  font-size: 1.5rem;
  color: #7928ca;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

nav a:hover {
  color: #00eaff;
}

/* Gallery Grid */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  border: 3px solid #ff0080;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 0.9rem;
  color: #ccc;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  margin-top: 40px;
}


/* Font setup */
body {
  margin: 0;
  font-family: 'Press Start 2P', monospace;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Staatliches', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 3rem;
  color: #00eaff;
}

h2 {
  font-size: 1.8rem;
  color: #ff0080;
}

h3 {
  font-size: 1.2rem;
  color: #7928ca;
}


/* Link hover effect */
a {
  color: #00eaff; /* normal link color */
  text-decoration: none;
  transition: color 0.3s ease; /* smooth color fade */
}

a:hover {
  color: #ff0080; /* hover color — bright neon pink */
}


/* Artist profile section */
.artists {
  margin: 40px auto;
  max-width: 900px;
}

.artist-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
}

.artist-profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ff0080;
  object-fit: cover;
}

.artist-profile h3 {
  margin: 0;
  font-family: 'Staatliches', sans-serif;
  color: #00eaff;
}


/* Add larger margins to main content areas */
main {
  margin: 60px auto;
  max-width: 900px;
  padding: 0 20px;
}





