@charset "utf-8";

/* ============================
   font
============================ */
/* 리디바탕*/
@font-face {
    font-family: 'RIDIBatang';
    src: url('font/RIDIBatang.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 프리텐다드*/
@font-face {
    font-family: 'Pretendard';
    font-weight: 400; /* Regular */
    src: url('font/Pretendard-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 700; /* Bold */
    src: url('font/Pretendard-Bold.woff') format('woff');
}

:root {
    --bg-color: #fdfaf5;
    --point-brown: #6d4c41;
    --text-black: #222;
    --main-font: 'Pretendard', sans-serif;
    --title-font: 'RIDIBatang', serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: 'Noto Sans KR', sans-serif; /* 기본 폰트 */
    color: var(--text-black);
    line-height: 1.6;
    font-family: var(--main-font);
}

h1, h2, h3, .point_txt {
    font-family: var(--title-font);
}

/* 섹션 공통 제목 스타일 */
.sec_tit {
    font-family: 'RIDIBatang', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center; 
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sec_tit::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #dcb08b;
    margin: 20px auto 0;
}


@media (max-width: 768px) {
    .sec_tit {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* 3. 컨테이너 (중앙 정렬 박스) */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* 4. 리플렛 1p 메인 비주얼 스타일 */
.main_visual {
    background: #fff;
    padding: 100px 20px;
    border-bottom: 1px solid #eee;
}

.main_visual h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--point-brown);
}

.visual_sec {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    overflow: hidden;
    background: url('img/IMG_5077.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding-top: 30vh; 
}

.visual_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
    z-index: 1; /* 글보다 아래에 위치 */
}

.txt_box {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* 제목 스타일 디테일 수정 */
.txt_box h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5); 
}

/* 설명글 스타일 */
.txt_box .desc {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .visual_sec { padding-top: 25vh; }
    .txt_box h1 { font-size: 2.2rem; }
    .txt_box .desc { font-size: 1rem; }
}

/* 인사말 섹션 스타일 */
.intro_brand {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/coffee_bean_bg.jpg') no-repeat center/cover;
    padding: 120px 0;
    color: #fff;
    text-align: left; /* 시안처럼 왼쪽 정렬 */
}

.intro_text .eng_tit { font-family: 'RIDIBatang'; font-size: 1.5rem; color: #dcb08b; }
.intro_text .kor_tit { font-size: 3rem; margin-top: 10px; margin-bottom: 40px; }
.intro_text .main_desc { font-size: 1.2rem; line-height: 1.8; margin-bottom: 40px; font-weight: 400; }
.intro_text .sub_desc { list-style: none; padding: 0; opacity: 0.8; }
.intro_text .sub_desc li { margin-bottom: 10px; position: relative; padding-left: 15px; }

/* ESG 섹션 스타일 */
.esg_val { background: #fff; color: #333; }
.esg_flex { display: flex; align-items: center; justify-content: space-around; gap: 50px; }
.esg_img { flex: 1; text-align: center; }
.esg_img img { max-width: 100%; height: auto; }
.esg_txt { flex: 1.2; text-align: left; }
.esg_txt h3 { font-family: 'RIDIBatang'; font-size: 2rem; margin-bottom: 30px; }
.esg_txt ul { list-style: none; padding: 0; }
.esg_txt li { margin-bottom: 15px; font-size: 1.1rem; color: #666; position: relative; padding-left: 15px; }
.esg_txt li::before { content: "·"; position: absolute; left: 0; font-weight: bold; }

/* 모바일 반응형 */
@media (max-width: 768px) {
    .esg_flex { flex-direction: column; text-align: center; }
    .esg_txt { text-align: center; }
    .intro_text .kor_tit { font-size: 2rem; }
}

/* 섹션 4 스타일 */
.process_sec { padding: 80px 0; background-color: var(--bg-color); }
.process_sec .sec_tit { font-size: 2.2rem; margin-bottom: 40px; text-align: left; }
.process_sec .sec_tit span { font-weight: 800; display: block; margin-left: 100px; }

.process_sec .sec_tit::after {
    display: none !important; /* 선을 보이지 않게 처리 */
}

.process_bg_box {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/process_bg.jpg') no-repeat center/cover;
    padding: 60px 40px;
    border-radius: 5px;
    color: #fff;
    text-align: left;
}
.process_list { list-style: none; padding: 0; margin: 0; }
.process_list li { font-size: 1.2rem; margin-bottom: 12px; font-weight: 300; }
.process_list li::before { content: "· "; font-weight: bold; }

/* 섹션 5 제품 리스트 스타일 */
/* 제품 리스트 전체 감싸는 컨테이너 */
.product_lineup{
    background: #fff;
}
.product_lineup .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

/* 개별 카드 아이템 */
.product_item {
    /* 기존 border-bottom은 제거하고 전체에 테두리를 주거나 간결하게 유지 */
    border-bottom: 2px solid #333; 
    padding: 20px 0 40px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* 제목 부분 */
.p_tit { 
    font-family: 'Pretendard'; 
    font-size: 1.6rem; 
    font-weight: 700; 
    margin-bottom: 15px; 
}

.p_tit span { 
    display: block; /* 한 줄에 2개씩 들어갈 땐 이름을 아래로 내리는 게 더 예쁩니다 */
    font-size: 0.9rem; 
    font-weight: 400; 
    color: #888; 
    margin-top: 5px;
}

/* 모바일 반응형*/
@media (max-width: 768px) {
    .product_lineup .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .p_tit { font-size: 1.4rem; }
}

/* 시안 포인트 컬러 적용 */
.awesome { color: #8a3a4b; }
.longbeach { color: #3a5b8a; }
.sunset { color: #b59a5a; }
.etc { color: #333; }

.p_desc, .p_rec { font-size: 1.1rem; color: #444; margin: 5px 0; }

/* Partner Benefit 스타일 */
.benefit_sec { padding: 100px 0;}
.benefit_sec h2{ font-family: 2.2rem; }
.benefit_content { max-width: 800px; margin: 0 auto; text-align: left; }
.benefit_item { margin-bottom: 50px; }
.benefit_item h3 { font-family: 'Pretendard'; font-size: 1.6rem; color: var(--point-brown); margin-bottom: 15px; }
.benefit_item p { font-size: 1.1rem; line-height: 1.7; color: #555; word-break: keep-all; }

/* Partner Process 스타일 */
.process_step_sec { padding: 100px 0; background: #fff; }
.step_list { display: flex; flex-direction: column; align-items: center; }

.step_item { 
    display: flex; align-items: center; gap: 30px; 
    width: 100%; max-width: 600px; padding: 20px 0;
}
.step_icon { 
    flex-shrink: 0; width: 80px; height: 80px; 
    border: 1px solid #ccc; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
}
.step_icon img { width: 45px; }
.step_item p { font-size: 1.15rem; color: #333; text-align: left; margin: 0; }

.arrow_down { color: #999; font-size: 1.2rem; margin: 10px 0; }

/* 모바일 대응 */
@media (max-width: 768px) {
    .step_item { flex-direction: column; text-align: center; gap: 15px; }
    .step_item p { text-align: center; }
}

.footer_sec {
    background-color: #333;
    color: #fff;
    padding: 60px 0 40px;
    font-family: 'Pretendard', sans-serif;
}

.footer_top {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.link_item a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link_item .icon { font-size: 2rem; margin-bottom: 10px; }
.link_item p { font-size: 0.9rem; text-align: center; margin: 0; }
.link_item p span { display: block; opacity: 0.7; font-size: 0.8rem; margin-top: 5px; }

.footer_line { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 40px; }

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.contact_info p { font-weight: bold; margin-bottom: 10px; color: #dcb08b; }
.contact_info a { display: block; color: #ccc; text-decoration: none; font-size: 0.9rem; margin-bottom: 5px; }

.company_info { text-align: right; }
.company_info .copyright { font-size: 0.85rem; line-height: 1.6; color: #999; }
.company_info strong { color: #fff; display: block; margin-top: 5px; }

/* 모바일 반응형 */
@media (max-width: 768px) {
    .footer_top { flex-direction: column; gap: 40px; }
    .footer_bottom { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
    .company_info { text-align: center; }
}