.artist-grid{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap: 60px;
    flex-wrap:wrap;
    margin-top:40px;

}
.artist-card{
    width:350px;
    height:auto;
    text-align:center;

}

.back-link{
  color: #00ff66;
  text-decoration:none;
}
.back-link:visited{
  color: #808080;
}
.back-link:hover{
  color: #ffffff;
}
.back-link:active{
  color: #00ff66
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
    margin-top:60px;
}

.gallery img{
    width:100%;
    border:2px solid #00ff88;
    border-radius:10px;
}

.gallery2 img{
    width:400px;
    height:400px;
    border:2px solid #00ff88;
    transition:transform 0.3s ease;
    cursor:pointer;
    position:relative;
}
.gallery2 img:hover{
    box-shadow:0 0 25px #00ff88
}
.gallery3 img{
    width:400px;
    height:400px;
    border:2px solid #00ff88;
    border-radius:10px;
}
.artist-photo {
  width: 325px;
  height: auto;
  display: block;
  margin: 20px auto;
  border: 3px solid #00ff66;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
}
.artist-photo2 {
  width: 900px;
  height: auto;
  display: block;
  margin: 20px auto;
  border: 3px solid #00ff66;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
}

.mission-box{
  width:100%;
  max-width:1100px;
  margin:40px auto;
  padding:30px;
  
  border:2px solid #00ff88;
  border-radius: 15px;
  
  background: rgba(0, 0, 0, 0.35);
  
  box-shadow:0 0 20px rgba(0, 225, 102, 0.25);
  text-align:center;

}
.mission-box h2{
  text-align:center;
  color: #00ff88;
  margin-bottom:20px;

}

.mission-box p{
  line-height:1.8;
}

.section-divider{
  width: 100%;
  margin: 75px auto;
  border: 0;
  border-top: 2px solid #00ff66;
  opacity: 0.5;
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    display:flex;
    flex-direction:column;
    min-height:100vh;
    
    background: #050505;
    color: #e8e8e8;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

header {
    /*background-image: url("Images/backgrounds/City.png");*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px 20px;
    text-align: center;

    background: #101010;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px solid #00ff66;
}

header h1 {
    font-size: 3rem;
    color: #00ff88;
    font-weight: bold;
    text-shadow:0 0 10px #00ff88
}

nav {
    background: #1b1b1b;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
}

nav a {
    color: #00ff66;
    text-decoration: none;
    font-weight: bold;
    transition: .25s;
}

nav a:hover {
    color: white;
}

.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    color: #00ff66;
    margin-bottom: 20px;
}

.hero h3{
    font-size: 1.5rem;
    color: #00ff66;
}

.hero p {
    color: #cccccc;
    font-size: 1.2rem;
    text-align:center;
}

footer {
    text-align: center;
    padding: 20px;
    background: #101010;
    border-top: 2px solid #00ff66;
    color: #999999;
}
@media (max-width: 768px) {

    nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .artist-photo2 {
        width: 100%;
        max-width: 900px;
    }

    .gallery2 img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .gallery3 img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    header h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 50px 15px;
    }
}
