@charset "UTF-8";


:root {
    --main-black: #000000;
    --off-white: #fdf8e2;
    --red-accent: #d90429;
    --dark-blue: #003049;
    --light-gray: #cccccc; /* 배너/뉴스 이미지 박스 회색 */
    --mid-gray: #333333; /* 배너 서브 텍스트 등 */

    --text-gray-light: #BBBBBB;
    --text-gray-medium: #888888;

    --large-width: 1200px;
    --middle-width: 800px;
}


body {
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    background-color: var(--main-black);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


@media (max-width: 599px) { :root { font-size: 14px; } }
@media (min-width: 600px) and (max-width: 799px) { :root { font-size: 16px; } }
@media (min-width: 800px) { :root { font-size: 18px; } }


.container {
    width: 90%;
    max-width: var(--large-width);
    margin-left: auto;
    margin-right: auto;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* 기본메뉴 */
header {
    position: static;
    background-color: #000000;
    color: var(--text-gray-light);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--mid-gray);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--large-width);
    margin: 0 auto;
    padding: 0 20px;
}
.headA {
    display: inline-block;
    line-height: normal;
    padding: 0;
    background-color: transparent;
    color: var(--text-gray-light);
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}
.headB ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.headB ul li { margin: 0 15px; }
.headB a {
    display: block;
    padding: 5px 0;
    color: var(--text-gray-light);
    font-size: 16px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.headB a:hover {
    background-color: transparent;
    color: var(--red-accent);
}
.headB a::after { /* 메뉴 밑줄 효과 */
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--red-accent);
    transition: width 0.3s ease;
}
.headB a:hover::after { width: 100%; }
.search-icon {
    font-size: 20px;
    color: var(--text-gray-light);
    cursor: pointer;
    margin-left: 20px;
}

/* 스프레이 이미지 */
.page-wrapper {
    position: relative;
    overflow: hidden;
}

.spray-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/스프레이.png); 
    background-repeat: no-repeat;
    background-position: 50% 80%;
    background-size: 100% auto;
    z-index: -1;
    opacity: 0.4; 
    pointer-events: none;
}

/* 메인 배너 */
.main-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 1000px;
    min-height: 0;
    color: #fdf8e2;
    text-align: center;
    padding: 20px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%),url(img/Blek_TMWWTTW_Berlin.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main-banner h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Emblema One', system-ui;
    letter-spacing: normal;
    margin-left: 0;
    font-size: 80px;
    font-weight: bold;
    color: #ffffff;
}
.main-banner p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
    font-style: italic;
    color: #fdf8e2;
}

/* 착가의 최신소식 */

.news-section h2 {
    font-size: 34px;
    margin-bottom: 50px;
    color: #fdf8e2;
}

.news-section {
    padding-top: 100px;
    padding-bottom: 80px;
    font-family: 'Emblema One', system-ui;
    text-align: center;
}
.news-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; 
}

.news-section .column {
    flex: 25%; 
    max-width: 25%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 20px; 
}

.news-section .column img {
    width: 100%;
    opacity: 0.8; 
    cursor: pointer; 
    transition: 0.3s;
    display: block;
    border-radius: 4px; 
}

.news-section .column img:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* 확장되는 이미지 */
.expand-container {
    position: relative;
    display: none; 
    width: 100%;
    margin-top: 20px;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}

/* 닫기 버튼 */
.closebtn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    z-index: 10;
    transition: color 0.3s;
}

.closebtn:hover {
    color: var(--red-accent);
}


/* 아티스트에 대해 */
.about-section {
    padding: 80px 0;
}
.about-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.about-image {
    flex: 1;
    min-width: 300px; /* PC 최소 너비 */
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-image: url(img/sub_banner.jpg);
}
.about-text {
    flex: 1;
    min-width: 300px; 
}
.about-text h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fdf8e2;
}
.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #f2f2f2;
    margin-bottom: 30px;
}
.btn-main {
    display: inline-block;
    background-color: var(--red-accent);
    color: var(--off-white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.btn-main:hover {
    background-color: var(--main-black);
}

/* 아이콘 섹션 */
.features-section {
    padding: 80px 0;
}
.features-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.feature-box {
    flex-basis: 100px;
    flex-grow: 1;
    background-color: #d7d7d7;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.feature-box i {
    font-size: 50px;
    color: var(--red-accent);
    margin-bottom: 20px;
}
.feature-box h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}
.feature-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mid-gray);
    margin: 0;
}

