body {
    background-color: slategray;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
    color: #000;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding/border doesn't increase element size */
}

/* --- STICKY FOOTER IMPLEMENTATION --- */

/* 1. Make HTML and BODY fill the viewport height */
html, body {
    height: 100%;
}

/* 2. Turn the body into a Flex container and stack items vertically */
body {
    display: flex;

    background-attachment: fixed;

    /* 2. Scales the image to fill the container without stretching/distortion */
    background-size: cover;

    /* 3. Centers the image so the focal point is usually visible */
    background-position: center;

    /* 4. Ensures the image doesn't tile if the screen is huge */
    background-repeat: no-repeat;

    /* ... keep your existing flex/height styles here ... */
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ------------------------------------ */

/* Wrapper for centering content */
.wrapper {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;

    /* 3. Make the wrapper grow to fill available height */
    flex-grow: 1;

    /* 4. Turn the wrapper into a Flex container for its children */
    display: flex;
    flex-direction: column;

}

/* Header image scaling */
.header img {
    max-width: 1200px;
    width: 100%;
    height: auto;
}

/* 5. Main content area must grow to push the footer down */
.content {
    flex-grow: 1; /* Key change: consumes all available space */
    padding: 20px; /* Add padding for content visibility */
    background-color: rgba(255, 255, 255, 0.6); /* background */
}

.footer {
    /* Added padding and alignment for better appearance */
    padding: 15px 0;
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-size: 1.2em;
    background-color: rgba(255, 255, 255, 0.6); /* background */
}


.header_wrapper {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    /* Ensure the wrapper items stretch to equal height */
    align-items: stretch;
    background-color: #000;
}
.logo {
    width: 200px;
    background-color: #000;
    padding-top: 25px;
}
.logo img {
    width: 200px;
}

.header_desktop {
    background-color: #000;
    /* 1. Makes this div fill the remaining space next to the logo */
    flex: 1;

    /* 2. (Optional) Stops it from getting wider than a specific size */
    max-width: 1000px;

    /* --- UPDATED: Vertical Centering --- */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
}

.header_mobile {
    display: none;
}
.header_desktop img {
    width: 100%;      /* Fills the container width */
    display: block;   /* Removes the bottom gap */
    height: auto;     /* Maintains the correct aspect ratio */
    object-fit: contain;
}

.header_mobile img {
    width: 100%;      /* Fills the container width */
    display: block;   /* Removes the bottom gap */
    height: auto;     /* Maintains the correct aspect ratio */
}

.mainNav2 {
    display: none;
}

.footer img {
    width: 300px;
}

.nav-toggle2 {
    color: #ffd700;
    font-size: 1.4em;
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #000;
    border: none;
}



/* ------------------------------------------------ */
/* MOBILE MEDIA QUERY CHANGES              */
/* ------------------------------------------------ */
@media (max-width: 600px) {

    /* NEW: Use Flexbox to position logo and nav button side-by-side */
    .header_wrapper {
        /* Pushes the first item (.logo) to the left and the subsequent items (.mainNav2) to the right */
        justify-content: space-between;
        /* Vertically center the logo and the button */
        align-items: center;
    }

    .logo {
        /* CHANGE: Remove width: 100% so it doesn't take the full row */
        width: auto;
        text-align: left;
        /* Optional: Adjust logo padding/margin if needed */
        padding-left: 10px;
        padding-top: 0px;
    }

    .logo img {
        width: 150px;
    }

    .header_desktop {
        display: none;
    }
    .header_mobile {
        display: block;
    }
    .mainNav2 {
        display: block;
        /* Optional: Add spacing to the right edge */
        padding-right: 10px;
    }

    .footer img {
        width: 200px;
    }

}





