/* Utility classes for easy application in HTML */
.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-bold { font-weight: 700; }

/* --- Global Styles --- */
body {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 400; /* REGULAR */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
}

.container {
    max-width: 960px;
    margin: auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #333;
    font-weight: 600; /* BOLD */
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

/* --- Header V2 Styles --- */
.site-header {
    position: relative;
    /* Margin to push content down and make space for the hanging logo */
    margin-bottom: 120px; 
}

.header-stripe {
    background-color: #666;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px; /* Add some padding */
}

.header-wordmark {
    height: 60px;
    width: auto;
}

.header-main-logo {
    position: absolute;
    top: 0px;
    left: 60px;
    width: 160px;
    height: 160px;
    z-index: 10; /* Ensure logo is on top */
}

.header-user-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: -100px; /* Pulls it up slightly into the header's space */
    margin-bottom: 20px; /* Add space before main content */
}

.user-name {
    font-weight: 700; /* BOLD */
    font-size: 1.2em;
}

/* Rule to make h1 in the header white */
.site-header h1 {
    color: white;
}

/* NEW styling for stacked, smaller header buttons */
.header-action-button {
    display: flex;
    flex-direction: column;
}
.header-action-button .minor-button {
    width: 150px; /* Give a consistent width */
    box-sizing: border-box;
    padding-top: 4px;
    padding-bottom: 4px;
}
.header-action-button .minor-button:not(:last-child) {
    margin-bottom: 5px;
}

/* --- Footer Styles --- */
.site-footer {
    background-color: #333;
    color: white;
    padding: 20px 0; /* Increased padding */
    margin-top: auto;
    font-size: 0.9em;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links span {
    color: #777;
}

.footer-copyright {
    color: #ccc;
}