/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for WDW Nexus Theme
 *
 * This file allows you to customize the theme colors and styles for the entire WDW Nexus template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

:root {
    --white: #ffffff;

    /* Neutral shades */
    --neutral-50: #f5f5f5;
    --neutral-100: #e4e4e4;
    --neutral-200: #e4e4e4;
    --neutral-300: #bdbdbd;
    --neutral-400: #bdbdbd;
    --neutral-500: #222222;
    --neutral-600: #222222;
    --neutral-700: #1c1b1b;
    --neutral-800: #1c1b1b;
    --neutral-900: #000000;
    --neutral-950: #000000;

    /* Brand shades */
    --primary-50: #f5f5f5;
    --primary-100: #e4e4e4;
    --primary-200: #bdbdbd;
    --primary-300: #de5e00;
    --primary-400: #de5e00;
    --primary-500: #de5e00;
    --primary-600: #de5e00;
    --primary-700: #9a4100;
    --primary-800: #9a4100;
    --primary-900: #1c1b1b;
    --primary-950: #000000;

    /* Primary colors */
    --primary: #de5e00;
    --primary-lifted: #9a4100;
    --primary-accented: #9a4100;

    /* Secondary colors */
    --secondary: #222222;
    --secondary-lifted: #1c1b1b;
    --secondary-accented: #000000;

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: #1c1b1b;
    --grayscale-lifted: #000000;
    --grayscale-accented: #222222;

    /* Neutral colors */
    --neutral: #222222;
    --neutral-lifted: #1c1b1b;
    --neutral-accented: #000000;

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: #222222;
    --text-lifted: #222222;
    --text-accented: #1c1b1b;
    --text: #1c1b1b;

    /* Border neutral colors */
    --border-muted: #e4e4e4;
    --border: #bdbdbd;
    --border-lifted: #bdbdbd;
    --border-accented: #222222;

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: #f5f5f5;
    --bg-lifted: #e4e4e4;
    --bg-accented: #bdbdbd;
    --bg-inverted: #1c1b1b;

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

/* Brand interaction colors */
a,
.text-primary,
.nav-tabs .nav-link.active,
.pagination > .active > a,
.pagination > .active > span {
    color: #de5e00;
}

a:hover,
a:focus,
.text-primary:hover,
.text-primary:focus {
    color: #9a4100;
}

/* Non-destructive client actions use the marketing-site orange. */
.btn-primary,
.btn-success,
.btn-info,
.btn-cta,
#btnDomainContinue,
body #order-standard_cart .text-right .btn-checkout {
    color: #ffffff;
    background-color: #de5e00;
    border-color: #de5e00;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-cta:hover,
.btn-cta:focus,
.btn-cta:active,
#btnDomainContinue:hover,
#btnDomainContinue:focus,
#btnDomainContinue:active,
body #order-standard_cart .text-right .btn-checkout:hover,
body #order-standard_cart .text-right .btn-checkout:focus {
    color: #ffffff;
    background-color: #9a4100;
    border-color: #9a4100;
}

.btn-primary:focus,
.btn-success:focus,
.btn-info:focus,
.btn-cta:focus,
#btnDomainContinue:focus,
body #order-standard_cart .text-right .btn-checkout:focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 94, 0, 0.35);
}
