body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

div {
  margin-bottom: 2em;
}

.main-image {
    max-width: 95%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
}

.site-header {
    height: 100px;
    background-color: #e8dfce;
    padding: 20px;
    justify-content: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.page-content {
    flex-grow: 1; /* Take up remaining space */
    padding: 20px;
    background-color: #f17d62;
    margin-bottom: 0;
    padding-bottom: 0;
    justify-content: center;
}

.site-footer {
    height: 15vh;
    background-color: #b3d68c;
    padding: 20px;
    color: #333333;
    justify-content: center;
}

.post-content, .page-content {
    background-color: #f17d62;
    color: #ffffff;
    padding: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5em;
    color: #333333;
}

.social-icons a:hover {
    color: #f17d62;
}

.footer-section {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.footer-section h3 {
    font-weight: bold;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section p, .footer-section li {
    font-size: 0.9em;
    color: #333333;
}

.site-logo {
    height: 60px;
    width: auto;
    vertical-align: middle;
}

.site-title {
    display: none;
}


.main-menu li {
    display: inline;
}

.main-menu a {
    text-decoration: none;
    color: #333333;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.main-menu a:hover {
    color: #ffffff;
    background-color: #f17d62;
    border-radius: 5px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    background: none;
    border: none;
    cursor: pointer;
    color: #333333;
}

@media (max-width: 767px) {
    .menu-toggle {
        display: inline-block; /* Show the burger icon */
        font-size: 1.5em;
        background: none;
        border: none;
        cursor: pointer;
        color: #333333;
    }
    .header-inner {
        justify-content: flex-start;
    }
    .site-logo {
        margin-left: 10px; /* Add spacing if needed */
    }
    .main-menu ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 100%; /* Below the header */
        left: 10px;
        width: calc(100% - 20px); /* Full width with some padding */
        background-color: #f17d62;
        padding: 10px;
        border-radius: 5px;
        z-index: 10;
    }
    .main-menu ul.show {
        display: flex;
    }
}