/* 작품 보여주기 */
.gallery-section {
    padding: 60px 0; 
}
.gallery-section .container {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    align-items: flex-end;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.gallery-item.large {
    flex-basis: 60%;
    max-width: 60%;
    min-height: 400px;
}

.gallery-item.small {
    flex-basis: calc(40% - 20px); 
    max-width: calc(40% - 20px);
    height: auto;
    /* object-fit: contain;
    display: center; */
}

.work-title {
    font-family: 'Emblema One', cursive;
    font-size: 1.5rem;      
    color: #fdf8e2;         
    margin-bottom: 20px;   
    text-transform: uppercase; 
    letter-spacing: 1px;
    z-index: 10;
}  

/* (선택사항) 만약 제목을 왼쪽 정렬이 아니라 가운데로 오게 하고 싶다면 */
/*
.gallery-item {
    text-align: center;
}
*/

/* 푸터 */
footer {
    background-color: #000000;
    padding: 40px 0;
    color: var(--text-gray-light);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 90%;
    max-width: var(--large-width);
    margin: 0 auto;
}

.artist-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: bold;
}

/* 쥐 아이콘 대신 이미지 로고 스타일 */
.footer-content {
    text-align: center;
}

.footer-logo { 
    height: 40px;
    width: auto; 
    vertical-align: middle; 
}

.artist-name {
    letter-spacing: 1px;
}

.social-links {
    display: flex;
}

.social-links a {
    color: var(--text-gray-light);
    font-size: 28px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--red-accent);
}

.copyright {
    font-size: 14px;
    color: var(--text-gray-medium);
    margin-top: 10px;
}

/* PC */
@media (min-width: 768px) {
    .headC {
        display: none;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
    .copyright {
        margin-top: 0;
    }
}

.sub-banner {
    padding: 60px 0;
    text-align: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/sub_banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;       
    background-position: center;
    background-attachment: fixed;
}

/* 작가 프로필 */
.profile {
    padding: 80px 0;
}
.profile .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

/* 소개 글 */
.profile-text {
    width: 50%;
    min-width: 600px;
    text-align: right;
}
.profile-text h3 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: bold;
    color: #f2f2f2;
    font-family: 'Emblema One', system-ui;
}
.profile-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #fdf8e2;
    margin-bottom: 20px;
}

/* 작품 페이지 */

.works-page-section {
    padding: 80px 0;
}


.works-header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #ffffff; 
    padding-bottom: 20px;
}

.works-header h2 {
    font-family: 'Emblema One', system-ui;
    font-size: 48px;
    color: #f2f2f2;
    margin: 0;
}


.works-search-box {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 30px; 
    width: 300px;
}

.works-search-box i {
    color: var(--mid-gray);
    margin-right: 10px;
}

.works-search-box input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
}


.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 40px 30px; 
}

.work-img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--light-gray);
    margin-bottom: 15px;
    position: relative;
}

.work-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease; 
    display: block;
}

.work-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #fdf8e2;
}

.work-info p {
    font-size: 14px;
    color: #fdf8e2;
    margin: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.5 ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-img-box:hover .overlay {
    opacity: 1;
}

.overlay .text {
    color: #f2f2f2;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    padding: 20px;
    font-family: 'Noto Sans KR', sans-serif;
}

/* 스토어 */
.store-banner {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,1) 100%), url('img/gall2.jpg'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    font-family: 'Emblema One', system-ui;
    color: #f2f2f2;
    font-size: 30px;

}

.store-section {
    padding: 80px 0;
    background-color: var(--main-black); 
    color: #ffffff;
}

.store-search-bar {
    width: 100%;
    max-width: 800px; 
    margin: 0 auto 60px auto; 
    display: flex;
    background-color: #f2f2f2;
    border-radius: 30px; 
    padding: 5px;
}

.store-search-bar input {
    flex: 1; 
    border: none;
    background: none;
    padding: 15px;
    font-size: 16px;
    outline: none;
}

.store-search-bar button {
    background: none;
    border: none;
    padding: 0 20px;
    font-size: 20px;
    color: var(--mid-gray);
    cursor: pointer;
}


.group-title {
    font-family: 'Emblema One', system-ui;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    margin-bottom: 80px;
}

.product-item {
    text-align: center;
}

.product-img {
    width: 100%;
    height: 300px; 
    background-color: var(--light-gray);
    margin-bottom: 15px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-img img {
    transform: scale(1.05); /* 호버 시 확대 효과 */
}

.product-info h4 {
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: bold;
}

.product-info p {
    font-size: 16px;
    color: var(--text-gray-light);
    margin: 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3칸 */
    gap: 20px;
}

.collection-item {
    position: relative;
    height: 200px; /* 배너 높이 */
    background-color: var(--light-gray);
    overflow: hidden;
    cursor: pointer;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.collection-item:hover img {
    transform: scale(1.1);
}

.col-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4); 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Emblema One', system-ui;
    font-size: 24px;
    letter-spacing: 2px;
    transition: background-color 0.3s;
}

.collection-item:hover .col-overlay {
    background-color: rgba(0,0,0,0.2);
}

