body {
    font-family: Helvetica Neue, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}

.navbar {
    background-image: url('nav_banner_sunset.png');
    background-size: cover; /* Resize the background image to cover the entire container */
    background-repeat: no-repeat; /* Do not repeat the image */    background-color: #333;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}


.navbar-expanded {
    background-image: url('nav_banner_sunset_expand.png');
    background-size: cover; /* Resize the background image to cover the entire container */
    background-repeat: no-repeat; /* Do not repeat the image */    background-color: #333;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    background-color: white;
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px auto;
}

.right-image {
    float: right;
    margin-left: 20px;
    max-width: 35%; /* You can adjust the width as needed */
}

.left-image {
    float: left;
    margin-right: 20px;
    max-width: 35%; /* You can adjust the width as needed */
}

h1 {
    font-size: 28px;
    color: #333333; /* Very dark grey */
    font-weight: bold;
    margin: 20px 0;
    line-height: 1.5;
    font-family: 'Helvetica Neue', sans-serif;
}


h2 {
    font-size: 24px; /* Slightly smaller than H1 */
    color: #333333; /* Very dark grey */
    font-weight: bold;
    margin: 15px 0;
    line-height: 1.4; /* Consistent line height */
    font-family: 'Helvetica Neue', sans-serif; /* Same font family */
}

.header {
    font-size: 32px; /* Larger than the general H1 */
    color: #333333; /* Custom color if needed */
    /* Other custom styles as needed */
}



#logo {
    height: 50px; /* adjust as needed */
}

.nav-list {
    list-style: none;
    padding-right: 20px;
    display: flex;
    flex-wrap: wrap;
}

.nav-list li {
    display: inline;
    padding: 20px;
}

.nav-list a {
    color: white;
    text-decoration: none;
}

.main-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* make sure the dropdown appears on top of the main content */
}


.site-footer {
    background-color: #333333; /* Dark grey background */
    color: #ffffff; /* White text */
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    margin: 0 10px; /* Space between icons */
}

.social-links img {
    height: 24px; /* Adjust size as needed */
    width: auto;
}

.discreet-link {
    font-size: 12px; /* Smaller font size */
    color: #777;     /* Subtle color */
    text-decoration: none; /* Remove underline */
    display: block;  /* Display on a new line */
}

.discreet-link:hover {
    text-decoration: underline; /* Underline on hover */
}


@media screen and (max-width: 850px) {
    .menu-toggle {
        display: block;
        margin-left: auto; /* push the menu to the right */
    }

    .nav-list {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-list.active {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .nav-list li {
        display: block; /* make each list item a block element */
        width: 100%; /* make each list item span the full width of .nav-list */
        padding: 10px; /* add some padding */
        box-sizing: border-box; /* Include padding and border in element's total width and height */
    }
}
