/* Layout & Variables - Loja Guedez Refactor */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@400;500;600;700&family=Inter:wght@400;500;600&family=Montserrat:wght@600;700;800&display=swap');

:root {
    /* Brand Colors */
    --color-navy: #0a192f;
    /* Deep Navy */
    --color-navy-light: #172a45;
    /* Lighter Navy for Cards/Sections */
    --color-navy-hover: #233554;
    /* Navy Hover State */

    --color-orange: #f26522;
    /* Brand Orange */
    --color-orange-hover: #d95316;

    --color-white: #ffffff;
    --color-bg-light: #f8f9fa;
    /* Light Gray Background */
    --color-border: #e2e8f0;
    /* Subtle Border */

    /* Text Colors */
    --color-text: #334155;
    /* Slate 700 - Softer than black */
    --color-text-light: #64748b;
    /* Slate 500 */
    --color-text-heading: #0f172a;
    /* Slate 900 */

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing System */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --spacing-xxl: 96px;

    /* Design Tokens */
    --container-width: 1240px;
    --radius-sharp: 0px;
    --radius-sm: 2px;
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-md);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-bold {
    font-weight: 700;
}

/* Global Page Content Spacing */
.site-main {
    padding-top: 48px;
    padding-bottom: 64px;
    min-height: 50vh;
}

/* Front page has its own section spacing, skip extra padding */
.home .site-main {
    padding-top: 0;
    padding-bottom: 0;
}