/* ==========================================================================
   개인 에세이/기록 매거진 풍 메인화면 (home.css)
   ========================================================================== */

/* 폰트 불러오기 */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700&family=Noto+Sans+KR:wght@300;400;500&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* 감성 명조체 선언 */
.hero-title, 
.section-title, 
.outro-content p,
.intro-card h3 {
    font-family: 'Nanum Myeongjo', 'Batang', serif !important;
    font-weight: 400;
    letter-spacing: -0.5px;
}

/* 글로벌 레이아웃 정리 */
.home-custom-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ==========================================================================
   1. 히어로 섹션 (Cozy Room)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* 따뜻한 아날로그 책상/공간 배경 */
    background: url('https://images.unsplash.com/photo-1517842645767-c639042777db?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 어두운 레이어 처리로 글씨 가독성 확보 */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-sub {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-title {
    font-size: 46px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 17px;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 13px 38px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #2b2b2b;
    border-color: #ffffff;
    transform: translateY(-2px);
}


/* ==========================================================================
   2. 카드 소개 섹션 (Warm Cozy Cafe/Paper Background)
   ========================================================================== */
.intro-cards-section {
    position: relative;
    padding: 120px 20px;
    /* 따뜻하고 은은한 감성 조명/노트 배경 이미지 */
    background: url('https://images.unsplash.com/photo-1495446815901-a7297e633e8d?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    background-attachment: fixed; /* 패럴랙스(스크롤시 배경 고정) 효과로 더욱 고급스럽게 */
}

/* 밝은 필터 레이어를 얹어 따뜻한 종이 질감 연출 및 콘텐츠 가독성 극대화 */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.93); /* 흰색 93% 투명도로 글을 아주 선명하게 함 */
    z-index: 1;
}

.section-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 30px;
    color: #2c2c2c;
    margin-bottom: 70px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #a89880; /* 빈티지 브라운 컬러 라인 */
    margin: 20px auto 0;
}

/* 그리드 카드 디자인 */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.intro-card {
    background: rgba(255, 255, 255, 0.85); /* 투명감 있는 백그라운드 */
    backdrop-filter: blur(5px); /* 뒤 배경이 은은하게 블러처리되는 효과 */
    padding: 50px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.intro-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(168, 152, 128, 0.15); /* 따뜻한 색감의 그림자 */
    transform: translateY(-8px);
}

/* SVG 아이콘 스타일링 (따뜻한 브라운 감성) */
.card-icon-svg {
    width: 50px;
    height: 50px;
    margin: 0 auto 25px;
    color: #a89880; /* 아이콘 기본 컬러 */
    transition: color 0.3s ease, transform 0.3s ease;
}
.intro-card:hover .card-icon-svg {
    color: #7c6a51; /* 호버 시 진한 브라운으로 변경 */
    transform: scale(1.1) rotate(-3deg);
}

.intro-card h3 {
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.intro-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}


/* ==========================================================================
   3. 아웃트로 섹션 (Sunset / Evening)
   ========================================================================== */
.outro-section {
    position: relative;
    padding: 140px 20px;
    text-align: center;
    /* 고요한 저녁노을 혹은 따뜻한 전등 밤 배경 */
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: #ffffff;
}

.outro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 38, 35, 0.65); /* 갈색빛이 도는 깊은 어둠 오버레이 */
    z-index: 1;
}

.outro-content {
    position: relative;
    z-index: 2;
}

.outro-content p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.outro-content span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}


/* ==========================================================================
   4. 동적 페이드인 애니메이션 제어
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 시간차 딜레이 효과 */
.hero-content .hero-sub { transition-delay: 0.1s; }
.hero-content .hero-title { transition-delay: 0.3s; }
.hero-content .hero-desc { transition-delay: 0.5s; }
.hero-content .hero-btn { transition-delay: 0.7s; }

.intro-card:nth-child(1) { transition-delay: 0.1s; }
.intro-card:nth-child(2) { transition-delay: 0.3s; }
.intro-card:nth-child(3) { transition-delay: 0.5s; }

@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }
    .intro-cards-section {
        padding: 80px 20px;
    }
    .outro-section {
        padding: 100px 20px;
    }
}

/* ==========================================================================
   모바일 및 모든 화면 단어 단위 줄바꿈 설정 (한두 글자 떨어짐 방지)
   ========================================================================== */

/* 1. 히어로 섹션 설명글 가독성 보완 */
.hero-desc {
    word-break: keep-all; /* 단어가 중간에 잘리지 않고 통째로 줄바꿈 */
    overflow-wrap: break-word; 
    max-width: 600px;     /* PC 화면에서도 너무 길게 늘어지지 않도록 너비 제한 */
    margin: 0 auto 40px;  /* 중앙 정렬 유지 */
}

