/* index.html */
:root {
  --circle_effect_opacity_before: 0.7;
  --circle_effect_opacity_after: 0.88;
  --circle_effect_opacity_full: 1;
}

html{
  font-size: 16px;
  height: 100%;
}

span {
  font-size: 3rem;  /* or 14px, 0.875rem 등 원하는 값 */
}

a {
  margin-left: 5px;
  margin-right: 5px; /* 원하는 간격으로 조절 */
}


* {
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
}

body {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #000000;
  overflow-x: hidden;
  position: relative;
  cursor: none; /* 기본 마우스 커서 숨기기 */
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* 커비 마우스 커서 */
.custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 10000 !important;
  transform: translate(-50%, -50%);
}

a, div{
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  position: absolute;
  top: 50%;
  left: 50%;
}

/* 기본 헤더 스타일 */
header {
  width: 100%;
  height: 140px !important; /* 기본 높이 설정 및 important 추가 */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-btn {
  position: fixed;
  top: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #3498db;
  border: none;
  color: white;
  font-size: 4rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1001;
}

.info-btn:hover {
  position: fixed;
  top: 50px;
  left: 50px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: rgba(142, 255, 178, 0.6);
  transition: background-color 0.3s ease;
  border: none;
  color: white;
  font-size: 4rem;
  rotate: 15deg;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1001;
}

.contact_circle {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center; 
  position: absolute;  /* 부모 원을 기준으로 위치 설정 */
  color: #8284ff;

  /* 글로우 효과 */
  -webkit-animation: contact_glowing 1s ease-in-out infinite alternate;
  -moz-animation: contact_glowing 1s ease-in-out infinite alternate;
  animation: contact_glowing 1s ease-in-out infinite alternate;  
}

@-webkit-keyframes contact_glowing {
  from {
    -webkit-box-shadow:0px 0px 30px 5px rgba(189,190,255,var(--circle_effect_opacity_after));
    -moz-box-shadow: 0px 0px 30px 5px rgba(189,190,255,var(--circle_effect_opacity_after));
    box-shadow: 0px 0px 30px 5px rgba(189,190,255,var(--circle_effect_opacity_after));
  }
  to {
    -webkit-box-shadow:0px 0px 30px 5px rgba(189,190,255,var(--circle_effect_opacity_full));
    -moz-box-shadow: 0px 0px 30px 5px rgba(189,190,255,var(--circle_effect_opacity_full));
    box-shadow: 0px 0px 30px 5px rgba(189,190,255,var(--circle_effect_opacity_full));
  }
}

.contact_circle:hover {
  background-color: rgba(189,190,255,0.6);
  transition: background-color 0.3s ease;
  z-index: 8;
  color: white;
}

.circle_0 {
  position: absolute;
  width: 600px;
  height: 600px;
  padding-top: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}

.circle_1 {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center; 
  position: absolute;  /* 부모 원을 기준으로 위치 설정 */

  /* 글로우 효과 */
  -webkit-animation: circle_1_glowing 1s ease-in-out infinite alternate;
  -moz-animation: circle_1_glowing 1s ease-in-out infinite alternate;
  animation: circle_1_glowing 1s ease-in-out infinite alternate;    
}

@-webkit-keyframes circle_1_glowing {
  from {
    -webkit-box-shadow:0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_before));
    -moz-box-shadow: 0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_before));
    box-shadow: 0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_before));
  }
  to {
    -webkit-box-shadow:0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_after));
    -moz-box-shadow: 0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_after));
     box-shadow: 0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_after));
  }
}

.circle_2 {
  border-radius: 50%;
  position: absolute;  /* 부모 기준으로 배치 */
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center; 

  /* 글로우 효과 */
  -webkit-animation: circle_2_glowing 1s ease-in-out infinite alternate;
  -moz-animation: circle_2_glowing 1s ease-in-out infinite alternate;
  animation: circle_2_glowing 1s ease-in-out infinite alternate;   
}

