/*
 Theme Name: KnowViva Child
 Theme URI: https://knowviva.com
 Description: Child theme for KnowViva built on the Edufast parent theme. This theme is used to customize styling without modifying the parent theme.
 Author: KnowViva
 Template: edufast
 Version: 1.0.0
*/

/* Import the parent theme styles. Note: WordPress will automatically load
 * the parent theme's style.css file when a child theme is active, but we
 * explicitly import it here for older versions and compatibility. */
@import url("../edufast/style.css");

/* Custom variables for KnowViva colour palette */
:root {
    --kv-maroon: #800020;
    --kv-black: #000000;
    --kv-white: #ffffff;
    --kv-accent: #a51c2f;
    --kv-body: #111111;
}

/* Override basic elements with the KnowViva palette */
body {
    background-color: var(--kv-white);
    color: var(--kv-body);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a {
    color: var(--kv-maroon);
}

button, input[type="submit"], .button {
    background-color: var(--kv-black);
    color: var(--kv-white);
    border-radius: 8px;
    padding: 10px 18px;
    text-transform: uppercase;
}

.button.primary {
    background-color: var(--kv-maroon);
}

/* Card styles */
.kv-card {
    background-color: var(--kv-white);
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 18px;
}

/* Tutor LMS specific styling for course cards */
.tutor-course-card .course-title {
    color: var(--kv-maroon);
    font-weight: 700;
}