/* 2. 카드 내부 설명글 및 아웃트로 텍스트도 일괄 적용 (안정적인 레이아웃) */
.intro-card p,
.outro-content p {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* ==========================================================================
   섹션 간 빈 공간(여백) 완벽 제거 및 컨테이너 최적화 (home.css 추가분)
   ========================================================================== */

/* 1. 워드프레스/테마가 콘텐츠 영역에 강제로 부여하는 여백 완전 제거 */
.home #primary,
.home .site-main,
.home #content,
.home .site-content {
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. 각 섹션들의 마진을 0으로 강제 초기화하여 섹션 간 이음새 밀착 */
.hero-section,
.intro-cards-section,
.outro-section {
    margin: 0 !important;
}

/* 3. 첫 번째 타이틀의 상단 마진이 부모 섹션 위로 탈출(마진 병합)하는 현상 해결 */
.section-title {
    margin-top: 0 !important; /* 위쪽 마진을 없애 틈이 벌어지는 것을 원천 차단 */
}

/* 4. 부모 컨테이너에 최소한의 여백 차단용 안전장치 추가 */
.intro-cards-section {
    overflow: hidden; /* 마진 탈출 방지 2차 보호막 */
}

/* ==========================================================================
   5. 블로그 피드 페이지 전용 스타일 (/blog) - 현대 미술 비대칭 3열 버전 (우선순위 강화판)
   ========================================================================== */

/* 블로그 전체 컨테이너 및 감각적인 연한 웜그레이 배경 */
.blog-custom-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: #f7f5f2; /* 미술관 벽면 같은 아주 우아한 미색 */
}

/* 블로그 헤더 - 슬림하고 따뜻한 배경 이미지 레이아웃 */
.blog-header {
    position: relative;
    height: 30vh;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1457369804613-52c61a468e7d?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: #ffffff;
}

.blog-header-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(43, 38, 35, 0.55); /* 따뜻한 갈색빛 55% 어둠 오버레이 */
    z-index: 1;
}

.blog-header-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.blog-sub-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 8px;
    opacity: 0.6;
    font-weight: 500;
}

.blog-main-title {
    font-family: 'Nanum Myeongjo', 'Batang', serif !important;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: -1px;
}

.blog-desc {
    font-size: 13px;
    font-weight: 300;
    opacity: 0.65;
    word-break: keep-all;
}

/* 글 목록 영역 (적당하게 안정적인 너비 확보) */
.blog-content-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px 120px;
}

/*  핵심: 현대 미술풍 불규칙 3열 그리드 시스템 */
@media (min-width: 992px) {
    .post-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 기본 3열 설정 */
        gap: 50px 35px; /* 위아래 여백은 넓게, 좌우는 조금 더 조밀하게 */
    }

    /* 규칙성 속의 불규칙한 리듬감 부여 (nth-child 활용) */

    /* 1. 첫 번째 카드는 가로로 2칸을 차지하며 넓고 거대하게 강조 */
    .blog-card:nth-child(6n+1) {
        grid-column: span 2;
    }
    .blog-card:nth-child(6n+1) .card-thumbnail {
        padding-top: 38% !important; /* 가로가 넓어지므로 썸네일 비율을 슬림하게 조정 */
    }

    /* 2. 짝수 번째 카드들은 아래로 살짝 내려서 배치 (패럴랙스 같은 엇갈림 연출) */
    .blog-card:nth-child(3n+2) {
        transform: translateY(25px);
    }
    
    /* 3. 특정 카드(예: 4번째)는 세로로 긴 이미지 비율을 주어 변칙성 강조 */
    .blog-card:nth-child(6n+4) .card-thumbnail {
        padding-top: 75% !important; /* 세로로 더 깊은 이미지 비율 */
    }
}

/* 991px 이하 태블릿 및 모바일은 무리하지 않고 단정하게 1~2열 정렬 */
@media (max-width: 991px) and (min-width: 768px) {
    .post-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 767px) {
    .post-cards-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }
}

/* 개별 카드 디자인 (갤러리 액자처럼 미니멀하고 플랫하게) */
article.blog-card {
    background: #ffffff !important;
    border-radius: 0px !important; /* 둥근 모서리를 완전히 없앰 */
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important; /* 극도로 얇은 그림자 */
    border: 1px solid rgba(0, 0, 0, 0.05) !important; /* 얇은 프레임 선 */
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important; /* 부모 테마의 개별 포스트 마진 강제 초기화 */
    padding: 0 !important; /* 부모 테마의 개별 포스트 패딩 강제 초기화 */
}