@-webkit-keyframes circle_2_glowing {
  from {
    -webkit-box-shadow:0px 0px 57px 3px rgba(255,215,165,var(--circle_effect_opacity_before));
    -moz-box-shadow: 0px 0px 57px 3px rgba(255,215,165,var(--circle_effect_opacity_before));
    box-shadow: 0px 0px 57px 3px rgba(255,215,165,var(--circle_effect_opacity_before));
  }
  to {
    -webkit-box-shadow:0px 0px 57px 3px rgba(255,215,165,var(--circle_effect_opacity_after));
    -moz-box-shadow: 0px 0px 57px 3px rgba(255,215,165,var(--circle_effect_opacity_after));
    box-shadow: 0px 0px 57px 3px rgba(255,215,165,var(--circle_effect_opacity_after));
  }
}

.circle_3 {
  border-radius: 50%;
  position: absolute;  /* 부모 기준으로 위치 설정 */
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center; 

  /* 글로우 효과 */
  -webkit-animation: circle_3_glowing 1s ease-in-out infinite alternate;
  -moz-animation: circle_3_glowing 1s ease-in-out infinite alternate;
  animation: circle_3_glowing 1s ease-in-out infinite alternate;    
}

@-webkit-keyframes circle_3_glowing {
  from {
    -webkit-box-shadow:0px 0px 57px 3px rgba(253,255,182,var(--circle_effect_opacity_before));
    -moz-box-shadow: 0px 0px 57px 3px rgba(253,255,182,var(--circle_effect_opacity_before));
    box-shadow: 0px 0px 57px 3px rgba(253,255,182,var(--circle_effect_opacity_before));  
  }
  to {
    -webkit-box-shadow:0px 0px 57px 3px rgba(253,255,182,var(--circle_effect_opacity_after));
    -moz-box-shadow: 0px 0px 57px 3px rgba(253,255,182,var(--circle_effect_opacity_after));
    box-shadow: 0px 0px 57px 3px rgba(253,255,182,var(--circle_effect_opacity_after));
  
  }
}

.circle_4 {
  border-radius: 50%;
  position: absolute;  /* 부모 기준으로 위치 설정 */
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center; 

  /* 글로우 효과 */
  -webkit-animation: circle_4_glowing 1s ease-in-out infinite alternate;
  -moz-animation: circle_4_glowing 1s ease-in-out infinite alternate;
  animation: circle_4_glowing 1s ease-in-out infinite alternate;    
}

@-webkit-keyframes circle_4_glowing {
  from {
    -webkit-box-shadow:0px 0px 57px 3px rgba(202,255,191,var(--circle_effect_opacity_before));
    -moz-box-shadow: 0px 0px 57px 3px rgba(202,255,191,var(--circle_effect_opacity_before));
    box-shadow: 0px 0px 57px 3px rgba(202,255,191,var(--circle_effect_opacity_before));
  }
  to {
    -webkit-box-shadow:0px 0px 57px 3px rgba(202,255,191,var(--circle_effect_opacity_after));
    -moz-box-shadow: 0px 0px 57px 3px rgba(202,255,191,var(--circle_effect_opacity_after));
    box-shadow: 0px 0px 57px 3px rgba(202,255,191,var(--circle_effect_opacity_after));
  
  }
}

.circle_5 {
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center; 
  background-color: black;

  -webkit-box-shadow:0px 0px 57px 3px rgba(155,247,255,0.88);
  -moz-box-shadow: 0px 0px 57px 3px rgba(155,247,255,0.88);
  box-shadow: 0px 0px 57px 3px rgba(155,247,255,0.88);

  /* 글로우 효과 */
  -webkit-animation: circle_5_glowing 1s ease-in-out infinite alternate;
  -moz-animation: circle_5_glowing 1s ease-in-out infinite alternate;
  animation: circle_5_glowing 1s ease-in-out infinite alternate;    
}

@-webkit-keyframes circle_5_glowing {
  from {
    -webkit-box-shadow:0px 0px 57px 3px rgba(155,247,255,var(--circle_effect_opacity_after));
    -moz-box-shadow: 0px 0px 57px 3px rgba(155,247,255,var(--circle_effect_opacity_after));
    box-shadow: 0px 0px 57px 3px rgba(155,247,255,var(--circle_effect_opacity_after));
  }
  to {
  -webkit-box-shadow:0px 0px 57px 3px rgba(155,247,255,var(--circle_effect_opacity_full));
  -moz-box-shadow: 0px 0px 57px 3px rgba(155,247,255,var(--circle_effect_opacity_full));
  box-shadow: 0px 0px 57px 3px rgba(155,247,255,var(--circle_effect_opacity_full));
  }
}

