body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#site-header-body{
    background-image: url('/images/6b23f8e4-43a3-41db-9e55-e796bd249755.jpg');
    background-position: center;
    background-repeat: repeat;
}

header {
    background-image: url('images/6b23f8e4-43a3-41db-9e55-e796bd249755.jpg'); /* The path to your image */                   /* Resizes the background image to cover the entire container */
    background-position: center;                   /* Centers the image within the container */
    background-repeat: repeat;                  /* Prevents the image from tiling */
    /* Other styling properties (e.g., color, padding) */
    background: #333;
    color: white;
    padding: 1em;
}

header h1 {
    margin: 0;
}

nav a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 1em;
}

footer {
    background: #f4f4f4;
    text-align: center;
    padding: 1em;
    margin-top: 2em;
}

/* Responsive layout and mobile menu */
img { max-width: 100%; height: auto; }

/* Header layout */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-logo { width: 80px; height: auto; object-fit: contain; }

/* Navigation */
nav#site-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

nav#site-nav a {
    padding: 0.5rem 0.75rem;
    display: inline-block;
}

/* Menu toggle button (hidden on wider screens) */
#menu-toggle {
    font-size: 1.35rem;
    background: transparent;
    border: none;
    color: white;
    display: none;
}

@media (max-width: 768px) {
    #menu-toggle { display: block; }
    nav#site-nav { display: none; width: 100%; flex-direction: column; }
    nav#site-nav.open { display: flex; }
    nav#site-nav a { width: 100%; padding: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
    header h1 { font-size: 1.1rem; }
}

/* Improve touch targets */
nav#site-nav a { touch-action: manipulation; }

