/*
Theme Name: Branded Burro
Theme URI: https://brandedburro.com
Description: Custom theme for Branded Burro shell company marketplace
Version: 1.0
Author: Branded Burro
*/

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── TYPOGRAPHY ─── */

.anton {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ─── SITE HEADER / NAV ─── */

.site-header {
    background: #fff;
    border-bottom: 1.5px solid #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-wordmark {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.site-wordmark a {
    color: #000;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.primary-nav a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000;
    transition: opacity 0.15s;
}

.primary-nav a:hover {
    opacity: 0.5;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
}

/* ─── HERO ─── */

.hero {
    background: #000;
    padding: 100px 24px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 7vw, 80px);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
    max-width: 800px;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 18px;
    color: #fff;
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 28px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 28px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* ─── FEATURED BURROWS ─── */

.featured-burros {
    background: #fff;
    padding: 80px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 48px;
}

.burros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.burro-card {
    border: 1.5px solid #000;
    display: flex;
    flex-direction: column;
}

.burro-card-image {
    height: 200px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burro-card-image-placeholder {
    font-family: 'Anton', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

.burro-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.burro-card-name {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.burro-card-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

.burro-card-price {
    font-family: 'Anton', sans-serif;
    font-size: 26px;
    color: #000;
    margin-top: auto;
    padding-top: 12px;
}

.burro-card-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    border-top: 1px solid #000;
    padding: 12px 20px;
    display: block;
    transition: background 0.15s, color 0.15s;
}

.burro-card-link:hover {
    background: #000;
    color: #fff;
}

/* ─── WHATS IN A BURROW ─── */

.whats-in {
    background: #f2f2f2;
    padding: 80px 24px;
}

.whats-in-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.whats-in-left .section-heading {
    margin-bottom: 32px;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checklist li {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.01em;
}

.checklist li span.check {
    font-size: 18px;
    color: #000;
    flex-shrink: 0;
}

.whats-in-right-box {
    background: #000;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whats-in-right-box .box-headline {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.whats-in-right-box .box-subtext {
    font-size: 16px;
    color: #888;
    line-height: 1.5;
}

.btn-white {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 28px;
    border: 2px solid #fff;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 8px;
    transition: background 0.15s, color 0.15s;
}

.btn-white:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}

/* ─── FOOTER ─── */

.site-footer {
    background: #000;
    padding: 0 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 24px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-wordmark {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-nav {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    transition: opacity 0.15s;
}

.footer-nav a:hover {
    opacity: 0.5;
}

.footer-bottom {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.04em;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
    .burros-grid {
        grid-template-columns: 1fr 1fr;
    }

    .whats-in-grid {
        grid-template-columns: 1fr;
    }

    .whats-in-right-box {
        padding: 36px 28px;
    }
}

@media (max-width: 640px) {
    .primary-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1.5px solid #000;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .primary-nav.open {
        display: flex;
    }

    .primary-nav li {
        width: 100%;
        border-bottom: 1px solid #f2f2f2;
    }

    .primary-nav a {
        display: block;
        padding: 14px 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .burros-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 72px 24px;
    }

    .hero-headline {
        font-size: clamp(36px, 10vw, 56px);
    }

    .hero-subtext {
        font-size: 16px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        gap: 16px;
    }
}