.circle_1.hovered {
  background-color: rgba(255,173,173,0.3);
  transition: background-color 0.3s ease;
  z-index: 5;
}

.circle_1_text.color_change {
  color: white;
}

.circle_2.hovered {
  background-color: rgba(255,214,165,0.3);
  transition: background-color 0.3s ease;
  z-index: 6;
}

.circle_2.hovered span {
  color: white;
}

.circle_3.hovered {
  background-color: rgba(253,255,182,0.3);
  transition: background-color 0.3s ease;
  z-index: 7;
}

.circle_3.hovered span {
  color: white;
}

.circle_4.hovered {
  background-color: rgba(202,255,191,0.3);
  transition: background-color 0.3s ease;
  z-index: 8;
}

.circle_4.hovered span {
  color: white;
}

.circle_5.hovered {
  background-color: rgba(155,246,255,0.3);
  transition: background-color 0.3s ease;
  color: white;
}

.circle_5.hovered span {
  color: white;
}

.circle_1 span,
.circle_2 span,
.circle_3 span,
.circle_4 span,
.circle_5 span {
  position: absolute;
  color: rgb(255, 255, 255);
  white-space: nowrap;
}

.circle_1 span {
  color: #ffadad;
}

.circle_2 span {
  color: #ffd6A5;
}

.circle_3 span {
  color: #fDffb6;
}

.circle_4 span {
  color: #caffbf;
}

.circle_5 span {
  color: #9bf6ff;
}


/* footer는 높이 고정 */
footer {
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
  
.footer-text {
  height: auto;
  font-size: 2rem;
  margin: 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center; 
}

/* 모바일 */
@media (min-width: 0px) and (max-width: 767px) {
  .contact_circle,
  .index_circle {
    height: 100px;
    width: 100px;
    margin-top: 30px;
  }

  .craft-page header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px !important;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
  }

  .craft-page .main-content {
    padding-top: 170px !important;
  }

  .craft-page .craft-image-section {
    padding-top: 20px;
  }

  .circle_1 span,
  .circle_2 span,
  .circle_3 span,
  .circle_4 span {
    font-size: 2rem;
    top: -20px;
  }

  .circle_5 span {
    font-size: 2rem;
    top: -15px;
  }
  
  .circle_0,
  .circle_1 {
    height: 300px;
    width: 300px;
  }
  
  .circle_2 {
    height: 250px;
    width: 250px;
  }
  
  .circle_3 {
    height: 200px;
    width: 200px;
  }
  
  .circle_4 {
    height: 150px;
    width: 150px;
  }
  
  .circle_5 {
    height: 40px;
    width: 40px;
  }

  header {
    height: 250px !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
  }

  .page-container {
    padding-top: 270px;
  }
  
  .footer-text {
    font-size: 2rem !important;
  }
}

/* 태블릿 세로 */
@media (min-width: 768px) and (max-width: 991px) {
  .contact_circle,
  .index_circle {
    height: 150px;
    width: 150px;
  }

  .circle_1 span,
  .circle_2 span,
  .circle_3 span,
  .circle_4 span {
    font-size: 3rem;
    top: -30px;
  }

  .circle_5 span {
    font-size: 3rem;
    top: -20px;
  }
  
  .circle_0,
  .circle_1 {
    height: 600px;
    width: 600px;
  }
  
  .circle_2 {
    height: 500px;
    width: 500px;
  }
  
  .circle_3 {
    height: 400px;
    width: 400px;
  }
  
  .circle_4 {
    height: 300px;
    width: 300px;
  }
  
  .circle_5 {
    height: 60px;
    width: 60px;
  }

  header {
    height: 250px !important;
  }

  .page-container {
    padding-top: 270px;
  }

  .footer-text {
    margin-bottom: 50px;
    font-size: 1rem;
  }
}

