@font-face {
  font-family: 'Firestor';
  src: url('../fonts/Firestor.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* css/style.css */
:root {
  --anger-red:   #E43200;    /* Modified: defined Anger theme colors */
  --anger-orange:#FF6E40;
  --anger-bg:    #FFF3E0;
  --anger-dark:  #5A2A00;
}
html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--anger-bg);
  color: var(--anger-dark);
  font-family: 'Pretendard', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;  /* 화면이 클 때 빈 곳을 채워 푸터를 끌어내립니다 */
}
h1, h2, h3 {
  font-family: 'Anton', sans-serif;      /* Modified: applied bold Anger font */
  text-transform: uppercase;
}
.fire-font{
  font-family: 'Firestor', sans-serif;
  font-size: 2.5rem;
}
/* Modified: custom toggler icon for better visibility */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,<svg fill='white' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

/* Modified: hover effect with shake animation */
.nav-link:hover {
  text-shadow: 0 0 8px rgba(228,50,0,0.7);
  animation: shake .3s ease-in-out;
}

#angerImg {
  /* 원하는 고정 크기 (px, rem, % 등 자유롭게 조정) */
  width: 600px;
  height: 600px;

  /* 비율을 유지하면서 빈 공간은 letterbox, 이미지 잘림 없이 채우려면 contain */
  object-fit: contain;

  /* 이미지 빈 공간 배경색 지정(선택사항) */
  background-color: #fff;
}
/* style.css에 추가 */
.explosion {
  position: fixed;
  top: 50%; left: 50%;
  width: 200px; 
  height: 200px;
  transform: translate(-50%, -50%);
  pointer-events: none;  /* 클릭 막기 */
  display: none;
  z-index: 1050;         /* Bootstrap 모달 위에도 보이도록 */
  animation: explodeAnim 1s ease-out forwards;
}

.programers-img {
  width: 1000px;
  height: auto;
  margin-bottom: 40px;
}

@keyframes explodeAnim {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  30%  { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%,75% { transform: translateX(5px); }
  50% { transform: translateX(-5px); }
}

/* portfolio */
.sidebar-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  font-family: 'Shilla_CultureB-Bold', sans-serif;
  padding: 20px;
  border-right: 2px solid #eee;
}

.sidebar-left {
  padding: 20px;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-title {
  font-size: 30px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: black;
  border-left: 4px solid #ffb347;
  padding-left: 10px;
}
.portfolio-title {
  font-size: larger;
  font-weight: bold;
}

.sidebar-nav li {
  margin: 10px 0;
}

.sidebar-nav a {
  text-decoration: none;
  color: #333;
  background-color: #f8f8f8;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 20px;
}

.sidebar-nav a:hover {
  background-color: #ffe4b3;
  color: #000;
  transform: translateX(5px);
}

details summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
  color: #444;
}

details[open] summary {
  color: #ff8800;
}

summary {
  list-style: none; /* 기본 삼각형 제거 */
  cursor: pointer;
}

object {
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* 카드 호버 시 불꽃 애니메이션 */
.member-card:hover {
  box-shadow: 0 0 15px rgba(228,50,0,0.7);
  transform: translateY(-5px);
  transition: all 0.2s;
}

/* 모달 헤더 배경 */
.modal-header {
  background-color: var(--anger-red);
}
.member-card .color-bar {
  height: 6px;
  width: 100%;
  border-radius: 0 0 4px 4px;  /* 아래 모서리만 둥글게 */
  margin-top: .5rem;
}


footer img {
  width: 40px;
  height: 40px;
  
}
footer { 
  background-color: var(--anger-red);
  /* style.css 에 추가 */

  position: relative;
  text-align: center;
}

/* 컨테이너 자체를 우측 중앙에 고정 */
.footer-icons {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
/* 각 링크 간 여유를 주고, 이미지가 인라인으로 흘러가도록 */
.footer-icons a {
  display: inline-block;
  margin-left: 0.5rem;
}

           /* 좌우 여유 공간 */

/* Modified: footer theme color */
