/*
Theme Name: Naturopathy by Randa
Theme URI: https://naturopathybyranda.com/
Author: Thinking Muscle
Description: Clean boutique clinical theme for Naturopathy by Randa.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: nbyr
*/

body {
    margin: 0;
}

.site-header {
    background: rgba(255, 253, 248, 0.96);
    border-bottom: 1px solid var(--nbyr-line, #ded8cc);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-bar .site-header {
    top: 32px;
}

.site-header__inner,
.site-footer__inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1120px;
    padding: 18px 20px;
}

.site-brand {
    color: var(--nbyr-ink, #26312d);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    font-weight: 500;
    text-decoration: none;
}

.site-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
}

.site-nav a {
    color: var(--nbyr-ink, #26312d);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--nbyr-clay, #b96f5f);
}

.site-main {
    min-height: 62vh;
}

.site-footer {
    background: var(--nbyr-ink, #26312d);
    color: #fffdf8;
}

.site-footer__inner {
    align-items: flex-start;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(180px, 0.6fr);
    padding-bottom: 38px;
    padding-top: 38px;
}

.site-footer h2,
.site-footer h3 {
    color: #fffdf8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    font-weight: 500;
    margin: 0 0 12px;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 253, 248, 0.82);
}

.site-footer a:hover,
.site-footer a:focus {
    color: #fffdf8;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 253, 248, 0.16);
    margin: 0 auto;
    max-width: 1120px;
    padding: 18px 20px;
}

.site-footer__bottom p {
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 800px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .site-header__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .site-nav {
        gap: 12px 16px;
        justify-content: flex-start;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .admin-bar .site-header {
        top: 0;
    }
}