/* 카드 마우스 호버 시 우아하게 커지며 그림자 강조 */
article.blog-card:hover {
    transform: translateY(-5px) scale(1.01) !important; 
    box-shadow: 0 15px 35px rgba(43, 38, 35, 0.1) !important;
    z-index: 5;
}

/* 썸네일 박스 및 내부 여백 제어 */
.blog-card .card-thumbnail {
    position: relative !important;
    width: 100% !important;
    padding-top: 56.25% !important; /* 기본 16:9 비율 */
    overflow: hidden !important;
    background-color: #eae7e2 !important;
    display: block !important;
    margin: 0 !important; /* 썸네일 박스 마진 강제 제거 */
}

.blog-card .card-thumbnail a {
    display: block !important;
    line-height: 0 !important; /* 브라우저의 기본 폰트 라인 높이로 인한 아래 틈새 원천 봉쇄 */
}

.blog-card .card-thumbnail img {
    position: absolute !important;
    top: 0 !important; 
    left: 0 !important; 
    width: 100% !important; 
    height: 100% !important;
    object-fit: cover !important;
    filter: grayscale(15%) !important; /* 회색조를 아주 살짝 섞어 빈티지하고 차분한 무드 */
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
                filter 0.5s ease;
    display: block !important;
    margin: 0 !important;
    border: none !important;
}

/* 호버 시 이미지가 부드럽게 밝아지며 확대 */
article.blog-card:hover .card-thumbnail img {
    transform: scale(1.05) !important;
    filter: grayscale(0%) !important;
}

/* 카테고리 배지 (미니멀하고 세련된 딱딱한 사각 태그) */
.blog-card .card-category {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background: #111111 !important; /* 시크한 블랙 */
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    padding: 3px 10px !important;
    border-radius: 0px !important; /* 둥글지 않은 스퀘어 */
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    line-height: 1.5 !important;
}

/* 카드 바디 (썸네일과의 연결 틈새 완벽 제거) */
.blog-card .card-body {
    padding: 28px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    margin-top: 0 !important; /* 썸네일 아래쪽 마진 완전히 차단 */
    border-top: none !important;
}

.blog-card .card-body > *:first-child {
    margin-top: 0 !important; /* 날짜 등 첫 요소가 바디 위쪽을 밀어내는 현상 방지 */
}

.card-date {
    font-size: 11px;
    color: #999999;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.card-title {
    font-family: 'Nanum Myeongjo', 'Batang', serif !important;
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #a89880; /* 부드러운 포인트 브라운 */
}

.card-excerpt {
    font-size: 13px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
    word-break: keep-all;
    overflow-wrap: break-word;
    flex-grow: 1;
}

/* '자세히 읽기' 링크 - 하단 라인이 채워지는 우아한 링크 */
.card-readmore {
    font-size: 11px;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.card-readmore::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: #111111;
    transform: scaleX(0.3); /* 처음엔 밑줄이 짧음 */
    transform-origin: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

article.blog-card:hover .card-readmore::after {
    transform: scaleX(1) !important; /* 호버 시 밑줄이 우아하게 쫙 펴짐 */
    background: #a89880 !important;
}

article.blog-card:hover .card-readmore {
    color: #a89880 !important;
}

/* 페이지네이션 디자인 */
.blog-pagination {
    margin-top: 80px;
    text-align: center;
}

.blog-pagination .nav-links {
    display: inline-flex;
    gap: 10px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 0px; /* 각진 테두리 */
    border: 1px solid #111111;
    color: #111111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #ffffff;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: #111111;
    color: #ffffff;
}

/* ==========================================================================
   블로그 헤더 이미지 상단 빈 공간(여백) 완전 제거 (최종 저격 코드)
   ========================================================================== */

/* 1. 자식 테마 블로그 컨테이너 내부의 테마 기본 상단 패딩 완전 제거 */
.blog-custom-container,
#primary.blog-custom-container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 2. 테마가 콘텐츠 영역 내부(.separate-containers 등)에 추가로 부여하는 패딩 방어 */
.blog-custom-container .site-main,
.blog-custom-container main#main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 3. GeneratePress 고유의 콘텐츠 바깥 컨테이너 상단 여백 차단 */
.blog-custom-container .inside-article {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ==========================================================================
   6. 상단 헤더 & 네비게이션 메뉴 미니멀 갤러리풍 커스텀
   ========================================================================== */

/* 헤더 전체 컨테이너 정리 */
.site-header,
#masthead {
    background: #ffffff !important; /* 깨끗한 미술관 벽면 같은 화이트 */
    border-bottom: 1px solid rgba(168, 152, 128, 0.15) !important; /* 은은한 샌드 브라운 경계선 */
    padding: 15px 0 !important; /* 위아래 패딩을 줄여 컴팩트하고 슬림하게 조정 */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.01) !important;
}

