@import "./reset.css";
@import "./color.css";

/*= 0000000000 =========================*/
/*= 000    000 =========================*/
/*= 000    000 ==   GLOBAL   ===========*/
/*= 000    000 =========================*/
/*= 0000000000 =========================*/


@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /*=   COLOR   =========================*/
    --color-dark            :#222629;
    --color-light           :#FFFFFF;
    --color-dark-gray       :#3B3F42;
    --color-light-gray      :#949DA2;
    --color-dark-accent     :#61892F;
    --color-light-accent    :#86C232;
    --color-error-color     :#D62417;
    --color-success-color   :#D1FF91;

    /*light them color*/
    /**/
    --bgc: var(--color-light);
    --ntc: var(--color-dark);
    --atc: var(--color-dark-accent);
    
    /*dark them color*
    /**/
    --bgc: var(--color-dark);
    --ntc: var(--color-light);
    --atc: var(--color-light-accent);
    /**/
/*chess-color*/
    --chess-color1:rgb(27,27,27); /* #333*/
    --chess-color2:rgb(86,82,81); /* #666*/
    --chess-color3:rgb(159,149,137); /* #999*/
    --chess-color4:rgb(99,64,44); /* #633*/
    --chess-color5:rgb(184,110,45); /* #c63*/
    --chess-color6: #c33; /*#ffc*/
    --chess-color6:rgb(254,240,227); /*#ffc*/

    /*
    --color-dark            :rgb();
    --color-light           :rgb();
    --color-dark-gray       :rgb();
    --color-light-gray      :rgb();
    --color-dark-accent     :rgb();
    --color-light-accent    :rgb();
    
    */


    /*=   BORDER   =========================*/

    --border-radius: 4px;
    --border: 1px solid var(--color-dark);
    /*=   BUTTON INPUT   =========================*/
    --input-height: 48;

    /*=   CONTAINER   =========================*/
    --container-width: 1200px;




















    
    /*=   FONT   =========================*/

    --font-family-base: 'Roboto', sans-serif;

    
    --font-page-title: normal normal 700 normal 144px/187.2px var(--font-family-base);
    --font-main-text:  normal normal 300 normal 24px/31.2px var(--font-family-base);

    /*font:          font-style  | font-variant | font-weight | font-stretch | font-size | line-height | font-family*/
    /*font: normal  | normal     | font-weight | font-stretch | font-size | line-height | font-family*/
    /*font: italic  | small-caps | font-weight | font-stretch | font-size | line-height | font-family*/
    /*font: oblique | initial    | font-weight | font-stretch | font-size | line-height | font-family*/
    /*font: oblique | inherit    | font-weight | font-stretch | font-size | line-height | font-family*/




    

}

html, body {
    font-family: var(--font-family-base);
}

body{
    background-color: var(--bgc);
}
.content{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    
}

.container {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    

}

.container-row{
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
}

/*=     11     =========================*/
/*=   1111     =========================*/
/*=     11     =========================*/
/*=     11     =========================*/
/*= 1111111111 =========================*/
/*= HEDER PAGE =========================*/


.header {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    background: var(--color-dark);
}

    .header-logo{
        width: 127px;
        height: 64px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10;
        padding: 11px 17px 11px 17px;
        
        border-radius: 16px;
        background: rgb(255, 252, 242);

        color: var(--atc);
        font-family: Roboto;
        font-size: 36px;
        font-weight: 700;
        line-height: 42px;
        letter-spacing: 0px;
        text-align: left;
        
    }

    .header-menu{
        height: 100%;
        
    }
    
        .header-menu-list{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            gap: 24;
            
            color: var(--color-light);
            font-family: Roboto;
            font-size: 20px;
            font-weight: 300;
            line-height: 130%;
            letter-spacing: 0px;
        }

        .header-menu-item{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-self: stretch;

            gap: 10;
            padding-inline: 12px;

            
        }

        .active-menu-item{
            
            border-bottom: 6px solid rgb(134, 194, 50);
            background: rgb(71, 75, 79);
        }

    
    .header-buttons{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        gap: 10px;
    }
    .header-button{
        display: flex;
        width: 64px;
        height: 64px;   
        border-radius: 16px;
        align-items: center;



    }