/* 아카이브 페이지 */
.archive-header {
    border-bottom: 2px solid #ffffff; /* 흰색 밑줄 */
    margin-bottom: 60px; /* 아래 여백 */
    padding-bottom: 20px;
}

.archive-header h2 {
    font-family: 'Emblema One', system-ui;
    font-size: 48px;
    color: #ffffff; /* 흰색 글자 */
    margin: 0;
}

.archive-section {
    padding: 80px 0;
    background-color: var(--main-black); 
    color: #ffffff;
}

.archive-layout {
    display: flex;
    gap: 60px; /* 사이드바와 콘텐츠 사이 간격 */
    align-items: flex-start; /* 상단 정렬 */
}

/* 3. 사이드바 스타일 */
.archive-sidebar {
    flex: 0 0 200px; /* 너비 200px 고정 */
    border-right: 1px solid var(--mid-gray); /* 오른쪽에 구분선 */
    padding-right: 20px;
}

.archive-sidebar h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--red-accent);
}

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

.archive-sidebar li {
    margin-bottom: 15px;
}

.archive-sidebar a {
    text-decoration: none;
    color: var(--text-gray-light);
    font-size: 18px;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.archive-sidebar a:hover,
.archive-sidebar a.active {
    color: #ffffff;
    font-weight: bold;
    border-left: 3px solid var(--red-accent); 
    padding-left: 10px;
}


.archive-content {
    flex: 1; 
}

.category-title {
    font-family: 'Emblema One', system-ui;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--mid-gray);
    padding-bottom: 10px;
    display: inline-block; /* 글자 길이만큼만 밑줄 */
}


.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 30px;
}

.archive-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.archive-item:hover img {
    opacity: 1;
}

.archive-item p {
    font-size: 14px;
    color: var(--text-gray-medium);
    margin: 0;
    text-align: center;
}

/* 컨텍트 페이지 */

.contact-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/b04.jpg'); 
    background-repeat: no-repeat;
    background-size: cover;        
    background-position: center;  
    background-attachment: scroll;
    color: #ffffff !important;
}

.contact-bg .sub-banner,
.contact-bg .contact-section {
    background: none !important;
    background-color: transparent !important;
}

.contact-bg h2, 
.contact-bg h3, 
.contact-bg p {
    color: #ffffff !important;
}

.contact-section {
    padding-bottom: 100px; /
}


.contact-content-wrapper {
    display: block; 
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;   
    background-color: rgba(0, 0, 0, 0.6); 
}


.contact-info-box {

    width: 100%;
    padding: 60px 50px; 
    color: #ffffff;
    text-align: center; 
    box-sizing: border-box;
}

.contact-info-box h2 {
    font-family: 'Emblema One', system-ui;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 50px;
    padding-bottom: 20px;
    display: inline-block;
}

.contact-layout-row {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 80px; 
    text-align: left; 
}

.contact-left-col {
    flex: 1; 
}

.contact-right-col {
    flex: 1; 
}

.contact-group {
    margin-bottom: 40px;
}

.contact-group h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--red-accent);
}

.contact-group p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 5px;
    line-height: 1.6;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

.email-link:hover {
    border-bottom: 1px solid #ffffff;
}

.divider {
    border: 0;
    height: 1px;
    background-color: #555;
    margin: 50px 0;
}


.general-message h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-form {
    max-width: 600px; 
    margin: 0 auto;   
    text-align: left; 
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1); 
    border: 1px solid #555;
    color: #ffffff;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaaaaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red-accent);
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-send {
    background-color: var(--mid-gray);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%; 
    font-weight: bold;
    margin-top: 10px;
}

.btn-send:hover {
    background-color: var(--red-accent);
}

/*  PPTX 페이지 */

.info-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/b02.jpg'); 
    background-repeat: no-repeat;
    background-size: cover;        
    background-position: center;  
    background-attachment: scroll; 
    color: #ffffff !important;
}

.info-bg .sub-banner,
.info-bg .contact-section {
    background: transparent !important;
}
.info-bg h2, 
.info-bg h3, 
.info-bg p {
    color: #ffffff !important;
}

.pptx {
    padding-bottom: 80px; 
    text-align: center;
}

.pptx .container h2 {
    font-family: 'Emblema One', system-ui;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 40px;
    padding-bottom: 20px;       
}

.video-wrapper {
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto;   
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    line-height: 0; 
}

.pptx video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; 
}


.mobile-guide {
    display: none; 
    color: #cccccc;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 300;
}

