/* === layout-header-footer.css — хедер і футер === */
/* Хедер */
.site-header {
    padding-top: 30px;
    text-align: center;
}
.logo-container {
    display: inline-block;
}
.logo img {
    max-height: 80px;
    display: block;
    margin: 0 auto;
}
.logo-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}
/* Top Bar */
.top-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.top-bar a:last-child {
    margin-right: 0;
}
.top-bar a:hover {
    color: #ff9800;
}
.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
}
/* Footer */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    font-size: 16px;
    width: 100%;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}
.footer-logo {
    max-height: 60px;
    margin: 0 auto;
}
.footer-right p {
    margin: 4px 0;
}
.footer-right a {
    color: #fff;
    text-decoration: underline;
}
.footer-right a:hover {
    color: #ff9800;
}
/* ПК: горизонтальне розміщення футера */
@media (min-width: 992px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    .footer-logo {
        margin: 0;
    }
    .footer-right {
        text-align: right;
    }
}