/* 태블릿 가로 */
@media (min-width: 992px) and (max-width: 1199px) {
  .contact_circle,
  .index_circle {
    font-size: 3rem;
    height: 70px;
    width: 70px;
  }

  span {
    font-size: 1.5rem;
  }

  .circle_1 span,
  .circle_2 span,
  .circle_3 span,
  .circle_4 span,
  .circle_5 span {
    font-size: 3rem;
    top: -15px;
  }
  
  .circle_0,
  .circle_1 {
    height: 400px;
    width: 400px;
  }
  
  .circle_2 {
    height: 300px;
    width: 300px;
  }
  
  .circle_3 {
    height: 200px;
    width: 200px;
  }
  
  .circle_4 {
    height: 100px;
    width: 100px;
  }
  
  .circle_5 {
    height: 30px;
    width: 30px;
  }

  header {
    height: 250px !important;
  }

  .page-container {
    padding-top: 270px;
  }

  .footer-text {
    font-size: 2rem;
  }
}

/* 데스크탑 일반 */
@media (min-width: 1200px) {
  .contact_circle {
    font-size: 1rem;
    height: 80px;
    width: 80px;
  }

  span {
    font-size: 1.5rem;
  }

  .circle_1 span,
  .circle_2 span,
  .circle_3 span,
  .circle_4 span {
    font-size: 1.5rem;
    top: -15px;
  }

  .circle_5 span {
    font-size: 1.5rem;
    top: -10px;
  }

  .contact_circle {
    height: 80px;
    width: 80px;
  }

  .circle_0,
  .circle_1 {
    margin-top: 10px;
    height: 500px;
    width: 500px;
  }
  
  .circle_2 {
    height: 400px;
    width: 400px;
  }
  
  .circle_3 {
    height: 300px;
    width: 300px;
  }
  
  .circle_4 {
    height: 200px;
    width: 200px;
  }
  
  .circle_5 {
    height: 40px;
    width: 40px;
  }

  header {
    height: 140px !important;
  }

  .page-container {
    padding-top: 160px;
  }

  html body.craft-page header .index_circle {
    height: 80px !important;
    width: 80px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  html body.craft-page header .index_circle span {
    font-size: 1.5rem !important;
  }

  .footer-text {
    font-size: 1rem;
  }
}

/* background starry */
@keyframes move-twink-back {
  from {background-position:0 0;}
  to {background-position:-10000px 5000px;}
}

.stars, .twinkling {
  position: fixed; /* absolute에서 fixed로 변경 */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.stars {
  background:#000 url(images/stars.png) repeat top center;
  z-index:-1;
}

.twinkling{
  background:transparent url(images/twinkling.png) repeat top center;
  z-index:0;
  animation:move-twink-back 200s linear infinite;
}


/* jeemin.html */
.index_circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffadad;
  border-radius: 50%;
  
  /* 글로우 효과 */
  -webkit-animation: index_glowing 1s ease-in-out infinite alternate;
  -moz-animation: index_glowing 1s ease-in-out infinite alternate;
  animation: index_glowing 1s ease-in-out infinite alternate;
}

.index_circle span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}

@-webkit-keyframes index_glowing {
  from {
    -webkit-box-shadow:0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_after));
    -moz-box-shadow: 0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_after));
    box-shadow: 0px 0px 57px 3px rgba(255,173,173, var(--circle_effect_opacity_after));
  }
  to {
    -webkit-box-shadow:0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_full));
    -moz-box-shadow: 0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_full));
    box-shadow: 0px 0px 57px 3px rgba(255,173,173,var(--circle_effect_opacity_full));
  }
}

.index_circle:hover {
  background-color: rgba(255,173,173,0.6);
  transition: background-color 0.3s ease;
  z-index: 8;
  color: white;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  background-color: rgba(0, 0, 0, 1);
  z-index: 1000;
  text-align: center;
}

