/* Reset and Base Styles */
:root {


    /* Primary Colors */
    --color-primary: #236130;    /* Green accent */
    --color-primary-dark: #1B4B26; /* Darker shade of primary */
    --color-primary-light: #2B773A; /* Lighter shade of primary */

    /* Danger Colors */
    --color-danger: #c11717;    /* Green accent */
    --color-danger-dark: #931717; /* Darker shade of primary */
    --color-danger-light: #e43030; /* Lighter shade of primary */
    --color-danger-background: #ffcccc; /* Lighter shade of primary */

    /* Secondary Colors */
    --color-secondary: #9ABC05;  /* Dark green */
    --color-secondary-dark: #7A9A04; /* Darker shade of secondary */
    --color-secondary-light: #B4D306; /* Lighter shade of secondary */

    /* Accent Colors */
    --color-accent: #4E5B3F;     /* Muted green */
    --color-accent-dark: #3E492F; /* Darker shade of accent */
    --color-accent-light: #5E6B4F; /* Lighter shade of accent */

    /* Background Colors */
    --color-bg-light: #FFF4C7;   /* Light yellow background */
    --color-bg-white: #FFFFFF;   /* White */
    --color-bg-dark: #F5F5F5;    /* Light gray background */

    /* Text Colors */
    --color-text-primary: #236130;   /* Primary text color */
    --color-text-secondary: #4E5B3F; /* Secondary text color */
    --color-text-light: #FFFFFF;     /* Light text color */
    --color-text-muted: #666666;     /* Muted text color */
    --color-text-dark: #061206;     /* Muted text color */

    --color-logo-background: #4e5b3f; /* Logo background color */

    /* Border Colors */
    --color-border: rgba(35, 97, 48, 0.1);
    --color-border-light: rgba(35, 97, 48, 0.05);
    --color-border-dark: rgba(35, 97, 48, 0.2);

    /* Shadow Colors */
    --shadow-color: rgba(35, 97, 48, 0.1);
    --shadow-color-dark: rgba(35, 97, 48, 0.2);

    /* Effects */
    --shadow: 0 2px 15px var(--shadow-color);
    --shadow-hover: 0 8px 20px var(--shadow-color-dark);
    --transition: all 0.3s ease;
}



/*
body {
    font-family: 'Century Gothic', 'Gothic A1', 'CenturyGothic', 'AppleGothic', sans-serif;
    line-height: 1.6;
}*/
