@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url(styles/header.css);
@import url(styles/main.css);
@import url(styles/footer.css);
@import url(styles/popup.css);

:root {
    --primary-deep: #1A0B33;
    --primary-bright: #6A4C93;
    --accent-teal: #FF9A8B;
    --accent-light: #A8E6CF;
    --secondary-coral: #C06C84;
    --secondary-orange: #F67280;
    --secondary-warm: #F8B500;
    --bg-gradient: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary-deep) 100%);
    --text-primary: #FFFFFF;
    --text-secondary: #F0E6FF;
    --text-accent: #FF9A8B;
    --bg-dark: #261132;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 1;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Lexend', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: url('images/main.webp');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--bg-dark);
}

button {
    cursor: pointer;
    display: block;
    border: none;
}

a {
    text-decoration: none;
    color: var(--text-primary);
}

li {
    list-style: none;
    margin-left: 20px;
}

input:focus {
    outline: none;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    font-family: 'Lexend', sans-serif;
    padding-bottom: 30px;
    font-weight: 400;
    color: var(--text-primary);
}

h1 {
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

h2 {
    font-family: Lexend;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.color {
    background: linear-gradient(89deg, var(--accent-teal) 42.3%, var(--primary-bright) 65.41%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.standart {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.bold {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

.red {
    color: var(--secondary-coral);
}

.beige {
    color: var(--text-secondary);
}

.yellow {
    color: var(--secondary-warm);
}

.orange {
    color: var(--secondary-orange);
}

.uppercase {
    text-transform: uppercase;
}

.big {
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.small {
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.little {
    font-family: Lexend;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.section {
    max-width: 1280px;
    width: 100%;
    padding: 10px 20px;
    margin: 80px auto;
}

.center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.aligns-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
    padding: 10px;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

.g-10 {
    gap: 10px;
}

.g-20 {
    gap: 20px;
}

.g-30 {
    gap: 30px;
}

.g-40 {
    gap: 40px;
}

.p-10 {
    padding: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.green {
    color: var(--accent-teal);
}

.yellow {
    color: var(--secondary-warm);
}

@media (max-width: 1010px) {
    h1 {
        font-size: 40px;
    }

    h3 {
        font-size: 21px;
    }
}

@media (max-width: 800px) {
    .big {
        font-size: 14px;
    }
}

@media (max-width: 680px) {
    .standart {
        font-size: 12px;
    }

    h1 {
        font-size: 28px;
        text-align: left;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .big {
        font-size: 15px;
    }
}

@media (max-width: 580px) {
    .small {
        font-size: 12px;
    }

    .little {
        font-size: 12px;
    }

    .big {
        font-size: 16px;
    }

    body {
        background-size: 680px;
        background-position: 100% top;
    }
}