/* ============================================================
   Ai2PRINT — style.css
   Mobile first. Breakpoint: 1024px = desktop
   Brand colours:
     Purple  #5B35E8
     Orange  #F05A38
     Black   #0A0A0A
     Lime    #C8F135
     White   #FFFFFF
     Off-white #F5F5F0
============================================================ */

/* --- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #0A0A0A;
    background: #F5F5F0;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography ------------------------------------------- */
.font-display {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.5px;
}

/* --- Containers ------------------------------------------- */
.container {
    width: 100%;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 2px solid #0A0A0A;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.header-logo img {
    height: 48px;
    width: auto;
}

/* Desktop nav — hidden on mobile */
.desktop-nav { display: none; }

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .nav-link {
        font-size: 15px;
        font-weight: 500;
        color: #0A0A0A;
        transition: color 0.15s;
    }

    .nav-link:hover,
    .nav-link.active { color: #5B35E8; }

    .nav-cta {
        background: #C8F135;
        color: #0A0A0A;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 700;
        font-size: 16px;
        text-transform: uppercase;
        padding: 10px 22px;
        border-radius: 50px;
        border: 2px solid #0A0A0A;
        transition: background 0.15s;
        white-space: nowrap;
    }

    .nav-cta:hover { background: #b8e020; }
}

/* Mobile icons */
.header-mobile-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .header-mobile-icons .hamburger { display: none; }
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0A;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0A0A0A;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV OVERLAY
============================================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: #0A0A0A;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 32px 40px;
    display: flex;
    flex-direction: column;
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    transition: color 0.15s;
}

.mobile-nav-link:hover { color: #C8F135; }

.mobile-nav-cta {
    display: inline-block;
    margin-top: 24px;
    background: #C8F135;
    color: #0A0A0A;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 50px;
    text-align: center;
    border: 2px solid #C8F135;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-nav-overlay.is-visible {
    opacity: 1;
    pointer-events: all;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: #0A0A0A;
    color: #fff;
    margin-top: 0;
}

.footer-inner {
    padding: 48px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 64px 40px 48px;
    }
}

/* Footer brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand img { filter: brightness(0) invert(1); }

.footer-tagline {
    font-size: 15px;
    color: #888;
    font-weight: 400;
}

.footer-smile { color: #C8F135; }

/* Footer nav */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 600px) {
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555;
    margin-bottom: 4px;
}

.footer-nav-col a {
    font-size: 14px;
    color: #aaa;
    transition: color 0.15s;
}

.footer-nav-col a:hover { color: #C8F135; }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy,
.footer-location {
    font-size: 12px;
    color: #555;
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.section-divider {
    height: 6px;
    background: #0A0A0A;
}

.section-divider--light {
    height: 1px;
    background: #e0e0e0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #C8F135;
    color: #0A0A0A;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    padding: 16px 28px;
    border-radius: 50px;
    border: 2.5px solid #0A0A0A;
    width: 100%;
    transition: transform 0.1s;
}

.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0A0A0A;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    width: 100%;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F05A38;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 19px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    width: 100%;
}

/* --- Footer credit ---------------------------------------- */
.footer-credit {
    font-size: 12px;
    color: #555;
}

.footer-credit-link {
    color: #C8F135;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-credit-link:hover {
    color: #fff;
    text-decoration: underline;
}