/* 모바일 모음 */
@media (max-width: 767px) {
    
    
    header {
        position: relative;
        z-index: 9999;
    }

    header .container { 
        padding: 0 15px; 
        display: flex;
        justify-content: space-between; 
        align-items: center;
    }


    .headB {
        display: none; 
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: #000000; 
        text-align: center;
        padding: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        z-index: 100;
        border-top: 1px solid #333;
    }


    .headB ul {
        display: flex; 
        flex-direction: column; 
        width: 100%;
        margin: 0;
        padding: 20px 0;
    }
    
    .headB ul li { 
        margin: 0; 
    }

    .headB a { 
        display: block;
        padding: 15px 0; 
        font-size: 16px; 
        color: #ffffff; 
        text-decoration: none;
    }
    
    .headB a:hover { 
        background-color: rgba(255, 255, 255, 0.1); 
        color: var(--red-accent);
    }
    

    .headB a::after { 
        display: none; 
    }
    
    .headC { 
        display: block; 
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-gray-light);
        cursor: pointer;
        padding: 10px; 
        margin-left: auto; 
    }
    
    .headC:hover { 
        opacity: 0.8; 
        color: #ffffff;
    }

    .search-icon { 
        display: none !important; 
    }
    
    .headA { 
        padding-left: 0; 
    }
    
    #menu-toggle:checked ~ .headB {
        display: block; 
    }

    /*메인 배너 */
    .main-banner { 
        height: 400px; 
    }
    .main-banner h1 { 
        font-size: 40px; 
    }
    .main-banner p { 
        font-size: 18px; 
    }

    /* 뉴스 */
    .news-section .column {
        flex: 50%;
        max-width: 50%;
    }

    /* 아티스트에 대해 */
    .about-section { 
        padding: 60px 0; 
    }
    .about-section .container {
        flex-direction: column; /* 세로로 쌓이도록 */
        gap: 30px;
        padding: 0 20px;
    }
    .about-image { 
        min-height: 300px; 
    }
    .about-text h2 { 
        font-size: 28px;
    }

    .features-section { 
        padding: 60px 0; 
    }
    .feature-box { 
        flex-basis: 100%; 
    }

    .gallery-section { 
        padding: 40px 0; 
    }

    .gallery-section .container { 
        flex-direction: column; 
        align-items: center; 
        padding: 20px;
    }
    .gallery-item {
        width: 100%; 
        max-width: 400px; 
        min-height: 250px;
        flex-basis: auto;
    }
    .gallery-item.large,
    .gallery-item.small {
        flex-basis: auto;
        max-width: 100%;
        min-height: 250px;
        height: auto; 
    }

    .archive-header h2 {
        font-size: 36px; 
    }
    
    .archive-layout {
        flex-direction: column; 
        gap: 40px;
    }
    
    
    .archive-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--mid-gray);
        padding-bottom: 20px;
        padding-right: 0;
    }
    
    .archive-sidebar ul {
        display: flex;
        gap: 20px;
        overflow-x: auto; 
        white-space: nowrap; 
        padding-bottom: 5px; 
    }
    
    .archive-sidebar a:hover,
    .archive-sidebar a.active {
        border-left: none;
        border-bottom: 3px solid var(--red-accent);
        padding-left: 0;
    }
    
    .archive-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }

    /*푸터 */
    footer {
        padding: 30px 0;
    }
    .footer-content {
        gap: 20px;
        padding: 0 20px;
    }
    .artist-info {
        font-size: 20px;
        gap: 10px;
    }
    .footer-logo {
        height: 30px; 
    }
    .social-links {
        gap: 20px;
    }
    .social-links a {
        font-size: 24px;
    }
    .copyright {
        font-size: 12px;
    }

    /*아티스트 페이지 */
    .sub-banner {
        height: 150px;
        padding: 40px 0;
    }
    .sub-banner h2 {
        font-size: 36px;
    }
    .profile .container { 
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        height: auto;
        padding-bottom: 60px;
    }
    .profile-text br {
        display: none;
    }

    .profile-text {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        text-align: center;
        padding: 0 20px;
        box-sizing: border-box;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    /* 컨택트 페이지 */
    .contact-layout-row {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-info-box {
        padding: 40px 20px;
    }
    .contact-info-box h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .contact-left-col,
    .contact-right-col {
        width: 100%;
    }
    
    .contact-group { margin-bottom: 30px; }
    .general-message h3 { margin-bottom: 20px; }


    .product-grid {
        grid-template-columns: repeat(1, 1fr); 
        gap: 40px; 
    }

   
    .works-grid {
        grid-template-columns: repeat(1, 1fr); 
        gap: 40px;
    }

    .product-img, .work-img-box {
        width: 100%;      
        height: auto;      
        aspect-ratio: 1 / 1; 
    }

    .product-img img, .work-img-box img {
        object-fit: cover;
    }

    .pptx .container h2 {
        font-size: 32px; 
        margin-bottom: 25px;
    }
    
    .pptx .container {
        padding: 0 20px; 
    }

    .mobile-guide {
        display: block; 
    }


} 

