@import "util/colors.css";
@import "util/font.css";
@import "util/settings.css";
@import "elements/footer.css";

:root {
    --primary: #6C63FF;
    --primary-dark: #4D44DB;
    --primary-light: #A5A1FF;
    --secondary: #FF6584;
    --dark: #1A1A2E;
    --darker: #0F0F1B;
    /*--light: #F8F9FA;*/
    --lighter: #FFFFFF;
    --gray: #ADB5BD;
    --dark-gray: #495057;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;

    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset moderne */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
}
section {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: clip;
    font-family: "Courier New";
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}
.container-fluid {
    display: flex;
    flex-wrap: nowrap;
    flex-grow: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
}
.position-relative {
    position: relative;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}
.mb-auto {
    margin-bottom: auto;
}
.mt-4 {
    margin-top: 4rem;
}
.row {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}
.row > .col {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: fit-content;
    padding: 0 0.8rem;
}

.row > .col.col-6 {
    width: 50%;
}
.row > .col.col-3 {
    width: 25%;
}
.row > .col.col-9 {
    width: 75%;
}
.row > .col.col-10 {
    width: 83.3%;
}
.row > .col.col-2 {
    width: 16.6%;
}

.row > .col.col-8 {
    width: 66%;
}

.row > .col.col-2 {
    width: 16.6%;
}

.row > .col.col-4 {
    width: 33.3%;
}

.row > .col-78 {
    width: 86%;
}
.row > .col-18 {
    width: 14%;
}

.row > .col-mxcontent {
    width: max-content;
}
.row > .col-100 {
    width: 100%;
    max-width: 100%;
}
.w-50 {
    width: 50%;
}
.gap-20 {
    gap: 20px;
}
.di-none {
    display: none!important;
}
.flex-grow {
    flex-grow: 1;
}
.d-none {
    display: none;
}

.d-flex {
    display: flex !important;
}
.align-items-center {
    align-items: center !important;
}
.align-baseline {
    align-items: baseline!important;
}
.align-end {
    align-items: flex-end!important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}
.justify-content-around {
    justify-content: space-around;
}
.h-100 {
    height: 100vh;
    height: 100dvh;
}
.w-100 {
    width: 100%;
}
.nowrap {
    flex-wrap: nowrap;
}
.ml-5 {
    margin-left: 5rem;
}
.ml-1 {
    margin-left: 1rem;
}
.mt-2 {
    margin-top: 2vh;
}
.pl-5 {
    padding-left: 5rem;
}
.pt-2 {
    padding-top: 2rem;
}
.pu-1 {
    padding: 1rem 1rem 0 1rem!important;
}
.py-05 {
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
}
.pt-05 {
    padding-top: 0.5rem!important;
}
.py-08 {
    padding-top: 0.8rem!important;
    padding-bottom: 0.8rem!important;
}
.px-08 {
    padding-left: 0.8rem!important;
    padding-right: 0.8rem!important;
}
.p-08 {
    padding: 0.8rem!important;
}
.text-center {
    text-align: center;
}
.w-40h {
    width: 40vh!important;
    min-width: 40vh;
}

ul {
    list-style: none;
}