/* ==========================================================================
   Base CSS - Shared styles across all pages
   ========================================================================== */

/* CSS Variables */
:root {
    /* Brand Colors */
    --brand-green: #609d45;
    --brand-green-dark: #4F8338;

    /* Text Colors */
    --text-primary: #333;
    --text-secondary: #6b7280;
    --text-dark: #1a1a1a;
    --text-light: #d1d5db;

    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-white: #fff;

    /* Border Colors */
    --border-color: #e5e7eb;

    /* Other Colors */
    --black: #000;
    --white: #fff;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Base Styles */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brand-green-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-dark:hover {
    background: var(--text-primary);
    transform: scale(1.05);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