.main{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

/*= 2222222222 =========================*/
/*=        222 =========================*/
/*= 2222222222 =========================*/
/*= 222        =========================*/
/*= 2222222222 =========================*/
/*= PAGE TITLE ========================*/
.page-title{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10;
}
.page-title>h1{
    margin: 35px auto;
    color: var(--atc);
    font: var(--font-page-title);
}
.page-description {
    padding: 10px;
    color: var(--ntc);
    font: var(--font-main-text);
    text-align: justify;

}
.page-description > span {
    color: var(--atc);
}

/*= 3333333333 =========================*/
/*=        333 =========================*/
/*= 3333333333 =========================*/
/*=        333 =========================*/
/*= 3333333333 =========================*/
/*== cards =============================*/
.cards{
    padding: 10px;;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.card{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 64px;
}
.card > p{
    color: var(--ntc);
    font-family: Roboto;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0px;
    text-align: justify;
    }
/*= 444    444 =========================*/
/*= 444    444 =========================*/
/*= 4444444444 =========================*/
/*=        444 =========================*/
/*=        444 =========================*/
/*=== footer ===========================*/
.footer{
    height: 100px;
    width: 100%;
    background-color: var(--color-dark);
    color: var(--color-light);

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10;
}
/*= 5555555555 =========================*/
/*= 555        =========================*/
/*= 5555555555 =========================*/
/*=        555 =========================*/
/*= 5555555555 =========================*/
/*== editor =========================*/
.editor{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10;
    padding: 10px;
}
/*= 6666666666 =========================*/
/*= 666        =========================*/
/*= 6666666666 =========================*/
/*= 666    666 =========================*/
/*= 6666666666 =========================*/


.quiz-name-input>input{
    width: 256px;
    height: 48px;
    box-sizing: border-box;
    border: 2px solid rgb(71, 75, 79);
    border-radius: 16px;
    padding-left: 10px;
}

.quiz-name-input>button{
    color: var(--color-dark-accent);
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.tours{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;


    align-items: flex-start;
    gap: 10px;
    padding: 10px;
}

.tours>button{
    color: var(--color-dark-accent);
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.tour-name-input>input{
    width: 256px;
    height: 48px;
    box-sizing: border-box;
    border: 2px solid rgb(71, 75, 79);
    border-radius: 16px;
    padding-left: 10px;
}

.entering-question{
    width: 100%;
}
.editor-question-number {
    width: 128px;
    height: 128px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: 2px solid rgb(59, 63, 66);
    border-radius: 16px;
    color: rgb(134, 194, 50);
    font-family: var(--font-family-base);
    font-size: 64px;
    font-weight: 400;
    line-height: 77px;
    letter-spacing: 0px;
    text-align: left;

}

.editor-question-input {
    width: 100%;
    height: 128px;
    border-radius: 16px;
}


.entering-responses-input{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;

}
textarea {
    padding: 10px;
    resize: none;
}
.entering-responses-input>input{
    width: 256px;
    height: 48px;
    box-sizing: border-box;
    border: 2px solid rgb(71, 75, 79);
    border-radius: 16px;
    padding-left: 10px;
}
.entering-responses-input>button{
    color: var(--color-dark-accent);
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

/*= 7777777777 =========================*/
/*=      777   =========================*/
/*=    777     =========================*/
/*=   777      =========================*/
/*=   777      =========================*/
/*= FEEDBACK   =========================*/

/*= 8888888888 =========================*/
/*= 888    888 =========================*/
/*= 8888888888 =========================*/
/*= 888    888 =========================*/
/*= 8888888888 =========================*/
/*= CONTACTS   =========================*/

/*= 9999999999 =========================*/
/*= 999    999 =========================*/
/*= 9999999999 =========================*/
/*=        999 =========================*/
/*= 9999999999 =========================*/
/*= MEDIA      =========================*/

.view-quiz{
    width: 1920px;
    height: 1080px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20;
    padding: 96px;
}
.question-nuber-box{
    width: 120px;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-radius: 16px;
    background: rgb(134, 194, 50);
}
.question-nuber-box>p{
    color: rgb(255, 255, 255);
    font-family: Roboto;
    font-size: 96px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0px;
    text-align: center;
}
.question-box{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    box-sizing: border-box;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 16px;
    background: rgb(59, 63, 66);
}

.question-box>p{
    color: rgb(255, 255, 255);
    font-family: Roboto;
    font-size: 64px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0px;
    text-align: center;
}

.select-mode{
    background-color: var(--color-dark-accent);
}