/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Clash Display', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

/* Header and Navigation */
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #777777;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #607D8B;
}

/* Main Content */
main {
    padding: 80px 5% 40px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333333;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.post-meta {
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 2rem;
}

.post-meta span {
    margin-right: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #607D8B;
}

/* Style for back to home link */
.back-button {
    text-decoration: none;
    color: #333333; /* Change to desired color */
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.back-button:hover {
    color: #607D8B; /* Change to desired hover color */
}

/* Footer */
footer {
    background-color: #333333;
    color: #FFFFFF;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .blog-post h1 {
        font-size: 2rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }
}