/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #35424a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

h1, h2, h3 {
    margin: 0;
}

/* Main Content */
main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

article {
    margin-bottom: 20px;
}

.exhibition-image, .artist-image {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Optional: add rounded corners */
    margin-bottom: 15px; /* Space below the image */
}

.button {
    display: inline-block;
    background: #35424a;
    color: #ffffff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.button:hover {
    background: #2c3e50;
}

/* Contact Section Styles */
#contact {
    background: #ffffff; /* White background for contrast */
    color: #333; /* Dark text color for readability */
    padding: 20px; /* Add padding for spacing */
    border-radius: 5px; /* Optional: rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

#contact h2 {
    color: #35424a; /* Darker color for headings */
}

#contact a {
    color: #35424a; /* Link color */
    text-decoration: none; /* Remove underline */
}

#contact a:hover {
    text-decoration: underline; /* Underline on hover for links */
}

/* Footer Styles */
footer {
    background: #35424a; /* Dark background for the footer */
    color: #ffffff; /* White text color for contrast */
    padding: 20px 0;
    text-align: center;
}

footer h2 {
    color: #929292; /* Ensure headings are white */
}

footer p, footer ul {
    color: #929292; /* Ensure paragraph and list text is white */
}

footer a {
    color: #929292; /* Link color */
    text-decoration: none; /* Remove underline */
}

footer a:hover {
    text-decoration: underline; /* Underline on hover for links */
}

/* Additional styles for the Follow Us section */
#follow-us {
    margin-top: 20px; /* Add some space above the Follow Us section */
}