/*
Theme Name: The Links Training & Consultancy
Theme URI: https://thelinkstraining.co.uk
Author: Mako Digital
Author URI: https://makodigital.co.uk
Description: Custom theme for The Links Training & Consultancy
Version: 1.0
*/

:root {
    --pink: #e0007a;
    --navy: #1a2a4a;
    --blue: #4a7ab5;
    --offwhite: #f5f6fa;
    --blush: #fce8f2;
    --white: #ffffff;
    --font-heading: 'Fraunces', serif;
    --font-body: 'Lexend', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    background: var(--offwhite);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--pink);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}