﻿/* HubPet Base minimal styles */
:root {
    --hubpet-container: 1200px;
    --hubpet-gap: 1rem;
    --hubpet-text: #1f2937;
    --hubpet-bg: #ffffff;
    --hubpet-border: #e5e7eb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--hubpet-text);
    background: var(--hubpet-bg);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: min(100% - 2rem, var(--hubpet-container));
    margin-inline: auto;
}

.site-header,
.site-footer {
    border-bottom: 1px solid var(--hubpet-border);
}

.site-footer {
    border-top: 1px solid var(--hubpet-border);
    border-bottom: 0;
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--hubpet-gap);
    min-height: 72px;
}

#primary-menu,
#footer-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

#primary-menu a,
#footer-menu a,
a {
    color: inherit;
    text-decoration: none;
}

.site-main {
    padding: 2rem 0;
}

.entry + .entry {
    margin-top: 2rem;
}

.widget {
    margin-bottom: 1.5rem;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.screen-reader-text:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0;
    }

    #primary-menu,
    #footer-menu {
        flex-wrap: wrap;
    }
}
