/* Shared site styles for POH.LV */
html {
    overflow-y: scroll;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.header-logo {
    max-height: 60px;
    width: auto;
}
.header-container {
    background: #252729;
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}
header.header-container a {
    text-decoration: none !important;
}
.site-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}
.site-subtitle {
    position: absolute;
    font-size: 1.1rem;
    opacity: 0.9;
    margin: -0.5rem 0 0 -0.5rem;
    color: #ffc43a;
}
/* Hide H1 title visually but keep for SEO */
.sr-only {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Footer styles */
.footer {
    background: #252729;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.footer p {
    text-align: center;
}

.footer ul {
    text-align: center;
    padding-left: 0;
}

.footer li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
} 