/**
 * BFHD Pro 1 Theme Base Styles
 * Contains global variables, resets, and typography.
 * Loaded before all other theme styles.
 */

/* Import Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* Colors */
    --color-primary: #00E2C1;
    --color-blue: #5B8FE5;
    --color-blue-dark: #4A6FA5;
    --color-text-dark: #2D3748;
    --color-text-light: #718096;
    --color-text-gray: #8B8B8B;
    --color-bg: #F7FAFC;
    --color-white: #FFFFFF;

    /* Gradients */
    --gradient-footer: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    --gradient-header: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0.85) 70%,
            rgba(255, 255, 255, 0.5) 85%,
            rgba(255, 255, 255, 0) 100%);

    /* Fonts */
    --font-family: 'Roboto', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 50px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --bfhd-container-width: 1360px;
    --bfhd-container-padding: 20px;
}

/* Global Resets */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: var(--color-text-dark);
    /* Allow room for fixed header (90px height + 10px buffer) */
    padding-top: 100px;
}

/* Base Container */
.bfhd-container {
    max-width: var(--bfhd-container-width);
    margin: 0 auto;
    padding: 0 var(--bfhd-container-padding);
}