/* styles.css */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #333;
    color: white;
    transition: background-color 0.3s;
}

.navbar:hover {
    background-color: #444;
}

.navbar .logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 3px;
}
.navbar .logo a {
    color: #fff;
    text-decoration: none;
 }

.navbar .hamburger-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.navbar .menu {
    display: flex;
    gap: 25px;
}

.navbar .menu a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.navbar .menu a:hover {
    background: #575757;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    }

    .navbar .menu.active {
        display: flex;
    }

    .navbar .hamburger-menu {
        display: block;
    }
}

.content {
    padding: 20px 5px 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-grow: 1;
}

.content h1, .content h2 {
    color: #444;
}

.content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}
.article{
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    background: white;
    border-radius: 5px;
}
.post-header {
    border-bottom: 2px solid #ddd;      
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.post-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 14px;
    color: #777;
}

.post-meta span {
    margin-right: 15px;}
    


.footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 20px;
    font-size: 14px;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    bottom: 0;
}

.footer .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px 0;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .footer .row {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }
}

.footer .column {
    margin: 10px 0;
    padding: 0 15px;
    max-width: 300px;
}

.footer .column h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.footer .column p, .footer .column a {
    color: #bbb;
    line-height: 1.6;
    text-decoration: none;
}

.footer .column a:hover {
    color: #0be6c1;
}