/* Main Content Style */
.main-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.photography-section {
  text-align: left !important;
  align-items: flex-start !important;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.jeemin-image-section {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.text-content {
  width: 100%;
}

.text-content h1 {
  font-size: 1.5rem !important;
  color: white;
  text-decoration: underline;
}

.bullet-points {
  padding-left: 13px;
}

/* 모바일 */
@media (min-width: 0px) and (max-width: 767px) {
  .index_circle {
    height: 70px;
    width: 70px;
  }

  header {
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .page-container {
    padding-top: 90px;
  }
  
  .footer-text {
    font-size: 2rem !important;
  }
}

/* 태블릿 세로 */
@media (min-width: 768px) and (max-width: 991px) {
  .index_circle {
    height: 60px;
    width: 60px;
  }

  .page-container {
    padding-top: 100px;
  }

  .footer-text {
    margin-bottom: 50px;
    font-size: 2.2rem;
  }
}

/* 태블릿 가로 */
@media (min-width: 992px) and (max-width: 1199px) {
  .index_circle {
    font-size: 1rem;
    height: 60px;
    width: 60px;
  }

  header {
    height: 100px;
  }

  .page-container {
    padding-top: 100px;
  }
  
  .footer-text {
    font-size: 2rem;
  }
}

/* 데스크탑 일반 */
@media (min-width: 1200px) {
  header {
    height: 140px !important;
  }

  .page-container {
    padding-top: 160px;
  }

  .index_circle {
    font-size: 1rem;
    height: 80px !important;
    width: 80px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .index_circle span {
    font-size: 1.5rem !important;
  }

  .footer-text {
    font-size: 1rem;
  }
}

/* peanut.html */

/* craft.html */
.craft-image-section{
  max-width: 800px;
}

.catcafe-image{
  border-radius: 40px;
  height: 10rem;
}

.catcafe-image:hover {
  border-radius: 40px;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* craft.html 전용 반응형 스타일 */
/* 모바일 */
@media (min-width: 0px) and (max-width: 767px) {
  .craft-page .index_circle {
    font-size: 3rem;
    height: 150px !important;
    width: 150px !important;
    margin-top: 30px;
  }

  .craft-page header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px !important;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
  }

  .craft-page .main-content {
    padding-top: 170px !important;
  }

  .craft-page .craft-image-section {
    padding-top: 20px;
  }
}

/* 태블릿 세로 */
@media (min-width: 768px) and (max-width: 991px) {
  .craft-page .index_circle {
    height: 80px;
    width: 80px;
  }

  .craft-page .main-content {
    padding-top: 120px;
  }
}

/* 태블릿 가로 */
@media (min-width: 992px) and (max-width: 1199px) {
  .craft-page .index_circle {
    font-size: 1.8rem;
    height: 80px;
    width: 80px;
  }

  .craft-page .main-content {
    padding-top: 120px;
  }
}

/* 데스크탑 일반 */
@media (min-width: 1200px) {
  .craft-page .index_circle {
    font-size: 1.8rem;
    height: 80px;
    width: 80px;
  }

  .craft-page .main-content {
    padding-top: 50px;
  }
}

.page-container {
  width: 100%;
  min-height: calc(100vh - 50px); /* 헤더 높이를 제외한 높이 */
  padding-top: 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.craft-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000000;
}

.craft-page .main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 0px; /* footer 높이만큼 패딩 추가 */
}

/* Background Effects */
.stars, .twinkling {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.stars {
  background: #000 url(images/stars.png) repeat top center;
  z-index: -1;
}

.twinkling {
  background: transparent url(images/twinkling.png) repeat top center;
  z-index: 0;
  animation: move-twink-back 200s linear infinite;
}

/* 기본 텍스트 스타일 */

/* 모바일 */
@media (min-width: 0px) and (max-width: 767px) {
  .craft-page h1 {
    font-size: 2.2rem;
  }

  .craft-page p, 
  .craft-page .bullet-points,
  .craft-page i {
    font-size: 1.2rem;
  }

  .craft-page strong {
    font-size: 1.3rem;
  }

  header {
    height: 90px;
  }

  .page-container {
    padding-top: 100px;
  }

  .index_circle {
    height: 50px;
    width: 50px;
  }
}

/* 태블릿 세로 */
@media (min-width: 768px) and (max-width: 991px) {
  .craft-page h1 {
    font-size: 2.1rem;
  }

 

  .craft-page strong {
    font-size: 1.25rem;
  }

  .page-container {
    padding-top: 100px;
  }

  .index_circle {
    height: 150px;
    width: 150px;
  }
}

/* 태블릿 가로 */
@media (min-width: 992px) and (max-width: 1199px) {
  .craft-page h1 {
    font-size: 2rem;
  }

  .craft-page p, 
  .craft-page .bullet-points,
  .craft-page i {
    font-size: 1.1rem;
  }

  .craft-page strong {
    font-size: 1.2rem;
  }

  header {
    height: 100px;
  }

  .page-container {
    padding-top: 100px;
  }

  .index_circle {
    height: 60px;
    width: 60px;
  }
}

/* Override all other h1 styles */
body .main-content section h1,
body .main-content section h1 strong {
  font-weight: bold;
}

@media (max-width: 767px) {
  body.craft-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  body.craft-page header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 250px !important;
    z-index: 9999 !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
  }
  
  body.craft-page header .index_circle {
    height: 100px !important;
    width: 100px !important;
    font-size: 2rem !important;
    margin-top: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 50% !important;
  }


  /* 강력한 본문 스타일링 */
  body.craft-page main.main-content,
  body.craft-page .main-content {
    padding-top: 350px !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  body.craft-page .craft-image-section {
    margin-top: 50px !important;
    padding-top: 50px !important;
  }
  
  body.craft-page .page-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* 모든 헤더와 콘텐츠 사이 간격 확보 */
  body.craft-page main.main-content > section:first-child,
  body.craft-page .main-content > section:first-child {
    margin-top: 100px !important;
    padding-top: 50px !important;
  }
}

/* craft.html 전용 강력한 스타일 - 최상위에 배치 */
html body.craft-page .page-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 모바일에서 위쪽 여백 */
html body.craft-page .main-content {
  padding-top: 170px !important;
  margin-top: 0 !important;
}

html body.craft-page header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background-color: rgba(0, 0, 0, 0.95) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding-top: 0 !important;
}

/* 완벽한 중앙 정렬을 위한 추가 스타일 */
html body.craft-page header .index_circle {
  height: 150px !important;
  width: 150px !important;
  margin: 0 auto !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* 모바일에서만 250px 높이와 100px index_circle */
@media (max-width: 767px) {
  html body.craft-page header {
    height: 250px !important;
    align-items: flex-start !important;
  }
  
  html body.craft-page header .index_circle {
    height: 100px !important;
    width: 100px !important;
    margin-top: 30px !important;
  }
}

/* Base styles for craft page header */
html body.craft-page header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background-color: rgba(0, 0, 0, 0.95) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Base styles for index circle */
html body.craft-page header .index_circle {
  position: relative !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto !important;
  color: #ffadad;
}

html body.craft-page .index_circle span {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  height: 100% !important;
}

/* Mobile Devices (0px - 767px)
   ========================================================================== */
@media (max-width: 767px) {
  html body.craft-page header {
    height: 250px !important;
    align-items: flex-start !important;
    padding-top: 20px !important;
  }

  html body.craft-page header .index_circle {
    height: 150px !important;
    width: 150px !important;
    margin-top: 30px !important;
  }

  /* Content adjustment for header height */
  html body.craft-page .main-content {
    padding-top: 270px !important;
  }
}

/* Tablet Portrait (768px - 991px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 991px) {
  html body.craft-page header {
    height: 250px !important;
  }

  html body.craft-page header .index_circle {
    height: 150px !important;
    width: 150px !important;
  }

  /* Content adjustment for header height */
  html body.craft-page .main-content {
    padding-top: 250px !important;
  }
}

/* Tablet Landscape (992px - 1199px)
   ========================================================================== */
@media (min-width: 992px) and (max-width: 1199px) {
  html body.craft-page header {
    height: 160px !important;
  }

  html body.craft-page header .index_circle {
    height: 100px !important;
    width: 100px !important;
  }

  html body.craft-page .index_circle span {
    font-size: 1.6rem !important;
  }

  /* Content adjustment for header height */
  html body.craft-page .main-content {
    padding-top: 180px !important;
  }
}

/* Desktop (1200px and above)
   ========================================================================== */
@media (min-width: 1200px) {
  html body.craft-page header {
    height: 140px !important;
  }

  html body.craft-page header .index_circle {
    height: 80px !important;
    width: 80px !important;
  }

  html body.craft-page .index_circle span {
    font-size: 1.5rem !important;
  }

  /* Content adjustment for header height */
  html body.craft-page .main-content {
    padding-top: 160px !important;
  }
}

/* Skills page mobile font sizes - High specificity */
@media only screen and (max-width: 767px) {
  html body .main-content section h1,
  html body .main-content section h1 strong,
  html body .main-content section h1 u {
    font-size: 2.5rem !important;
  }

  html body .main-content section p strong {
    font-size: 2rem !important;
    display: block;
    margin-bottom: 0.5rem;
  }

  html body .main-content .bullet-points li,
  html body .main-content .bullet-points li * {
    font-size: 1.8rem !important;
    line-height: 1.4;
  }
}