:root {

    --nav-color: ghostwhite;
    /* The default color of the main navmenu links */

    --nav-hover-color: darkred;
    /* Applied to main navmenu links when they are hovered over or active */

    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */

    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */

    --nav-dropdown-color: #313336;
    /* Used for navigation links of the dropdown items in the navigation menu. */

    --nav-dropdown-hover-color: darkred;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */

}

:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #3d4348;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: ghostwhite;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: darkred;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.hero .btn-get-started {

    color: darkred;

    background: ghostwhite;

    font-family: var(--heading-font);

    font-weight: 500;

    font-size: 15px;

    letter-spacing: 1px;

    display: inline-block;

    padding: 10px 28px;

    border-radius: 50px;

    transition: 0.5s;

    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);

    margin-bottom: 20px;

}

.hero .btn-get-started:hover {

    color: ghostwhite;

    background: color-mix(in srgb, var(--accent-color), transparent 15%);

    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);

}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: darkred;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: ghostwhite;
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

h1 {
    color: var(--heading-color);

    font-family: "Radley", serif;
}

.header .logo h1 {

    font-size: 30px;

    margin: 0;

    font-weight: 700;

    color: var(--accent-color);

}

.hero h1 span {

    color: var(--accent-color);

}

.hero p {
    color: var(--heading-color)
}