@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;      /* 리플렛의 부드러운 배경색 [cite: 17] */
    --point-brown: #6d4c41;   /* 커피 원두의 진한 갈색 [cite: 1, 18] */
    --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;    /* 모바일은 2rem 정도로 조절 */
        margin-bottom: 40px;
    }
}

/* 3. 컨테이너 (중앙 정렬 박스) */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* 4. 리플렛 1p 메인 비주얼 스타일 [cite: 4, 5] */
.main_visual {
    background: #fff; /* 나중에 추출 이미지 [cite: 1] 배경으로 교체 가능 */
    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: center;    /* 세로 중앙 정렬 */
    justify-content: center; /* 가로 중앙 정렬 */
    overflow: hidden;       /* 이미지가 화면 밖으로 나가도 스크롤 안 생기게 */
    background-color: var(--bg-color);
}

.txt_box {
    text-align: center;
    z-index: 2; /* 이미지보다 위에 오도록 설정 */
    font-size: 38px !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.txt_box {
    margin: 0;
}

.txt_box p{
    font-size: 26px;
}

/* 이미지 공통 스타일 */
.deco {
    position: absolute;
    width: 460px; /* 리플렛 크기에 맞춰 조절하세요 */
    opacity: 0.8; /* 살짝 투명하게 하면 더 분위기 납니다 */
}

/* 왼쪽 위 모서리 */
.deco_tl {
    top: 50px;
    left: 50px;
}

/* 오른쪽 아래 모서리 */
.deco_br {
    bottom: 50px;
    right: 50px;
}

/* 인사말 섹션 스타일 */
.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;
}

/* 제목 부분 - 시안의 바이브 유지 [cite: 16, 31, 40, 46] */
.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;
}

/* 모바일 반응형: 화면이 좁아지면 다시 1줄로 [cite: 16] */
@media (max-width: 768px) {
    .product_lineup .container {
        grid-template-columns: 1fr; /* 1열로 변경 */
        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; }
}