/* ###################### 로고 및 메뉴 ###################### */

body{
    background-color: aliceblue;
}

.all{
    background-color: rgb(3, 21, 65);
}

.mouse-memoirs-regular {
    font-family: "Mouse Memoirs", sans-serif;
    font-weight: 400;
    font-style: normal;
}  

#logo {
    display: flex;
    margin-left: 50px;
}

.special-gothic-condensed-one-regular {
    font-family: 'Freesentation-9Black';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2404@1.0/Freesentation-9Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    color: rgb(244, 254, 255);
    text-decoration: none;
    font-size: 25px; 
}

.special-gothic-condensed-one-regular-2 {
    font-family: 'Freesentation-9Black';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2404@1.0/Freesentation-9Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    color: rgb(244, 254, 255);
    text-decoration: none;
    font-size: 20px; 
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.menu .text {
    list-style: none;
    display: flex;
    margin-right: 50px;
    padding: 0;
}

.menu .text li {
    list-style:none;
    position: relative;
}

.menu .text li a {
    display: block;
    padding: 0 30px;
    background: rgb(3, 21, 65);
    height: 40px;
    line-height: 40px;
    color: #fff;
}

.menu .text li .submenu {
    z-index: 1200;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.6s cubic-bezier(0.4,0,0.2,1),
        opacity 0.3s cubic-bezier(0.4,0,0.2,1);
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: rgb(3, 21, 65);
    padding: 0;
    text-align: center;
}

.menu .text li .submenu li {
    margin: 0;
}

.menu .text li .submenu li a {
    display: block;
    padding: 10px 0;
    color: #fff;
    background: rgb(3, 21, 65);
    font-size: 18px;
    border-bottom: 1px solid rgb(3, 21, 65);
    text-decoration:none;
}

.menu .text li .submenu li:last-child a {
    border-bottom: none;
}

.menu .text li:hover .submenu {
    max-height: 800px;
    opacity: 1;
}

.menu .text li:hover a {
    transform: scale(1.08) !important; 
    color: rgb(251, 255, 202);
}

.menu .text .submenu li a:hover{
    transform: scale(1.08);
    color: rgb(255, 235, 133);
}

#check{
    color: rgb(141, 227, 255);
    text-decoration: underline;
}

/* 제목 및 본문 */
h1{
    font-size: 60px;
}

/* ###################### 반응형 웹 ###################### */

/* 미디어 유형이 스크린이고, 최대 너비 600px의 경우 적용할 css */


.complete-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    z-index: 1200;
}

.complete-btn:hover {
    background-color: #059669;
}

.character-display {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 120px;
  z-index: 1100;
}

.character-display img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.character-display p {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

.character-display .score {
  font-size: 0.75rem;
  color: #4b5563;
  margin: 0;
}

.link-btn {
    display: block;
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    text-align: center;
    margin-top: 10px; /* 캐릭터창 아래 여백 */
    font-size: 14px;
}



/*eeeeeeeeeeeeeeeeeeeeeeeeeeeeee*/

.profile-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.profile-heading {
    text-align: center;
    font-size: 60px;
}

.profile-card {
    display: flex;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.profile-img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.profile-info {
    padding: 1.5rem;
    flex: 1;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(3, 21, 65);
    margin-bottom: 0.5rem;
}

.profile-role {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.profile-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #374151;
}

.github{
    text-decoration: none;
    color: black;
}
.github:hover{
    color: rgb(80, 80, 80);
}


.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 150px); /* 네비바 높이 고려 */
}

.central-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.pot{
    text-decoration: none;
    color: black;
}
.pot:hover{
    color: #4b5563;
}


    body {
      background-color: aliceblue;
      font-family: sans-serif;
      text-align: center;
    }
    h1 {
      margin: 30px 0;
    }
    .graph {
      position: relative;
      width: 800px;
      height: 800px;
      margin: 0 auto;
    }
    .member {
      position: absolute;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid white;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    }
    .member img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .label {
      position: absolute;
      font-weight: bold;
      font-size: 14px;
      transform: translate(-50%, -50%) rotate(0deg);
      white-space: nowrap;
    }
    svg {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
    }
    .arrow {
      stroke-width: 4;
    }

/* 반응형 디자인 */
@media screen and (max-width: 600px) {
    #logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 24px auto;
        width: 100%;
    }

    .menu {
        width: 100%;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .menu .text {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
    }

    .menu .text li {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu .text li a {
        padding: 0 18px;
        font-size: 18px;
        text-align: center;
        border-radius: 0;
        width: 100%;
    }

    .menu .text li .submenu {
        z-index: 1200;
        display: none;
        position: static !important;
        width: 100%; 
        box-shadow: none;
        text-align: center;
        color: rgb(255, 235, 133);
        opacity: 1 !important;
        max-height: none !important;
        transition: none !important;
    }

    .menu .text li:hover .submenu,
    .menu .text li:focus-within .submenu {
        color: rgb(255, 235, 133);
        display: block; 
    }

    .menu .text li .submenu li a {
        color: rgb(255, 235, 133);
        font-size: 15px;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }
    .character-display {
        display: none;
    }
    .profile-container {
        margin: 1rem auto;
        padding: 0 0.5rem;
    }

    .profile-heading {
        font-size: 1.8rem;
    }

    .profile-card {
        flex-direction: column;
    }

    .profile-img {
        width: 100%;
        max-height: 300px;
    }

    .profile-info {
        padding: 1rem;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-role {
        font-size: 1rem;
    }

    .profile-description {
        font-size: 0.9rem;
    }
    .graph {
        transform: scale(50%); /* 60%로 축소 */
        margin-left: -120px;
    }
}