/*============================================================================= */
/*FONT IMPORTS*/
@import url(https://fonts.googleapis.com/css?family=KoHo:500,600);
@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Sans+KR:regular);
@import url(https://fonts.googleapis.com/css?family=Fira+Mono:regular);
@import url(https://fonts.googleapis.com/css?family=Fira+Mono:400);

/*============================================================================= */
/* Colors */
:root {
    --title--light--color: #ffc58f;
    --text--light--color: #e6d5c5;
    --background--dark--color: #1c1b1b;
    --text--color: #000000;
    --title--color: #422e17;
    --clicked--btn-color: #00465c;
    --hover--btn-color: #009ecd;
}

/*============================================================================= */
/* Title */
.title {
    text-align: center;
    flex-wrap: wrap;
}

.title h1 {
    color: rgba(0, 0, 0, 1);
    font-family: 'Fira Mono';
    font-style: normal;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 10px;
    text-decoration: none;
    text-transform: uppercase;
}


/*============================================================================= */
/* Buttons */
.buttons-tools-container {
    /* width: 80%; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    gap: 20px;
    padding-bottom: 20px;
}

.button-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(40% - 15px);
    height: 80px;
    margin-bottom: 15px;
    background-color: var(--title--light--color);
    border-radius: 10px;
    background-color: var(--text--light--color);
    border: 1px solid rgba(0, 0, 0, 1);
    filter: blur(0.3s);
    box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.3);
    flex-direction: row;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.button-tools:hover {
    background-color: var(--title--light--color);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.button-tools.clicked {
    transform: translateY(5px);
    background-color: var(--clicked--btn-color);
}

.button-tools.clicked p {
    color: var(--text--light--color);
}

.button-tools.clicked h1 {
    color: var(--title--light--color);
}

.left-items-buttons {
    justify-content: flex-start;
    display: flex;
    width: 40%;
    height: auto;
    align-items: center;
    flex-direction: row;
    margin-left: 30px;
    gap: 30px;
}

.right-items-buttons {
    display: flex;
    width: 46%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}

.divining-path {
    width: 0.01px;
    height: 60px;
    left: 280px;
    top: 20px;
    border: 2px solid var(--title--color);
}

.icon-item-button {
    width: 50px;
    height: 50px;
}

.button-tools p {
    color: var(--text--color);
    font-family: 'IBM Plex Sans KR';
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: capitalize;
}

.button-tools h1 {
    color: var(--title--color);
    font-family: 'KoHo';
    font-style: normal;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    word-break: pre-line;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1700px) {
    /* .buttons-tools-container {
        flex-direction: column;
        align-items: center;
    } */

    .button-tools {
        width: calc(60% - 15px);
        /* One button in one column, with 15px spacing between them */
    }

}

@media screen and (max-width: 1000px) {
    /* .buttons-tools-container {
        flex-direction: column;
        align-items: center;
        height: max-content;
    } */

    .button-tools {
        justify-content: center;
    }

    .left-items-buttons {
        justify-content: center;
        margin-left: 0px;
    }

    .divining-path {
        display: none;
    }

    .right-items-buttons {
        display: none;
    }

    .icon-item-button {
        display: none;
    }

    .left-items-buttons {
        width: calc(70% - 15px);
        display: flex;
        flex-direction: row;
        align-content: center;

        align-items: center;
        justify-content: center;
    }

    .button-tools h1 {
        font-size: 20px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
        gap: 5px;
    }
}

/*============================================================================= */
/* Lines */

.lines-container {
    margin: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-items: flex-start;
}

.line-path {
    /* Path */
    width: 1200px;
    height: 0px;
    border: 1px solid rgba(0, 0, 0, 1);
}

@media screen and (max-width: 1700px) {
    .line-path {
        display: none;
    }
}


/*============================================================================= */
/* Text */
.text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
    margin-left: 100px;
    margin-right: 100px;
}

.text-container h2 {
    color: var(--title--color);
    font-family: 'KoHo';
    font-style: normal;
    font-size: 36px;
    font-weight: 600;
    line-height: 0px;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.text-container p {
    color: rgba(0, 0, 0, 1);
    font-family: 'IBM Plex Sans KR';
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: capitalize;
    flex-wrap: wrap;
}

@media screen and (max-width: 1700px) {
    .text-container {
        width: 100vw;
    }

    .text-container h2 {
        font-size: 24px;
        margin-left: 100px;
        margin-right: 100px;
        margin-top: 75px;
    }

    .text-container p {
        font-size: 12px;
        margin-left: 100px;
        margin-right: 100px;
    }
}

/*============================================================================= */  