/* =====================================================
   About Us Stylesheet
   ===================================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap');

/* =====================================================
   Base Styles
   ===================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* =====================================================
   Container
   ===================================================== */
.container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 50px 80px;
}

/* =====================================================
   Top Block - Company Introduction
   ===================================================== */
.top-block {
    width: 100%;
    margin-bottom: 80px;
}

.top-block .container {
    padding-top: 120px;
}

.logo-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 80px;
    height: 60px;
    display: flex;
    align-items: center;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0;
    height: 60px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.7;
}

.banner-wrapper {
    position: relative;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    background-image: url('guzilab/images/birch-banner.png');
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    height: 140px;
}

.about-title {
    position: absolute;
    bottom: 0;
    left: 80px;
    transform: translateY(50%);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 80px;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0;
    text-align: left;
}

@media screen and (min-width: 1410px) {
    .about-title {
        left: calc((100vw - 1250px) / 2 + 80px);
    }
}

/* =====================================================
   Bottom Block - Additional Information
   ===================================================== */
.bottom-block {
    width: 100%;
    background-color: #FBF9F7;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 40px 0;
}

.bottom-block .container {
    padding: 50px 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =====================================================
   Main Content Section
   ===================================================== */
.main-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column - Text Information */
.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Philosophy Section */
.philosophy-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.top-block .philosophy-section {
    padding-top: 0;
    margin-bottom: 0;
}


.philosophy-ko,
.philosophy-en {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.06em;
    color: #C3BCBC;
    margin: 0;
}

.philosophy-ko strong,
.philosophy-en strong {
    font-weight: 800;
    color: #000000;
}

/* Structure Section */
.structure-section {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.structure-ko,
.structure-en {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.06em;
    margin: 0;
}

.structure-ko {
    font-weight: 800;
    color: #000000;
}

.structure-en {
    font-weight: 400;
    color: #C3BCBC;
}

/* Founder Section */
.founder-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder-title,
.founder-name,
.founder-role {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.06em;
    color: #000000;
    margin: 0;
}

.founder-name-en {
    color: #C3BCBC;
}

.founder-name-bold {
    font-weight: 800;
}

.role-en {
    font-weight: 400;
    color: #C3BCBC;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-email,
.linkedin-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.06em;
    color: #000000;
    margin: 0;
}

.linkedin-text {
    text-decoration: none;
}

.contact-linkedin {
    display: flex;
    align-items: center;
    gap: 8px;
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.linkedin-text:hover {
    text-decoration: underline;
}

/* Right Column - Visual Element */
.right-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-panel {
    width: fit-content;
    max-width: 500px;
    background-color: transparent;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.character-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    margin-top: 60px;
    text-align: center;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0;
}

/* =====================================================
   Mobile Styles (450px and below)
   ===================================================== */
@media screen and (max-width: 450px) {
    .container {
        padding: 30px 20px;
    }

    .top-block {
        margin-bottom: 30px !important;
        overflow-x: hidden;
    }

    .top-block .container {
        padding-top: 80px;
    }

    .bottom-block {
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bottom-block .container {
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .main-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .left-column {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .structure-section,
    .founder-section,
    .contact-section {
        align-items: center;
        text-align: center;
    }

    .logo-container {
        padding: 0 20px;
        height: 60px;
    }

    .logo {
        font-size: 20px;
        margin-bottom: 0;
        height: 60px;
    }

    .banner-wrapper {
        height: 100px;
    }

    .about-title {
        font-size: 40px;
        left: 20px;
    }

    .main-content {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .right-column {
        order: -1;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .left-column {
        order: 1;
    }

    .left-column {
        gap: 30px;
    }

    .philosophy-ko,
    .philosophy-en {
        font-size: 20px;
    }


    .structure-ko {
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #000000;
        font-weight: 800;
    }

    .structure-en {
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #C3BCBC;
    }

    .founder-title,
    .founder-name,
    .founder-role {
        font-size: 18px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #000000;
    }

    .contact-email {
        font-size: 18px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #000000;
        font-weight: 800;
    }

    .linkedin-text {
        font-size: 18px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #000000;
        font-weight: 800;
        text-decoration: none;
    }

    .linkedin-text:hover {
        text-decoration: underline;
    }

    .character-panel {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        width: fit-content;
    }

    .character-image {
        max-height: 300px;
    }

    .footer {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .footer .container {
        padding: 30px 20px;
    }

    .footer-tagline {
        font-size: 14px;
    }
}

/* =====================================================
   Tablet Styles (768px and below, but above 450px)
   ===================================================== */
@media screen and (max-width: 768px) and (min-width: 451px) {
    .top-block {
        margin-bottom: 80px;
    }

    .top-block .container {
        padding-top: 100px;
    }

    .bottom-block {
        padding: 40px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50vh;
    }

    .bottom-block .container {
        padding: 40px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .logo-container {
        padding: 0 40px;
    }

    .container {
        padding: 40px 40px;
    }

    .banner-wrapper {
        height: 120px;
    }

    .about-title {
        font-size: 60px;
        left: 40px;
    }

    .philosophy-ko,
    .philosophy-en {
        font-size: 24px;
    }

    .structure-ko {
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #000000;
        font-weight: 800;
    }

    .structure-en {
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #C3BCBC;
    }

    .founder-title,
    .founder-name,
    .founder-role {
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #000000;
    }

    .contact-email {
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #000000;
        font-weight: 800;
    }

    .linkedin-text {
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: -0.06em;
        color: #000000;
        font-weight: 800;
        text-decoration: none;
    }

    .linkedin-text:hover {
        text-decoration: underline;
    }

    .main-content {
        gap: 50px;
    }
}

