
body{
  overflow: auto;
}

/* 전역 스크롤바 스타일 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #3eaf7c;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2d8a5f;
}

/* Firefox 스크롤바 */
* {
  scrollbar-width: thin;
  scrollbar-color: #3eaf7c #f1f1f1;
}
/* ===============================
  헤더, 푸터 부분 고정
=============================== */

.header{ flex-shrink:0; }
.footer{
  flex-shrink: 0;
  margin-top: auto;
  padding: 20px 100px 24px;
  background:#fff;
  width: 100%; 
}

/*헤더 푸터 뺀 중간 내용 부분*/
.content{
  flex: 1 0 auto;
  min-height: 0;    
  overflow: auto;
  padding: 0;       
  background:#fffefe;
}

*{
    cursor: none;
}

/* ===============================
   마우스커서
=============================== */
body{ cursor:none; }
.c-dot{
  position:fixed; top:0; left:0;
  width:18px; height:18px;
  border-radius:50%;
  background:#3eaf7c;
  transform:translate(-50%,-50%);
  pointer-events:none;
  z-index:99;
}

@media (hover:none) and (pointer:coarse){
  body{cursor:auto;}
  .c-dot{display:none !important;}
}

/* ===============================
   ABOUT 레이아웃
=============================== */
.about-section{
  height: 100%;
  display:flex;
}

/* Sidebar */
.sidebar{
  width:30%;
  flex:0 0 260px;
  background:#fff;
  padding:24px 20px;
  border-right:1px solid #eee;
  box-shadow: 2px 0 10px rgba(0,0,0,0.04);
  position:relative;
  overflow-y: auto; 
  transition: width .28s ease, padding .28s ease;
}
.sidebar h2{
  font-size: 1rem;  
  text-align: center;
  color: #222;
}

/* ------사이드바 토클------- */
.sidebar-toggle{
  display: none;
}

/* ----사이드바 디자인 아이콘------ */
.about-icon{
  display: none;
}


/*-------filter buttons------- */
.sidebar .filter-btn{
border: none;
background: transparent;
display: flex;
align-items: center;
gap:12px;
padding: 10px 10px;
border-radius: 10px;
cursor: pointer;
transition: background .18s ease, transform .18s ease;
user-select:none;
}

.sidebar .filter-btn img{
  width: 32px;
  height: 32px;
display: block;
}

.sidebar .line{
  width: 100%;
  border-bottom: 1px dashed #e9e9e9;
}

.sidebar .filter-btn span{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #222;
  white-space: nowrap;
}

.filter-btn.active{
background: #eef7f2;
width: 100%;
}

.filter-btn:hover{
background: #f4f4f4;
 transform: translateY(-1px);
 width: 100%;
}


/* 프로필 이모지 */
.profile-image{
  position: relative;
  width:100px;
  height:100px;
  border-radius:50%;
  background: #3eaf7c;
  margin: 0 auto;
  margin-bottom: 20px;
}
.profile-image .me{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width:80%;
  height:80%;
  object-fit: cover;
  border-radius: 50%;
}
.name{
  text-align:center;
  font-weight:800;
  font-size:16px;
  letter-spacing:.6px;
  margin-bottom:14px;
  white-space:nowrap;
}

.contact-info{
  font-size:12px;
  line-height:1.8;
  color:#333;
  margin: 0 4px 18px;
  padding-bottom:18px;
  border-bottom:1px dashed #e9e9e9;
}

.nav-list{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.nav-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 10px 10px;
  border-radius:10px;
  cursor:pointer;
  transition: background .18s ease, transform .18s ease;
  user-select:none;
}