/* 로고 / 사이트 타이틀 (명조체로 우아함 극대화) */
.site-branding .main-title,
.site-branding .main-title a {
    font-family: 'Nanum Myeongjo', 'Batang', serif !important;
    font-size: 20px !important; /* 너무 거대하지 않고 단정하게 */
    font-weight: 700 !important;
    color: #2c2c2c !important;
    letter-spacing: -0.5px !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.site-branding .main-title a:hover {
    color: #a89880 !important; /* 포인트 브라운 컬러 */
}

/* 네비게이션 메뉴 바 */
.main-navigation {
    background: transparent !important;
}

/* 메뉴 링크 스타일 (얇고 가벼운 고딕) */
.main-navigation .main-nav ul li a {
    font-family: 'Noto Sans KR', sans-serif !important;
    font-weight: 400 !important;
    font-size: 13.5px !important; /* 가독성 좋은 컴팩트 사이즈 */
    color: #555555 !important; /* 너무 강하지 않은 차분한 먹색 */
    padding: 10px 18px !important; /* 좌우 간격을 넓혀 여유로운 느낌 부여 */
    letter-spacing: 0.5px !important;
    position: relative !important;
    transition: color 0.3s ease !important;
}

/* 메뉴 호버 / 현재 활성화된 페이지 효과 (언더라인 스르륵 모션) */
.main-navigation .main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px; /* 패딩 값에 맞춰 정렬 */
    right: 18px;
    height: 1px;
    background: #a89880;
    transform: scaleX(0); /* 처음엔 밑줄이 숨겨짐 */
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 마우스를 올리거나 현재 보고 있는 페이지일 때 */
.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li.current-menu-item > a {
    color: #a89880 !important;
}

.main-navigation .main-nav ul li:hover > a::after,
.main-navigation .main-nav ul li.current-menu-item > a::after {
    transform: scaleX(1); /* 밑줄이 중앙에서 양옆으로 스르륵 펴짐 */
}

/* ==========================================================================
   모바일 반응형 네비게이션 조율
   ========================================================================== */
@media (max-width: 768px) {
    /* 모바일 헤더 높이 및 패딩 최소화 */
    .site-header {
        padding: 10px 0 !important;
    }

    .site-branding .main-title,
    .site-branding .main-title a {
        font-size: 17px !important; /* 모바일에서는 조금 더 미니멀하게 */
    }

    /* 모바일 토글 버튼 (햄버거 메뉴) 스타일링 */
    .menu-toggle {
        background: transparent !important;
        color: #2c2c2c !important;
        font-size: 18px !important;
        padding: 0 15px !important;
    }
    
    .menu-toggle:hover,
    .menu-toggle:focus {
        background: transparent !important;
        color: #a89880 !important;
    }

    /* 모바일 메뉴가 펼쳐졌을 때의 드롭다운 영역 */
    .main-navigation.toggled .main-nav ul {
        background: #ffffff !important;
        border-top: 1px solid rgba(168, 152, 128, 0.1) !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    }

    .main-navigation.toggled .main-nav ul li a {
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02) !important;
        text-align: left !important;
    }

    /* 모바일 환경에서는 언더라인 모션 제거 (터치 기기 오작동 방지) */
    .main-navigation .main-nav ul li a::after {
        display: none !important;
    }
}

/* ==========================================================================
   7. 하단 푸터(Footer) 미니멀 매거진풍 커스텀
   ========================================================================== */

/* 푸터 전체 컨테이너 */
.site-footer {
    background-color: #f5f2ed !important; /* 따뜻하고 아늑한 옅은 베이지 샌드 톤 */
    color: #7c6a51 !important; /* 가독성 좋고 부드러운 다크 브라운 톤 */
    border-top: 1px solid rgba(168, 152, 128, 0.15) !important; /* 상단 메뉴와 일관성 있는 얇은 선 */
    padding: 60px 20px !important; /* 위아래로 숨 쉴 수 있는 넉넉한 여백 */
    text-align: center;
}

/* 푸터 내부 정렬 */
.site-footer .footer-content-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

/* 푸터 로고 / 슬로건 */
.footer-title {
    font-family: 'Nanum Myeongjo', 'Batang', serif !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #2c2c2c;
    text-transform: uppercase;
}

/* 푸터 설명글 */
.footer-desc {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
    color: #8c7b65;
    margin-bottom: 25px;
    word-break: keep-all;
}

/* 카피라이트 텍스트 */
.site-info,
.site-footer .copyright-bar {
    font-size: 11px !important;
    letter-spacing: 0.5px;
    color: #a89880 !important;
    font-weight: 400;
}

.site-info a {
    color: #7c6a51 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-info a:hover {
    color: #2c2c2c !important;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px !important;
    }
}