/* General Body Styles */
body {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #ffffff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    float: left;
    margin: 0;
    font-weight: 400;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav a {
    color: #555;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #005f73;
}

/* Hero Section */
#hero {
    background: #e9ecef;
    text-align: center;
    padding: 80px 0;
    border-bottom: 1px solid #ddd;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

/* Main Content Sections */
section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: #005f73;
}

#about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Artist Grid */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.artist-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.artist-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.artist-card img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    margin-bottom: 15px;
}

.artist-card h4 {
    margin: 10px 0 5px 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.artist-card h5 {
    margin: 0 0 10px 0;
    color: #777;
    font-weight: 400;
}

/* Gallery Grid */
#gallery p {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
    color: #666;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-grid figure {
    margin: 0;
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px;
}

.gallery-grid img {
    width: 100%;
    display: block;
}

.gallery-grid figcaption {
    text-align: center;
    padding: 10px 0;
    font-style: italic;
    color: #555;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #90e0ef;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media(max-width: 768px) {
    header h1, header nav {
        float: none;
        text-align: center;
    }

    header nav {
        margin-top: 10px;
    }
    
    header nav a {
        margin: 0 10px;
    }
    
    #hero h2 {
        font-size: 2rem;
    }
}
