/* Reset & 기본 스타일 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #222;
  padding: 20px;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 컨테이너 */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
}

/* 헤더 */
header {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

/* 언어 선택박스 */
#languageSelector {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 6px 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
  transition: all 0.3s ease;
  z-index: 999;
}

#languageSelector:hover {
  border-color: #0066cc;
  box-shadow: 0 2px 8px rgb(0 102 204 / 0.3);
}

/* 프로필 박스 */
.infobox {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.infobox img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 100%;
  border: 4px solid #0066cc;
  box-shadow: 0 4px 8px rgb(0 102 204 / 0.3);
  flex-shrink: 0;
}

.infobox table {
  border-collapse: collapse;
  width: 100%;
  max-width: 500px;
}

.infobox th,
.infobox td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  font-size: 1.1rem;
}

.infobox th {
  color: #0066cc;
  width: 140px;
}

/* 제목 스타일 */
h1, h2, h3 {
  color: #0066cc;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  margin-top: 40px;
}

h3 {
  font-size: 1.3rem;
  margin-top: 20px;
}

/* 리스트 스타일 */
ul.indent {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

ul.indent > li {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

/* 리스트 안에 p 태그 스타일 */
ul.indent p {
  margin-left: 25px;
  font-weight: 400;
  font-size: 1rem;
  color: #444;
}

/* 체크박스 버킷리스트 */
ul.indent input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.3);
  cursor: default;
}

/* 차량 섹션 이미지 */
img[alt="HondaCivic"],
img[alt="Home"] {
  border-radius: 12px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.15);
  margin-bottom: 15px;
}

/* 본문 문단 */
p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333;
}

/* 관련사이트 링크 */
ul.indent li a {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0066cc;
}

/* Clear fix */
.clear {
  clear: both;
}

/* 반응형 모바일 대응 */
@media (max-width: 700px) {
  .container {
    padding: 20px;
    margin: 20px 10px;
  }

  .infobox {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .infobox table {
    max-width: 100%;
  }

  .infobox th,
  .infobox td {
    font-size: 1rem;
    padding: 10px 8px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
    margin-top: 30px;
  }

  h3 {
    font-size: 1.1rem;
  }

  ul.indent > li {
    font-size: 1.1rem;
  }

  ul.indent p {
    font-size: 0.95rem;
    margin-left: 20px;
  }

  #languageSelector {
    bottom: 15px;
    right: 15px;
    font-size: 0.9rem;
    padding: 5px 8px;
  }

  img[alt="HondaCivic"],
  img[alt="Home"] {
    width: 80%;
    height: auto;
  }
}

