/* Gemeinsame Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    color: #333;
}

/* Äußere Container-Div */
.container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Stile für die Künstlerseite und Galerie */
.artist-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    margin-right: 15px;
}

.artist-info {
    flex: 1;
}

.artist-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.artist-bio {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.artist-links {
    font-size: 14px;
}

.artist-links a {
    color: #007bff;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s ease-in-out;
}

.artist-links a:hover {
    color: #0056b3;
}

.gallery-box {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    justify-content: space-between;
}

.gallery-item {
    flex: 0 0 calc(25% - 20px);
    margin: 10px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Neuer Stil für den Galerietitel */
.gallery-title {
    text-align: center;
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
    color: #444;
}
