body {
    /* font-family: Arial, sans-serif; */
    font-family: "the-seasons", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 24px;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header h1 {
    float: left;
    margin: 0;
    padding: 0 20px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 80%; /* Adjust width as needed */
    height: 100vh; /* Full screen height */
    background: #333;
    transition: right 0.3s ease; /* Slide-in effect */
    z-index: 1000; /* Ensure it appears above other content */
    overflow-y: auto; /* Allow scrolling if needed */
}

header nav .menu.active {
    right: 0; /* Slide in from the right */
}

header nav .menu li {
    margin: 20px 0;
    text-align: center;
}

header nav .menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
    padding: 10px;
    transition: background 0.3s ease;
}

header nav .menu li a:hover {
    background: #444;
}

header nav .menu li a.fl-menu-selected {
    background: #555; /* A slightly lighter shade than the header */
    color: #fff; /* Ensure text remains readable */
}

.mobile-menu {
    display: block;
    cursor: pointer;
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 20px;
    z-index: 1100; /* Ensure it appears above the menu */
}

main {
    padding: 20px 0;
    padding-bottom: 200px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer .container > div {
    display: flex;
    justify-content: center;
}

footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

footer .footer-menu li {
    margin: 0 15px;
}

footer .footer-menu li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-menu li a:hover {
    color: #ddd;
}

main img {
    max-width: 100%;
    height: auto;
    max-height: 400px; /* Adjust as needed for your design */
    display: block;
    margin: 0 auto; /* Center by default */
    border-radius: 8px; /* Rounded corners */
    border: 2px solid #fff; /* White border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    float: right;
}

main img::after {
    content: "";
    display: table;
    clear: both;
}

main blockquote {
    /*font-style: italic;*/
    color: #555;
    border-left: 5px solid #ccc;
    margin: 20px 0;
    padding: 10px 20px;
    /*background-color: #f9f9f9;*/
    position: relative;
    float: right;
    width: 33%;
}

main blockquote::after {
    content: "";
    display: table;
    clear: both;
}

main blockquote footer {
    text-align: right;
    font-size: 0.9em;
    color: #888;
}

/*
@media (min-width: 769px) {
    main img {
        float: right;
        margin: 0 0 20px 20px;
    }
} 
*/

/*
@media (max-width: 768px) {
    blockquote {
        float: right;
        width: 80%;
        margin: 10px 0 10px 20px;
    }
}
*/

@media (max-width: 768px) {
    body {
        font-size: 18px;
    }

    .mobile-menu {
        display: block;
    }

    header nav .menu {
        display: none;
        flex-direction: column;
        background: #444;
        position: absolute;
        width: 100%;
        top: 50px;
        left: 0;
    }

    header nav .menu.active {
        display: flex;
    }

    header nav .menu li {
        text-align: center;
        margin: 10px 0;
        float: none;
    }
}

@media (min-width: 769px) {
    header nav .menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: none;
        right: auto;
        transition: none;
    }

    header nav .menu li {
        margin: 0 15px;
    }

    .mobile-menu {
        display: none;
    }
}