.nav-item:hover{
  background:#f4f4f4;
  transform: translateY(-1px);
}
.nav-item.active{ background:#eef7f2; }
.folder-icon{
  width:30px;
  height:30px;
  position:relative;
}
.folder-icon img{
  width: 100%;
  height: 100%;
  display: block;
}
.nav-item span{
  font-size:12px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#222;
  white-space:nowrap;
}

/* =======Main content 영역 (오른쪽)========= */
.sheet{
  min-width:0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 60px;
  min-height: 900px;
  background-color: var(--bg-secondary);
}

.sheet::-webkit-scrollbar {
  width: 10px;
}

.sheet::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.sheet::-webkit-scrollbar-thumb {
  background: #3eaf7c;
  border-radius: 5px;
}

.sheet::-webkit-scrollbar-thumb:hover {
  background: #2d8a5f;
}

/* ===============================
   그리드
=============================== */
.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* 탭 패널: 여기만 스크롤 */
.tab-panels{
  flex:1;
  min-height:0;
  overflow:auto;
  padding-right: 6px; /* 스크롤바 여백 */
}

.tab-panel{ display:none; }
.tab-panel.active{ display:block; }

/* ===============================
   오른쪽 카드 영역
=============================== */
.grid-container{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1100px;
}

.grid-item{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.card{
  padding: 20px;
  border-radius: 15px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(62,175,124,0.18) ;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
  0 12px 30px rgba(106, 155, 133, 0.12); }

.row{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:20px;
}

.desc, .date, .exp-item{
  margin-bottom: 4px;
}
/* 2024. 년도 */
.exp-year{
  padding: 16px 0 ;
  font-weight: 600;
}
/* ====== 프로그레스바====== */

.progress-area{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  gap:15px

}
.progress-area .progress{
  position: relative;
}
/* 각각 타이틀 */
.progress-area .progressbar-txt{
  font-size: 16px;
  font-weight: 600;
}

/* 옆에 퍼센트 */
.progress-area .progressbar-text{
  position: absolute;
  top:0;
  right: 0 !important;

}
/* Keyword 탭용 간단 레이아웃 */
.keyword-wrap{
  max-width: 1100px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.keyword-chip{
  border:1px solid #eee;
  border-radius: 14px;
  padding: 16px 16px;
  background:#fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.keyword-chip:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.09);
}
.keyword-chip .k-title{
  font-weight:900;
  letter-spacing:.4px;
  margin-bottom:6px;
}
.keyword-chip .k-desc{
  font-size:13px;
  line-height:1.6;
  color:#444;
}



/* ===============================
   태블릿 반응형 (1250 )
=============================== */
@media (max-width: 1250px){
.sheet{
    display: block !important;
    width: 100%;
    padding: 50px 40px;
    overflow: visible;
  }

  .keywordSwiper{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px;  
  }


  .keywordSwiper .swiper-wrapper{
    align-items: stretch;
  }

  .keywordSwiper .swiper-slide{
    height: auto;
    display: flex;
    justify-content: center;
  }


  .keywordSwiper .row{
    width: 100%;
    margin-top: 20px;
  }

  .nav-list span{
    display: block;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    }

  .sheet{
    display: block !important;
    align-items: initial !important;
    justify-content: initial !important;
    padding: 30px 15px !important;
  }

  .keywordSwiper{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 28px 46px;
    overflow: hidden;
  }

  .keywordSwiper .swiper-wrapper{ align-items: stretch; }
  .keywordSwiper .swiper-slide{
    display: flex;
    justify-content: center;
  }

  .keywordSwiper .row{
    width: 100%;
    max-width: 420px;
  }

  .browser-frame{ height: 100vh; }


  .sheet{
    flex-direction: column;
    padding: 30px 15px;
  }

  .row{ margin-bottom: 2px; }



/* ----사이드바----- */
  .sidebar{
    width: 100px;
    flex: 0 0 100px;
    padding: 20px 10px;
  }

  /* 태블릿에서 숨길 요소들 */
  .sidebar .name:first-of-type,
  .sidebar .profile-image,
  .sidebar .contact-info,
  .nav-list p{
    display: none;
  }

  .name{
    font-size: 8px;
    font-weight: 400;
  }

  /* 폴더 아이콘 + 텍스트 세로로 배치 */
  .nav-list{
    margin-top: 20px;
    gap: 15px;
    align-items: center;
  }

  .nav-item{
    padding: 10px 8px;
    flex-direction: column;
    gap: 6px;
    width: 70px;
  }

  .folder-icon{
    width: 32px;
    height: 32px;
    margin: 0;
  }

  .nav-item.active{
    background: #eef7f2;
    border-radius: 12px;
  }

  .nav-item:hover{ background: #f4f4f4; }

  .sec-title{ font-size: 22px; }

  .rows .row .photo{
    width: 220px;
    height: 220px;
  }

  .desc{
    width: auto;
    font-size: 14px;
  }
 .exp-year{
  padding: 10px 0;
 }
 .progress-area{
  gap:10px;
  justify-content: space-between;  
}
.progress-area .progress{
  flex-basis: 40%;
  height: 20px;
  margin-bottom:1rem;
  position: relative;
}

}

/* ===============================
   태블릿 반응형  1024px 이하
=============================== */
@media (max-width: 1024px) {
  .browser-frame{
    min-height: 100vh;
  }

  /* 태블릿에서 그리드 1열로 */
  .grid{
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }

  .grid-container{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sidebar{
    width: 80px;
    flex: 0 0 100px;
    padding: 20px 10px;
  }

  /* 태블릿에서 숨길 요소들 */
  .sidebar .name:first-of-type,
  .sidebar .profile-image,
  .sidebar .contact-info,
  .nav-list p{
    display: none;
  }

  /* 이름 부분은 보이게 - 2줄로 */
  .sidebar .name{
    display: block;
    font-size: 8px;
    margin-bottom: 16px;
    white-space: pre-line;
    word-break: break-word;
    line-height: 1.3;
    font-weight: 400;
  }


  /* 폴더 아이콘 + 텍스트 세로로 배치 */
  .nav-list{
    margin-top: 20px;
    gap: 15px;
    align-items: center;
  }

  .nav-item{
    padding: 10px 8px;
    flex-direction: column;
    gap: 6px;
    width: 70px;
  }

  .folder-icon{
    width: 32px;
    height: 32px;
    margin: 0;
  }

  .nav-item span{
    display: block;
    font-size: 10px;
    text-align: center;
    white-space: nowrap;
  }

  .nav-item.active{
    background: #eef7f2;
    border-radius: 12px;
  }

  .nav-item:hover{
    background: #f4f4f4;
  }

  .sheet{
    padding: 30px 15px;
  }
.rows, .exp{
  padding: 10px 20px;
}
  .card{
  padding: 12px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(62,175,124,0.18) ;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
  0 12px 30px rgba(62,175,124,0.12); 
}

.progress-area{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap:22px;
  position: relative;
  padding: 12px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(217,217,217,0.2);
}
.progress-area .progress{
  flex-basis: 40%;
  height: 20px;
  margin-bottom:1rem;
  position: relative;
}
/* 각각 타이틀 */
.progress-area .progressbar-txt{
  font-size: 16px;
  font-weight: 600;
}

/* 옆에 퍼센트 */
.progress-area .progressbar-text{
  position: absolute;
  top:0;
  right: 0;
}
}
/* ===============================
   모바일 반응형 (~ 800px)
=============================== */
@media (max-width: 800px) {
  .browser-frame{
    min-height: 100vh;
  }

  .content{
    overflow: visible;
  }

  .about-section{
    display: flex;
    min-height: auto;
    overflow: visible;
  }
/* -----사이드바 */
.sidebar {
}


.sidebar.active{
  transform: translateX(0);
}
/* ----초록버튼 */


  /* ----사이드바 디자인 아이콘------ */
.about-icon{
  display: block;
  padding-bottom: 24px;
  text-align: center;
}

.sidebar h2{
display: none;
}

.nav-list{
  gap: 8px;
  margin-top: 0;
}

.filter-btn{
  flex: 1 1 calc(25% - 10px);
  max-width: calc(25% - 10px);
  min-width: 70px;
  padding: 10px 10px;
  gap: 4px;
}

.filter-btn img{
  width: 24px;
  height: 24px;
}

.filter-btn span{
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}

.filter-btn{
  padding: 8px 6px;
  gap:4px;
}
.filter-btn img{
  width: 26px;
  height: 26px;
}

.filter-btn span{
  display: block;
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}

  .container .line{
    display: none;
  }

  /* 태블릿에서 숨길 요소들 */
  .sidebar .name:first-of-type,
  .sidebar .profile-image,
  .sidebar .contact-info,
  .nav-list p{
    display: none;
  }

  /* 이름 부분은 보이게 - 2줄로 */
  .sidebar .name{
    display: block;
    font-size: 8px;
    margin-bottom: 16px;
    white-space: pre-line;
    word-break: break-word;
    line-height: 1.3;
    font-weight: 400;
  }


  /* 폴더 아이콘 + 텍스트 세로로 배치 */
  .nav-list{
    margin-top: 20px;
    gap: 15px;
    align-items: center;
  }

  .nav-item{
    padding: 10px 8px;
    flex-direction: column;
    gap: 6px;
    width: 70px;
  }

  .folder-icon{
    width: 32px;
    height: 32px;
    margin: 0;
  }

  .nav-item span{
    display: block;
    font-size: 10px;
    text-align: center;
    white-space: nowrap;
  }

  .nav-item.active{
    background: #eef7f2;
    border-radius: 12px;
  }

  .nav-item:hover{
    background: #f4f4f4;
  }



  .sheet{
    padding: 20px 10px 60px;
    width: 100%;
    overflow: visible;
    height: auto;
  }

  .sec-title{
    padding-left:20px;
  }
  .grid{
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 10px;
  }

  .grid-container{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .grid-item{
    gap: 8px;
  }
.card{
  padding: 12px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(62,175,124,0.18) ;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
  0 12px 30px rgba(62,175,124,0.12); 
}

 .row{
    gap: 8px;
  }

  .desc, .date, .exp-item{
    font-size: 12px;
    margin-bottom: 6px;
  }

  .exp-year{
    padding: 10px 0;
    font-size: 15px;
  }

  .progress-area{
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .progress-area .progress{
    flex-basis: 100%;
    height: 2px !important;
    margin-bottom: 8px;
  }

  .progress-area .progressbar-txt{
    font-size: 12px;
  }

 


}/* ===============================
   모바일: 프로그레스바 작게 조절
=============================== */
@media (max-width: 767px){
  .name{
  text-align:center;
  font-weight:400;
  font-size:8%;
  letter-spacing:.3px;
  margin-bottom:12px;
}

  /* SKILL 전체 영역 여백 줄이기 */
  .skill-wrap,
  .skill-section{
    padding: 10px 0 !important;
  }

  /* 각 스킬 아이템 간격 줄이기 */
  .skill-item{
    margin-bottom: 18px !important;
  }

  /* 스킬 텍스트 크기 줄이기 */
  .skill-item .label,
  .skill-item .name{
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }

  /* 퍼센트 글자 크기 줄이기 */
  .skill-item .percent{
    font-size: 12px !important;
  }

  /* ✅ 프로그레스바 배경(회색 바) */
  .progress{
  
  }

  /* ✅ 채워지는 초록 바 */
  .progress .bar,
  .progress span{
    height: 12px !important;
    border-radius: 999px !important;
  }

  /* 바가 너무 길면 모바일에서 답답해보여서 폭 제한 */
  .progress{
    max-width: 320px;           
}

}
/* ===============================
   600이하 
=============================== */
@media (max-width: 600px){
.row{
  display: flex;
  gap: 8px;
  }
  .date, .desc{
    text-align: left;
  }

/* ----사이드바------ */
.design-section{
}
.sidebar {

}
.sidebar .name{
  display: none;
}

.sidebar.active{
  transform: translateX(0);
}
/*---초록버튼----- */
.sidebar-toggle{

  }

.sidebar h2{
  font-size:8px;
  margin-bottom: 20px;
  text-align: left;
}
.nav-list{
  gap: 8px;
  margin-top: 0;
}

.filter-btn{
  flex: 1 1 calc(25% - 10px);
  max-width: calc(25% - 10px);
  min-width: 70px;
  padding: 10px 10px;
  gap: 4px;
}

.filter-btn img{
  width: 24px;
  height: 24px;
}

.filter-btn span{
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}

.filter-btn{
  padding: 8px 6px;
  gap:4px;
}
.filter-btn img{
  width: 26px;
  height: 26px;
}

.filter-btn span{
  display: block;
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}

}
 
/* ============= 500이하============ */
@media (max-width:500px){
  .row{
    display: block;
  }
  .row .date{
    font-weight: 600;
  }
  .desc{
    padding-bottom:10px;
  }
}

/* ===============================
  모바일 400px 이하
=============================== */
@media (max-width: 480px) {
  /* ----사이드바------ */
.about-section{
}
.sidebar {
  position: fixed;
  left:0px;
  top:0px;
  width: 60px;
  height: 100vh;
  z-index: 90;
  transform: translateX(-100%);
  flex: none;
  padding: 80px 16px 20px;
  box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  background: rgba(255, 255, 255, 0.903);
  overflow-x: hidden;
  transition: transform 0.3s ease;
}

.sidebar.active{
  transform: translateX(0);
}
.sidebar .name{
  display: none;
  }
/*---초록버튼----- */
.sidebar-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 95;
    width: 44px;
    height: 44px;
    background: #3eaf7c;
    border-radius: 50%;
    border: none;
    color: #fff;
  }

.sidebar h2{
  font-size:8px;
  margin-bottom: 20px;
  text-align: left;
}
.nav-list{
  gap: 8px;
  margin-top: 0;
}

.filter-btn{
  flex: 1 1 calc(25% - 10px);
  max-width: calc(25% - 10px);
  min-width: 70px;
  padding: 10px 10px;
  gap: 4px;
}

.filter-btn img{
  width: 40px;
  height: 40px;
}

.filter-btn span{
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}

.filter-btn{
  padding: 8px 6px;
  gap:4px;
}
.filter-btn img{
  width: 26px;
  height: 26px;
}

.filter-btn span{
  display: block;
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}
.row{
  display: block;
}
}

/* ===============================
   반응형: 초소형 (360px 이하)
=============================== */
@media (max-width: 360px){
/* ----사이드바------ */
.design-section{
}
.sidebar {
  position: fixed;
  left:0px;
  top:0px;
  width: 60px;
  height: 100vh;
  z-index: 90;
  padding: 80px 16px 20px;
  box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  background: rgba(255, 255, 255, 0.903);
}

.sidebar.active{
  transform: translateX(0);
}
/*---초록버튼----- */
.sidebar-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 95;
    width: 44px;
    height: 44px;
    background: #3eaf7c;
    border-radius: 50%;
    border: none;
    color: #fff;
  }
.sidebar h2{
  font-size:8px;
  margin-bottom: 20px;
  text-align: left;
}
.nav-list{
  gap: 8px;
  margin-top: 0;
}
.filter-btn{
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  min-width: 60px;
  padding: 20px 20px;
  gap: 6px;
}
.filter-btn img{
  width: 30px;
  height: 30px;
}
.filter-btn span{
  font-size: 8px;
  text-align: center;
  white-space: wrap;
  font-weight: 500;
}
.filter-btn{
  padding: 8px 6px;
  gap:4px;
}
.filter-btn img{
  width: 26px;
  height: 26px;
}

}