﻿/* 1) Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Open+Sans:wght@400;600&display=swap');

/* 2) Define color & typography variables */
:root {
    /* Primary palette */
    --bs-primary: #006d77; /* deep teal */
    --bs-secondary: #83c5be; /* soft aqua */
    --bs-success: #52b788; /* gentle green */
    --bs-info: #5e6472; /* slate gray */
    --bs-warning: #ffba08; /* warm yellow */
    --bs-danger: #d62828; /* bold red */
    --bs-light: #edf6f9; /* off-white */
    --bs-dark: #002e2e; /* near-black teal */
    /* Neutral grays for backgrounds, borders, text */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-size-base: 1rem; /* 16px */
    --font-size-lg: 1.125rem; /* 18px */
    --font-size-sm: 0.875rem; /* 14px */
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--gray-800);
    background-color: var(--gray-100);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--bs-dark);
}

a {
    color: var(--bs-primary);
}

    a:hover {
        color: var(--bs-secondary);
    }

/* 3) Override Bootstrap variables (if using SCSS) */

$theme-colors: (
  "primary":   #006d77,
  "secondary": #83c5be,
  "success":   #52b788,
  "info":      #5e6472,
  "warning":   #ffba08,
  "danger":    #d62828,
  "light":     #edf6f9,
  "dark":      #002e2e
);

$font-family-sans-serif: 'Open Sans', sans-serif;
$headings-font-family: 'Montserrat', sans-serif;


/* 4) Utility tweaks */
.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

    .btn-primary:hover {
        background-color: var(--bs-secondary);
        border-color: var(--bs-secondary);
    }

/* Example: make cards use light background with subtle border */
.card {
    background-color: var(--bs-light);
    border: 1px solid var(--gray-300);
    border-radius: .5rem;
}
