body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #d2232a;
    color: #fff;
    padding: 10px 0;
}

.nav-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

header nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('https://www.vitaltheatre.org/img/VIT-NewWeb-003.jpg') no-repeat center center/cover;
    color: #fff;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
}

.blog-list {
    background-color: #f4f4f4; /* Background color for the blog list section */
    padding: 40px 0;
}

.blog-list .container,
.blog-post .container,
.related-posts .container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    background-color: #fff; /* Content area background */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-list .blog-post,
.related-posts .blog-post {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    transition: box-shadow 0.3s ease;
}

.blog-list .blog-post:hover,
.related-posts .blog-post:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-list .blog-post img,
.related-posts .blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.blog-list .blog-post h2,
.related-posts .blog-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-top: 15px;
    color: #d2232a;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #d2232a;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-wrapper {
    max-width: 1100px;
    margin: auto;
}
.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.social-media a {
    margin: 0 10px;
    font-size: 24px; /* Adjust the size of the icons */
    color: #d2232a; /* Default color */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
    color: #0000EE; /* Change color on hover to match your website’s theme */
    transform: scale(1.1);
}
