/*
Theme Name: Emes Baked Goods
Theme URI: https://outsourceai.io
Author: OutsourceAI
Author URI: https://outsourceai.io
Description: Basic WP template for vibe coding
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aideveloper
*/

/*** Custom Styling Here ***/

.site-header {
    background: rgba(247, 243, 236, 0.9);
    border-bottom: 1px solid rgba(24, 21, 18, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header__nav {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 80rem;
    padding: 0.75rem 1rem;
}

.site-header__brand {
    align-items: center;
    display: flex;
    min-width: 0;
}

.site-header__logo {
    display: block;
    height: 2.75rem !important;
    max-height: 2.75rem !important;
    max-width: min(11rem, 42vw) !important;
    object-fit: contain;
    width: auto !important;
}

@media (min-width: 640px) {
    .site-header__logo {
        height: 3.5rem !important;
        max-height: 3.5rem !important;
    }
}

@media (min-width: 768px) {
    .site-header__nav {
        gap: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .site-header__logo {
        height: 4rem !important;
        max-height: 4rem !important;
    }
}

.site-footer {
    background: #181512;
    color: #fffaf3;
    padding: 3rem 1.25rem;
}

.site-footer__inner {
    display: grid;
    gap: 2rem;
    margin: 0 auto;
    max-width: 80rem;
}

.site-footer__logo {
    display: block;
    filter: brightness(0) invert(1);
    height: 4rem !important;
    max-height: 4rem !important;
    max-width: 12rem !important;
    object-fit: contain;
    width: auto !important;
}

.site-footer__heading {
    color: #fffaf3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.96;
    margin: 1.5rem 0 0;
    max-width: 42rem;
}

.site-footer__copy {
    color: rgba(255, 250, 243, 0.7);
    font-size: 1rem;
    line-height: 1.75;
    margin: 1.25rem 0 0;
    max-width: 36rem;
}

.site-footer__links {
    color: rgba(255, 250, 243, 0.72);
    display: grid;
    font-size: 0.875rem;
    font-weight: 800;
    gap: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer__links a {
    color: inherit;
    display: block;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: #fff;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 250, 243, 0.5);
    font-size: 0.875rem;
    margin: 2.5rem auto 0;
    max-width: 80rem;
    padding-top: 1.5rem;
}

@media (min-width: 768px) {
    .site-footer__inner {
        align-items: end;
        grid-template-columns: 1.2fr 0.8fr;
    }

    .site-footer__links {
        text-align: right;
    }
}