/************ colour - variables ************/

:root {
    --primary: #DCC035;

    --text-primary: #FFFFFF;
    --text-secondary: #E3E3E0;

    --btn-bg-primary: #FFFFFF;
    --btn-hover-primary: #E3E3E0;

    --bg-primary: #0B1015;
    --bg-secondary: #0E1720;
    --bg-tertiary: #1C252E;

    font-family: "InterVariable", sans-serif;
    @supports (font-variation-settings: normal) {
        :root { font-family: "Inter var", sans-serif; font-optical-sizing: auto; }
    }
}

/************ general ************/

body {
    font-family: 'InterVariable', sans-serif;
    font-weight: 400;
    font-style: normal;

    color: var(--text-primary) !important;
    --bs-body-bg: var(--bg-primary) !important;
    --bs-secondary-color: var(--text-secondary) !important;
    --bs-dark-bg-subtle: var(--bg-secondary) !important;;
}

.addr > span:nth-child(2) {
    display: none;
}


.h2 {
    color: var(--primary) !important;
}

.btn.btn-light {
    background: var(--btn-bg-primary) !important;
    border-color: var(--btn-bg-primary) !important;
    &:hover {
        background: var(--btn-hover-primary) !important;
        border-color: var(--btn-hover-primary) !important;
    }
}

.btn.btn-primary {
    background: var(--bg-tertiary) !important;
    border-color: var(--bg-tertiary) !important;
    color: var(--primary) !important;
    &:hover {
        background: var(--bg-secondary) !important;
        border-color: var(--bg-secondary) !important;
    }
}

.btn-icon {
    background: var(--bg-tertiary) !important;
    &:hover {
        background: var(--bg-secondary) !important;
    }
}

.bi {
    color: var(--primary) !important;
    line-height: 1;
}

/************ header ************/

.nav-link.active {
    color: var(--primary) !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.dropdown-item.active {
    background-color: var(--primary) !important;
    color: var(--bg-primary) !important ;
}

.dropdown-item:focus {
    background-color: transparent !important;
    color: var(--primary) !important ;
}

.bullet {
    display: block;
    position: relative;
    padding-left: 1.2em;
}

.bullet::before {
    content: "•";
    position: absolute;
    left: 0;
    color: currentColor;
}


/************ slider ************/

.carousel-control-prev,
.carousel-control-next {
    filter: none !important;
}

.carousel-item img {
    max-width: 225px;
}

.carousel-indicators button {
    background-color: var(--primary) !important;
}

/************ home-about images ************/
.about-gutter .col img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
}

/************ back to top btn ************/

a.btn-scroll-top {
    height: 30px;
    width: 30px;
    &:hover {
        background-color: var(--btn-hover-primary) !important;
        transition: all 0.15s ease-in-out;
    }
}

/************ timeline ************/

.vertical-line {
    &:after {
        content: "";
        position: absolute;
        height: 36px;
        border-right: 2px dashed #dee2e6;
        top: 0;
    }
}

.horizontal-line {
    &:after {
        content: "";
        position: absolute;
        width: 100%;
        border-bottom: 2px solid #dee2e6;
        top: 35px;
    }
}

.event-date {
    top: 36px;
    left: 0;
    right: 0;
    width: 75px;
    margin: 0 auto;
    color: var(--primary) !important;
}

.horizontal-timeline .items {
    border-top: 2px solid #e9ecef;

    .items-list {
        padding-top: 70px;
        &:before {
            content: "";
            position: absolute;
            height: 36px;
            border-right: 2px dashed #dee2e6;
            top: 0;
        }
    }
}

/************ link ************/

.link a, .modal a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
}


/************ footer ************/

footer {
    .bi, a {
        color: var(--text-primary) !important;
        &:hover {
            color: var(--text-secondary) !important;
        }
    }
}

.fa-2x {
    width: 2em;
    height: 2em;
}