/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    text-align: center;
    background-color: #2c3e50;
    color: white;
    padding: 20px 10px;
}

h1 {
    margin: 0;
    font-size: 1.8em; /* Slightly larger heading */
}

p {
    font-size: 1em;
    line-height: 1.5;
}

/* Main Content */
main {
    max-width: 90%;
    margin: 20px auto;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Artist List */
.artist-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Artist Card */
.artist-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: 0.3s ease;
}

.artist-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Artist Profile */
.artist-profile {
    text-align: center;
}

/* Responsive Artist Image */
.artist-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 10px auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #2c3e50;
    color: white;
    margin-top: 20px;
}

footer a {
    text-decoration: none;
    color: inherit;
}

/* Portfolio Section */
.artist-portfolio {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f0fe;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.artist-portfolio h2 {
    color: #2c3e50;
    font-size: 1.5em;
}

/* Responsive Portfolio Gallery */
.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}

/* Social Links */
.artist-links {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.artist-links h2 {
    font-size: 1.2em;
    color: #2c3e50;
}

/* Mobile-Friendly Social Links */
.artist-links ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.artist-links li {
    margin: 5px;
}

/* Touch-Friendly Buttons */
.artist-links a, .btn {
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    padding: 12px 15px;
    border-radius: 5px;
    background-color: #ffffff;
    border: 1px solid #2c3e50;
    transition: 0.3s ease;
    display: inline-block;
    font-size: 0.9em;
}

.artist-links a:hover, .btn:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    header {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    main {
        max-width: 95%;
        padding: 10px;
    }

    .artist-card {
        max-width: 90%;
    }

    .thumbnail {
        width: 75px;
        height: 75px;
    }

    .artist-links ul {
        flex-direction: column;
        align-items: center;
    }
}