:root {
    /* variable color */
    --primary-color: #f8b1b3;
    --secondary-color: #6a4b4c;
    --gray-color: #ddd;
    --black-color: #17191c;
    font-size: 20px !important;
}

/* Additional styling on top of Bootstrap */
body {
    /*background-image: url("../../assets/img/dark-background.jpg");
    background-size: 100%;
    background-repeat: no-repeat;*/
    background-color: var(--black-color);
    color: #e8e8e8;
    max-width: 1060px;
    margin: auto;
}


h1, h2, h3 {
    color: white;
    text-align: left;
    font-family: "Rubik", sans-serif;
}

h1.emphasis {
    color: white;
}

h2.stylized {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: auto;
    background: white;
    color: black;
    box-shadow: -10px 10px 0 #f69192, -20px 20px 0 #c67071
}

/****************** HEADER ****************/


.navbar-dark .navbar-nav .nav-link {
    font-family: "Rubik", sans-serif;
    color: var(--gray-color);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
}

#navbar-logo {
    height: 30px;
}

@media (min-width: var(--xs-breakpoint)) {
    #navbar-logo {
        height: 40px;
    }
}


/****************** FOOTER ****************/

#footer {
    font-size: 0.8rem;
    color: var(--gray-color);
}

#footer a {
    color: var(--gray-color);
    text-decoration: none;
}

#footer a:hover {
    color: white;
    text-decoration: underline;
}

#footer-title {
    font-size: 1.5rem;
}

#footer-logo {
    height: 20px;
}


/****************** MISC ****************/

#page-content {
    max-width: 900px;
    margin: 80px auto 180px auto
}

#page-content h1 {
    text-align: center;
    margin: 4rem auto;
    width: 80%;
}

#page-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

#page-content figure {
    text-align: center;
    padding: 0 1rem;
}

#page-content figcaption {
    font-size: 0.9em;
    color: darkgray;
    font-style: italic;
}

#page-content img {
    max-width: 100%;
    display: block;
    margin: auto;
}


#page-content a {
    color: var(--primary-color);
}

#page-content a:hover {
    color: white;
}

#page-content a.btn-primary:hover {
    /* override the default a tag behavior */
    text-decoration: none;
    color: var(--secondary-color);
}

#page-content .callout {
    padding: 0.8em;
    margin: 1rem 0;
    border: 1px solid white;
    color: var(--primary-color);
}

#page-content .callout a {
    /*color: white;*/
    color: var(--primary-color);
    text-decoration: underline;
    font-style: italic;
}

#page-content .callout a:hover {
    color: var(--primary-color);
}

#page-content .text-shadow {
    /* a class to see blue and red (and others) on the dark background */
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

#page-content .blue {
    color: blue;
}

#page-content .red {
    color: red;
}

#page-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.5em 0;
}

#page-content th,
#page-content td {
    border: 1px solid #ddd;
    padding: 0.5em 0.9em;
}

#page-content th {
    background: #232f3f;
    color: white;
    font-weight: bold;
    text-align: left;
}

#page-content li {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

#page-content .pseo-breadcrumb {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: darkgray;
}

#page-content .pseo-breadcrumb a {
    color: darkgray;
    text-decoration: none;
}

#page-content .pseo-breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

#page-content .pseo-breadcrumb .sep {
    margin: 0 0.45rem;
    color: #777;
}


/****************** MISC ****************/

#last-call h2 {
    font-size: 2.4rem;
    /*max-width: 500px;
    text-align: right;*/
}

#last-call .btn {
    font-size: 1.2rem;
}

#last-call .btn:hover {
    border-color: var(--primary-color);
}
/*
.top-margin {
    margin-top: 5rem !important;
}*/


.sep {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mw-400 {
    margin: auto;
    max-width: 600px;
}

.mw-600 {
    margin: auto;
    max-width: 600px;
}

.gradient-text {
    display: inline;  /* Keep the span inline with other text */
    background: linear-gradient(to right, var(--primary-color), white);
    background-size: 200% 200%;  /* Extend the background size for a smooth transition */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;  /* Make the text color transparent to show the background */
    animation: gradient-animation 3s ease-in-out infinite;  /* Apply the animation */
}

.filled-text {
    color: var(--primary-color);
}

.btn-primary {
    text-transform: uppercase;
/*    box-shadow: 0.3em 0.25em 0 var(--primary-color);*/
    border-radius: 0;
    background: var(--black-color);
    border: 4px solid white;
    font-weight: bold;
    margin-left: 1rem;
    margin-right: 1rem;
    color: white;
}

.btn-primary:hover {
    background: white;
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.8rem;

    /* copied from size=lg, color=black */
    background: white;
    color: black;
    border: calc(0.0625rem * var(--mantine-scale)) solid black;
    border-radius: 0;
    text-transform: uppercase;
    transition: 0.1s background ease;

    margin-left: 0.5em;
    margin-right: 0.5em;
}

.btn-secondary:hover {
    background: #f0f0f0;
    color: black;
    border-color: transparent;
}

.p-outline {
    position: relative;
    padding: 1rem;
    margin-bottom: 1.6em;
    background-color: black;
/*    box-shadow: 0.6em 0.6em 0 var(--gray-color);*/
    font-weight: bold;
    color: var(--primary-color);
    border: 1px solid white;
}

.p-outline::before {
    position: absolute;
    right: -20px;
    top: -20px;
    content: "";
    width: 50px;
    height: 50px;
    padding: 5px;
    background-color: black;
    background-image: url("../../assets/img/icon-black-contour.svg");
    background-size: 100%;
    border-radius: 100%;
}


/* Last call to action */

#last-call h2 {
    font-size: 2.4rem;
    /*max-width: 500px;
    text-align: right;*/
}

#last-call .btn {
    font-size: 1.2rem;
}
