/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

header .logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav a {
    font-size: 1rem;
    font-weight: 700;
}

.hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('hero-image.jpg') no-repeat center center/cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero .btn {
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border-radius: 5px;
}

.featured-artists, .featured-artworks {
    padding: 0px 0px;
    text-align: center;
}

.featured-artists .artist-grid,
.featured-artworks .artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
/*
    border-style: dashed;
    border-color: yellow;
*/
}

.featured-artists .artist-item img,
.featured-artworks .artwork-item img {
    width: 100%;
    height: auto;
}

/*
.featured-artists .artist-item {
    border-style: dotted;
    border-color: green;
}
*/

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 15px;
}
