@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Noto Sans KR", sans-serif;
  display: flex;
  justify-content: center;
  margin: 0;
  background-color: #f9f9f9;
}

.content {
  padding: 20px;
  width: 100%;
}

.profile-all {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 80px;
  margin: 0 auto;
}

/* 프로필 섹션 */
.profile p {
  line-height: 1.6;
  white-space: pre-line;
}

.profile span {
  font-size: 20px;
  font-weight: 600;
}

.section {
  width: 37%;
  margin: 20px 0;
  padding: 35px 50px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
}

.section .profile-all,
.section-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.section-content p {
  margin: 0;
  text-align: left;
}

.section .poto {
  flex-basis: 20%;
  width: 100%;
  height: auto;
}

.section .poto img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

h1,
h2 {
  font-size: 30px;
  color: #ff66b2;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

/* 경력 */
#experience .After-school-teacher,
#experience .wedding,
#experience .childcare-teacher,
#experience .engineer {
  margin-bottom: 50px;
}

#experience span {
  font-size: 17px;
  font-weight: bold;
}

.After-school-teacher p,
.wedding p,
.childcare-teacher p,
.engineer p {
  margin: 0;
  margin-top: 10px;
}

#experience .job {
  margin-top: 15px;
}

#experience .job p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.engineer .Responsibilities-all {
  margin-top: 10px;
}

.engineer .Responsibilities-all .Responsibilities p {
  margin-top: 40px;
}

/* 교육 */
#education span {
  font-size: 17px;
  font-weight: bold;
}

#education .specialty {
  margin-top: 15px;
}

#education .specialty p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* 자격증 */
#certifications span {
  font-size: 17px;
  font-weight: bold;
}

#certifications .qualifications1 {
  margin-bottom: 30px;
}

#certifications .organ {
  margin-top: 15px;
}

#certifications .organ p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* 자기 소개서 */
#self-introduction .Self-introduction-text p {
  margin: 0;
}

.my-capabilities-all .my-capabilities p {
  margin: 0;
  margin-top: 40px;
}

/* 포트폴리오 */
.portfolio-url span {
  font-size: 17px;
  font-weight: bold;
}

.url-item {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding: 10px 15px;
  background-color: #f8f9fa;
  border-radius: 5px;
  border: 1px solid #eaecee;
  transition: background-color 0.3s;
}

.url-item a {
  color: #333;
  font-size: 14px;
}

.url-item a:hover {
  color: #000;
  font-weight: bold;
}

/* 오른쪽 메뉴 */
.sidebar {
  width: 200px;
  background-color: #fff;
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  overflow-y: auto;
  border-left: 2px solid #f1f1f1;
  transition: all 0.3s ease-in-out;
}

.sidebar h2 {
  font-size: 24px;
  text-align: center;
  color: #ff66b2;
  margin-bottom: 20px;
  font-weight: bold;
}

.menu-item {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.menu-item.active {
  background-color: #ff66b2;
  color: white;
  border-radius: 20px;
}

.menu-item:hover {
  background-color: #ff66b2;
  color: white;
  cursor: pointer;
}

.menu-item:focus {
  outline: none;
  background-color: #ff66b2;
  color: white;
}

.menu-item:active {
  transform: scale(0.98);
}
