/* ========================================
   Shared Design Tokens & Utilities
   Used by header, footer, and homepage
   ======================================== */

:root {
    /* Colors */
    --hp-text: #171717;
    --hp-text-secondary: #6b6b6b;
    --hp-dark: #292929;
    --hp-green: #82ff9e;
    --hp-green-border: #65d985;
    --hp-outline-border: rgba(144, 143, 141, 0.48);
    --hp-header-bg: rgba(255, 255, 255, 0.72);
    --hp-copyright: #a6a09b;
    --hp-border: #e8e3dd;

    /* Spacing & Radii */
    --hp-radius-section: 24px;
    --hp-radius-header: 190px;
    --hp-radius-pill: 9999px;
    --hp-radius-hamburger: 14px;
    --hp-max-width: 1440px;
}

/* Container */
.hp-container {
    max-width: var(--hp-max-width);
    margin: 0 auto;
    padding: 0 12px;
}

@media (min-width: 800px) {
    .hp-container {
        padding: 0 24px;
    }
}

@media (min-width: 1300px) {
    .hp-container {
        padding: 0 38px;
    }
}

/* Shared button styles */
.hp-btn {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    cursor: pointer;
    border-radius: var(--hp-radius-pill);
    gap: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    text-decoration: none;
    border: none;
    transition: opacity 0.2s;
}

.hp-btn:hover {
    opacity: 0.85;
}

.hp-btn--primary {
    background: var(--hp-green);
    border: 1px solid var(--hp-green-border);
    color: var(--hp-text);
}

.hp-btn--secondary {
    background: #fff;
    border: 1px solid var(--hp-outline-border);
    color: var(--hp-text);
}

.hp-btn--text {
    background: transparent;
    border: none;
    padding: 8px 0;
    color: var(--hp-text);
}

/* Page title */
.hp-title {
    font-family: 'FbMetali', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    color: var(--hp-text);
    margin-bottom: 36px;
}