//
// reboot.scss
//

@use "../variables" as *;
@use "../utils/mixins" as *;

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    font-family: $font-family-base;
    font-size: $font-size-base;
    font-weight: 400;
    line-height: 1.5;
    color: $body-color;
    background-color: $light;
    overflow-x: hidden;
}

::selection {
    background: $primary;
    color: $white;
}

button,
a {
    outline: none !important;
}
a {
    text-decoration: none;
    color: $gray-900;
    &:hover {
        color: $primary;
    }
}
// Forms

label {
    font-weight: $font-weight-medium;
}

b,
strong {
    font-weight: $font-weight-semibold;
}

// border style
.border-dashed {
    border-style: dashed;
}
.border-bottom-dashed {
    border-style: dashed !important;
}

h1,
.h1 {
    font-size: 32px;
    font-weight: $font-weight-bold;
    color: $heading-color;
    @include respond-below(lg) {
        font-size: 28px;
    }
    @include respond-below(md) {
        font-size: 24px;
    }
}
h2,
.h2 {
    font-size: 28px;
    font-weight: $font-weight-bold;
    color: $heading-color;
    @include respond-below(lg) {
        font-size: 22px;
    }
    @include respond-below(md) {
        font-size: 20px;
    }
}
h3,
.h3, .custom-title {
    font-size: 24px;
    font-weight: $font-weight-bold;
    color: $heading-color;
    @include respond-below(lg) {
        font-size: 20px;
    }
    @include respond-below(md) {
        font-size: 18px;
    }
}
h4,
.h4, .main-title {
    font-size: 20px;
    font-weight: $font-weight-bold;
    color: $heading-color;
    @include respond-below(lg) {
        font-size: 18px;
    }
    @include respond-below(md) {
        font-size: 17px;
    }
}
h5,
.h5, .card-subtitle {
    font-size: 18px;
    font-weight: $font-weight-bold;
    color: $heading-color;
    @include respond-below(md) {
        font-size: 17px;
    }
}
h6,
.h6, .sub-title {
    font-size: 16px;
    font-weight: $font-weight-bold;
    color: $heading-color;
}
.display-1 {
    font-size: 80px;
    @include respond-below(xl) {
        font-size: 70px;
    }
}
.display-2 {
    font-size: 72px;
    @include respond-below(xl) {
        font-size: 64px;
    }
    @include respond-below(lg) {
        font-size: 50px;
    }
}
.display-3 {
    font-size: 64px;
    @include respond-below(xl) {
        font-size: 58px;
    }
    @include respond-below(lg) {
        font-size: 42px;
    }
}
.display-4 {
    font-size: 56px;
    @include respond-below(xl) {
        font-size: 50px;
    }
    @include respond-below(lg) {
        font-size: 38px;
    }
}
.display-5 {
    font-size: 48px;
    @include respond-below(xl) {
        font-size: 44px;
    }
    @include respond-below(lg) {
        font-size: 34px;
    }
}
.display-6 {
    font-size: 40px;
    @include respond-below(xl) {
        font-size: 36px;
    }
    @include respond-below(lg) {
        font-size: 28px;
    }
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}

// Page Head
@include respond-above(md) {
    .page-title-head {
        height: 85px;
    }
}

@include respond-below(md) {
    .page-title-head {
        padding: 1.25rem 0;
    }
}

// Custom Link
.link-reset {
    color: inherit;
    transition: all 0.25s ease-in-out;

    &:hover {
        color: $primary;
    }
}