@charset "UTF-8";
@import '../stickyNavigation.css';
@import '../hero2.css';
@import '../carousel.css';
@import '../footer.css';

/* VARIABLES */
/* --------------------- */
/* --------------------- */
/* --------------------- */
:root {
    --desktop-title-size: clamp(22px, 2vw, 24px);
    --desktop-subtitle-size: clamp(20px, 1.3vw, 22px);
    --desktop-paragraph-size: clamp(16px, 1.2vw, 20px);

    --tablet-title-size: clamp(0.9rem, 2.3vw, 2rem);
    --tablet-subtitle-size: clamp(0.9rem, 2vw, 2rem);
    --tablet-font-size: clamp(0.9rem, 1.2vw, 1.5rem);

    --mobile-title-size: 18px;
    --mobile-subtitle-size: 14px;
    --mobile-font-size: 12px;

    --color-primary: #000000;
    --color-secondary: #000000;
    --color-secondary-light: #709B84;
    --color-secondary-dark: #000000;
    --color-background: transparent;
}

/* removes all default padding and margins */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.kanji-font {
    font-family: 'Zen Old Mincho';
}

/* CONCEPT */
/* --------------------- */
/* --------------------- */
/* --------------------- */

.beige {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    bottom: 0;
    background-image: url('../images/beige\ washi\ 3.webp');
    background-size: contain;
    background-position: center;
}

h2 {
    color: rgba(20, 71, 56, 0.8);
    font-family: 'Zen Old Mincho';
    font-weight: 100;
}

.bottom-title {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: center;
}

.side-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    max-width: 800px;
}

.side-title h4 {
    font-family: 'Zen Old Mincho';
    font-size: 30px !important;
    letter-spacing: min(calc(0.4 * 1440px / 100), 0.4vw);
    color: #333333;
    justify-self: center;
    white-space: nowrap;
}

.side-title p {
    text-align: left;
    margin: 0;
}

.what {
    gap: 50px !important;
}

.concept-column-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 100vw;
    position: relative;
    z-index: 2;
    margin: auto;
    padding: 100px 40px;
    text-align: center;
    gap: 100px;
}

.center-text {
    display: flex;
    text-align: center;
    align-self: center;
    font-family: 'Zen Old Mincho';
    font-size: var(--desktop-subtitle-size);
}

.concept-content {
    width: min(90vw, 1000px);
    text-align: center;
}

.concept-container {
    padding: min(calc(10 * 1440px / 100), 10vw) 0vw;
    text-align: left;
    width: 100vw;
    height: auto;
    background-color: white;
}

h2 {
    font-family: 'Zen Old Mincho';
    font-weight: 400;
    font-size: var(--desktop-title-size);
    letter-spacing: min(calc(0.4 * 1440px / 100), 0.4vw);
    color: #333333;
    justify-self: center;
}

h3 {
    font-family: 'Zen Old Mincho';
    font-weight: 400;
    text-align: left;
    letter-spacing: 0.2em;
    color: #333333;
}

.concept-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 20px;
}

.concept-info {
    max-width: min(80vw, 900px);
    padding: 0 40px;
    padding-top: 0;
}

.concept-info h4 {
    justify-self: center;
    letter-spacing: 0.4em;
    font-weight: 400;
    font-size: clamp(20px, 2.15vw, 32px);
    padding-bottom: 25px;
}

p {
    margin: min(calc(1 * 1440px / 100), 1vw);
    font-size: var(--desktop-subtitle-size);
    line-height: 160%;
    letter-spacing: 0.2em;
    color: #333333;
}

.leftimage-righttext {
    display: grid;
    grid-template-columns: 47.5% 47.5%;
    padding: 100px 40px;
    gap: 5%;
    max-width: 1000px;
    justify-self: center;
    padding-bottom: 0;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 5%;
}

h2 {
    font-family: 'Zen Old Mincho';
    font-weight: 400;
    font-size: var(--desktop-title-size) !important;
    letter-spacing: 0.3em;
    color: rgba(20, 71, 56, 0.8);
}

h3 {
    font-weight: 400;
    font-size: var(--desktop-subtitle-size) !important;
    letter-spacing: 0.3em;
    color: #333333;
}

p {
    font-size: var(--desktop-paragraph-size) !important;
    line-height: 160%;
    letter-spacing: 0.2em;
    font-family: 'Zen Old Mincho';
}



/* TABLET */
/* --------------------- */
/* --------------------- */
/* --------------------- */
@media (max-width: 1024px) and (min-width: 769px) {
    .concept-text {
        font-size: var(--tablet-font-size);
    }

    .concept-info {
        max-width: 60vw;
    }

    .concept-info h4,
    .center-text {
        font-size: calc(var(--tablet-subtitle-size)*1.3);
    }

    .concept-content h2 {
        font-size: var(--tablet-title-size);
    }
}

@media (max-width: 768px) {

    .center-text {
        font-size: var(--mobile-subtitle-size);
    }

    .concept-column-container {
        padding: 10vw 4vw;
    }

    .side-title {
        flex-direction: column;
    }

    .side-title p {
        text-align: center;
        font-size: var(--mobile-font-size) !important;
    }

    .what {
        padding: 100px 20px !important;
    }

    h4 {
        font-size: 25px !important;
        white-space: nowrap;
    }

    h3,
    p {
        font-size: var(--mobile-font-size) !important;
    }

    .concept-container {
        padding: 10vw 4vw;
    }

    .concept-info {
        padding: 0;
    }

    .leftimage-righttext {
        padding-left: 0;
        padding-right: 0;
    }

    .concept-container h2 {
        font-size: var(--mobile-title-size);
    }

    .concept-container h3 {
        font-size: 3.5vw;
        padding-bottom: var(--mobile-padding);
    }

    .concept-cool-text h3 {
        font-size: 6vw;
    }

    .concept-info h4 {
        font-size: var(--mobile-subtitle-size);
        padding-bottom: 10px;
        letter-spacing: 0.2em;
    }

    .concept-content {
        gap: 1vw;
    }

    .concept-info {
        max-width: none;
    }

    .concept-text {
        font-size: var(--mobile-font-size);
    }

    .leftimage-righttext {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-bottom: 0;
    }
}