@import "/fonts/inter/inter.css";

@layer base {
  .defaultTheme {

    /* Font Family */

    font-family: "Inter", sans-serif;

    /* Base Colours */

    --black: #192323;
    --white: #ffffff;
    --transparent: transparent;

    /* Grey Palette */

    --grey-darker: #263238;
    --grey-dark: #455a64;
    --grey: #607d8b;
    --grey-light: #90a4ae;
    --grey-lighter: #cfd8dc;
    --grey-lightest: #eceff1;

    /* Primary Brand Colours */

    --primary-darker: #9e3e18;
    --primary-dark: #c54d1f;
    --primary: #964989;
    --primary-light: #e8774a;
    --primary-lighter: #f09a73;
    --primary-lightest: #f8c7b3;

    /* Secondary Brand Colours */

    --secondary-dark: #5f6d24;
    --secondary: #7a8c31;
    --secondary-light: #93a545;

    /* Primary Button Styling */

    --button-primary-background: #964989;
    --button-primary-border: #964989;
    --button-primary-hover: #964989;
    --button-primary-content: #ffffff;
    --button-primary-content-hover: #ffffff;

    /* Secondary Button Styling */

    --button-secondary-background: #964989;
    --button-secondary-border: #964989;
    --button-secondary-hover: #964989;
    --button-secondary-content: #ffffff;
    --button-secondary-content-hover: #ffffff;

    /* Destructive Button Styling */

    --button-destructive-background: #d32f2f;
    --button-destructive-border: #d32f2f;
    --button-destructive-hover: #e53935;
    --button-destructive-content: #ffffff;

    /* Tertiary Button Styling */

    --button-tertiary-background: #ffd066;
    --button-tertiary-border: #ffd066;
    --button-tertiary-hover: #f2c04f;
    --button-tertiary-content: #000000;
    --button-tertiary-content-hover: #192323;

    /* Feedback Colours */

    --feedback-information-dark: #1e3a8a;
    --feedback-information: #2196f3;
    --feedback-information-light: #e3f2fd;

    --feedback-success-dark: #14532d;
    --feedback-success: #43a047;
    --feedback-success-light: #e8f5e9;

    --feedback-warning-dark: #ff6f00;
    --feedback-warning: #ffb300;
    --feedback-warning-light: #fff8e1;

    --feedback-danger-dark: #7f1d1d;
    --feedback-danger: #d32f2f;
    --feedback-danger-light: #ffebee;

    /* Text Colours */

    --text: #192323;
    --text-primary: #192323;
    --text-secondary: #192323;
    --text-tertiary: #192323;
    --text-link: #0057B8;
    --text-link-hover: #71822d;
    --text-link-inverted: #ffffff;
    --text-inverted: #ffffff;

    /* Surface Colours */

    --surface: #ffffff;
    --surface-secondary: #bbdefb;
    --surface-tertiary: #bfdbfe;
    --surface-inverted: #0d47a1;
    --surface-neutral: #0B0C0C;
    --surface-page: #F3F2F1;
    --surface-widget:#ffffff;

    /* Border Colours */

    --border: #607d8b;
    --border-secondary: #64748b;
    --border-focus: #000000;

    /* Radius and Spacing Scale */

    --radius: 8px;
    --designScale: 8px;
    --button-radius: var(--radius);

    /* Typography Sizes */

    --font-xxs-size: 10px;
    --font-xxs-line-height: 16px;

    --font-xs-size: 12px;
    --font-xs-line-height: 17px;

    --font-body-sm-size: 14px;
    --font-body-sm-line-height: 21px;

    --font-base-size: 16px;
    --font-base-line-height: 24px;

    --font-body-lg-size: 20px;
    --font-body-lg-line-height: 30px;

    --font-h4-size: 21px;
    --font-h4-line-height: 25px;

    --font-h3-size: 21px;
    --font-h3-line-height: 25px;

    --font-h2-size: 35px;
    --font-h2-line-height: 42px;

    --font-h1-size: 50px;
    --font-h1-line-height: 60px;

    --font-display1-size: 64px;
    --font-display1-line-height: 72px;

    --font-display2-size: 56px;
    --font-display2-line-height: 64px;

    /* Font Weights */

    --font-weight-normal: 400;
    --font-weight-semibold: 700;
    --font-weight-bold: 800;

    /* Footer Styling */

    --footer-background: #192323;
    --footer-text: #ffffff;
    --footer-border: #ffffff;
    --footer-link: #ffffff;
    --footer-link-hover: #cce56a;

    /* Navigation Styling */

    --nav-background: #FFFFFF;
    --nav-link: #192323;
    --nav-link-hover: #2d4f4c;

    --nav-menu-background: #ffffff;
    --nav-menu-background-hover: #ffffff;
    --nav-menu-border: #ffffff;
    --nav-menu-link: #192323;
    --nav-menu-link-hover: #2d4f4c;
    --nav-bar-menu-item-font-weight: 700;
    --nav-bar-menu-item-font-size: 16px;
    --nav-bar-menu-item-line-height: 22px;

    --highlighted-speaker-surface: #05e2dc;
    --highlighted-speaker-text: #000000;
    --speaker-surface: #05e2dc;
    --speaker-text: #000000;
  }


  @media (max-width: 992px) {
    .defaultTheme {
       /* Responsive typography for tablet and mobile */
      --font-h2-size: 1.371em;
      --font-h3-size: 1.371em;
      --font-h4-size: 1.371em;
    }
  }

}

/* Heading Font Family */

h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
}