@charset "UTF-8";

/* =========================
   공통 기본 설정
   ========================= */

:root {
    --large-width: 1000px;
    --text-bright-color: #fff;
    --gray-color: #ddd;
}

/* 브라우저 기본 여백 제거 */
html,
body {
    margin: 0;
    padding: 0;
}

.nohero header {
    position: static;
    border-bottom: 1px solid var(--gray-color);
}

/* 페이지 배경(about 전용) */
.about-page-bg {
    background: linear-gradient(-45deg, #ebb3b5, #ffffff);
    position: relative;
    background-position: bottom;
    background-image: url("img/bottom_ba.png"), linear-gradient(-45deg, #ebb3b5, #ffffff);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* 스크린 리더 전용 텍스트 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* 흰색 종이 프레임 */
.page-frame {
    max-width: 70% !important;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: none !important;
}

/* 모바일에서 페이지 프레임 단순화 */
@media (max-width: 767px) {
    .page-frame {
        max-width: 100% !important;
        padding: 20px 16px;
        box-shadow: none;
        background: #ffffff;
        margin: 0 !important;
    }

    /* iOS에서 잔상 방지용 */
    body.about-page-bg {
        background-image: none;
        background-color: #ffffff;
    }
}

/* =========================
   HEADER & NAV (일반 스타일과 동일)
   ========================= */

/* 헤더 전체 */
header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
}

/* 사이트 이름 */
.headA {
    display: inline-block;
    line-height: 70px;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--text-bright-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    text-decoration: none;
}

/* 네비게이션 기본 */
.headB {
    display: none; /* 모바일에서 jQuery 토글 대상 */
}

.headB ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.headB a {
    display: block;
    padding: 13px;
    color: var(--text-bright-color);
    font-size: 16px;
    text-decoration: none;
}

.headB a:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* 햄버거 버튼 */
.headC {
    margin-right: 10px;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font-size: 28px;
    opacity: 1;
    cursor: pointer;
    color: var(--text-bright-color);
}

/* nohero(서브 페이지)일 때 헤더 색상 흑색으로 */
.nohero .headA {
    color: #000 !important;
}

.nohero .headB a {
    color: #000 !important;
}

.nohero .headB a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nohero .headC {
    color: #000 !important;
}

/* =========================
   반응형 헤더 (일반 스타일과 동일)
   ========================= */

/* 모바일 (max 767px) */
@media (max-width: 767px) {
    header .container-small {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .headC {
        display: block;
    }

    .headB {
        width: 100%;
    }
}

/* PC (min 768px) */
@media (min-width: 768px) {

    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;

        /* 일반 스타일과 동일하게 PC에서만 중앙 정렬 */
        max-width: var(--large-width);
        margin: 0 auto;
    }

    header .container-small {
        display: block;
    }

    .headC {
        display: none;
    }

    .headB {
        display: block !important;
    }

    .headB ul {
        display: flex;
    }
}

/* =========================
   ABOUT 상단 이미지(.about-hero)
   ========================= */

.about-hero {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    padding: 0 100px;
}

/* 왼쪽: 정사각형 이미지 */
.hero-col-square {
    width: 220px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    overflow: hidden;
}

.hero-col-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 오른쪽: 가로로 긴 이미지 */
.hero-col-wide {
    flex: 1;
    height: 220px;
    overflow: hidden;
}

.hero-col-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 모바일에서 상단 이미지 한 줄로 */
@media (max-width: 767px) {
    .about-hero {
        flex-direction: column;
        gap: 16px;
        margin: 20px 0;
        padding: 0 16px;
    }

    .hero-col-square {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .hero-col-wide {
        display: none;
    }
}

/* =========================
   WHO IS YUNI YOSHIDA?
   ========================= */

.who {
    max-width: var(--large-width);
    margin: 60px auto 40px;
    padding: 0 10px;
}

.who-heading {
    margin: 0 0 40px;
}

.who-line1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.who-line2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.who-word-box,
.who-name-box {
    display: inline-block;
    padding: 6px 18px;
    background-color: #000000;
    color: #ffffff;
}

.who-word-light {
    display: inline-block;
    margin-left: 6px;
}

.who-caption {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c41f25;
}

/* 메인 레이아웃 */
.who-main {
    display: grid;
    grid-template-columns: 450px 1fr;
    column-gap: 60px;
    margin-top: 40px;
    align-items: flex-start;
    max-width: var(--large-width);
    margin-left: auto;
    margin-right: auto;
}

/* 왼쪽 영역 */
.who-left {
    position: relative;
    padding-top: 20px;
}

/* GRAPHIC DESIGNER 텍스트 */
.who-role {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 24px;
    white-space: nowrap;
}

/* 사진 + 빨간 박스 */
.who-photo-wrap {
    position: relative;
    width: 300px;
    margin-top: 10px;
    margin-left: 60px;
    z-index: 2;
}

.who-redbox {
    position: absolute;
    left: 80px;
    top: 50px;
    width: 260px;
    height: 280px;
    background: #a83430;
    z-index: 1;
}

.who-photo-wrap img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    object-fit: cover;
}

/* 짧은 설명 */
.who-bio-en {
    margin: 45px 0 20px;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* 생년월일 블록 */
.birth-wrap {
    margin: 0 0 30px;
}

.birth-line {
    font-size: 2rem;
    font-weight: 700;
    color: #a83430;
    line-height: 0.3;
    white-space: nowrap;
}

/* 오른쪽 영역 */
.who-right {
    padding-top: 20px;
    text-align: left;
}

.who-name-ja {
    font-size: 2rem;
    color: #a83430;
    margin: 0 0 4px;
}

.who-name-en {
    font-size: 1rem;
    letter-spacing: 0.12em;
    margin: 0 0 32px;
}

.who-info h4 {
    font-size: 0.8rem;
    margin: 0 0 4px;
    font-weight: 700;
}

.who-info p {
    font-size: 0.9rem;
    margin: 0 0 10px;
    line-height: 1.6;
}

/* =========================
   WHO 섹션 모바일 세부 조정
   ========================= */

@media (max-width: 767px) {

    .who-main {
        display: block;
        margin-top: 20px;
    }

    .who-heading {
        text-align: center;
    }

    .who-role {
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .who-bio-en {
        display: none;
    }

    .birth-wrap {
        display: none;
    }

    .who-photo-wrap {
        margin: 0 auto;
        width: 250px;
    }

    .who-redbox {
        width: 200px;
        height: 260px;
        left: 25px;
        top: 20px;
    }

    .who-name-ja {
        font-size: 1.5rem;
        text-align: center;
        padding-top: 40px;
    }

    .who-name-en {
        font-size: 0.9rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .who-info h4 {
        margin-top: 20px;
        text-align: left;
    }

    .who-info p {
        text-align: left;
    }

    .who-info {
        text-align: left;
        padding-left: 5px;
    }
}

/* 아이폰 / 작은 기기에서 확실히 안 깨지게 고정 */
@media (max-width: 420px) {
    .who-photo-wrap {
        width: 220px;
        margin: 0 auto !important;
    }

    .who-redbox {
        width: 180px;
        height: 230px;
        left: 20px !important;
        top: 20px !important;
    }
}

/* =========================
   INDEPENDENT ART DIRECTOR 섹션
   ========================= */

.independent {
    margin-top: 40px;
}

.indep-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 100px;
    padding: 0 40px;
}

/* 왼쪽 텍스트 영역 */
.indep-left {
    width: 45%;
    padding-top: 150px;
}

/* 큰 캐치프레이즈 */
.indep-tagline {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    line-height: 1.05;
    color: #a83430;
    font-weight: 900;
    margin: 0 0 20px;
}

.indep-tagline span {
    display: block;
}

/* 설명 텍스트 */
.indep-copy {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.indep-detail {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 60px;
    padding-left: 20px;
    border-left: 2px solid #a83430;
}

/* 오른쪽 이미지 영역 */
.indep-right {
    position: relative;
    width: 50%;
    height: 400px;
}

/* 빨간 박스 */
.indep-red {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #a83430;
    z-index: 1;
    top: 70px;
    right: 0;
}

/* 포스터 이미지 */
.indep-right img {
    padding-top: 50px;
    position: absolute;
    width: 100%;
    max-width: 450px;
    height: auto;
    z-index: 2;
    top: 50px;
    right: 50px;
    display: block;
}

/* INDEPENDENT 섹션 모바일 */
@media (max-width: 767px) {

    .indep-main {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 60px;
        padding: 0 16px;
    }

    .indep-left {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .indep-copy {
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 12px;
    }

    .indep-detail {
        font-size: 0.75rem;
        line-height: 1.6;
        padding-left: 0;
        border-left: none;
        margin-bottom: 20px;
        text-align: center;
    }

    .indep-tagline {
        font-size: 1.5rem;
        line-height: 1.05;
        margin-top: 24px;
        text-align: center;
    }

    .indep-right {
        width: 90%;
        height: 300px;
        margin-bottom: 20px;
    }

    .indep-right img {
        top: -30px;
        width: 100%;
        max-width: none;
        left: 5%;
        right: auto;
    }

    .indep-red {
        width: 300px;
        height: 120px;
        top: 0;
        right: 5%;
    }
}

/* 작은 기기에서 완전 고정 */
@media (max-width: 420px) {
    .indep-main {
        padding: 0 12px !important;
    }

    .indep-tagline {
        font-size: 1.2rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .indep-left {
        width: 100% !important;
        padding-top: 0 !important;
    }
}

/* =========================
   FOOTER
   ========================= */

footer {
    background-color: #ffffff;
    color: #000000;
    padding: 40px 0 20px 0;
    text-align: center;
}

.footer-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.footer-text {
    margin: 0 0 15px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #444;
}

/* SNS 아이콘 */
.footer-sns ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.footer-sns a {
    display: block;
    color: inherit;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-sns a:hover {
    opacity: 1;
    color: #a83430;
}
