body {
    font-family: sans-serif;
    text-align: center;
    background: #a96f67;
    color: #F1E4DA;
    font-size: 14px;
}

.profile-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 68px;
    margin-top: 30px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.share-btn, .notify-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}



.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-name {
    margin-top: 28px;
    font-size: 1.2em;
    /* font-weight: bold; */
}

.profile-slogan {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 8px;
    line-height: 1.4;
    opacity: 0.9;
  }
  

.icon {
    width: 24px;
    height: 24px;
    fill: #F1E4DA;
    stroke: #F1E4DA;
    opacity: 0.9;
    transition: transform .12s ease, opacity .12s ease;
}
.icon:hover {
    transform: translateY(-2px) scale(1.04);
    opacity: 1;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top:20px;
}

.card {
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* ← 아이템 전체는 왼쪽부터 배치 */
    width: 300px;
    padding: 10px;
    background: #F1E4DA;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #453630;
    text-decoration: none;
    gap: 10px;
    transition: transform .12s ease, opacity .12s ease;
}

.section-title {
    /* font-weight: bold;           글자 굵게 */
    color: #F1E4DA;              /* 글자 색상 */
    margin-top: 20px;            /* 위쪽 여백 */
    font-size: 14px;           /* 글자 크기 */
}


.card-text {
    flex-grow: 1;             /* 남은 공간 전부 차지 */
    text-align: center;       /* 텍스트는 내부에서 가운데 정렬 */
    white-space: pre-line; /* \n을 줄바꿈으로 인식 */
}


.card:hover {
    opacity: 0.9;
}

.thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.insta-icon {
    width: 40px;
    height: 40px;
    margin: 60px auto;
    display: block;
    fill: #F1E4DA;
}

.biz-btn {
    margin-top: 8px;
    display: inline-block;
    font-size: 0.9em;
    color: #F1E4DA;
    background: none;
    border: 1px solid #F1E4DA;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.biz-btn:hover {
    background: #F1E4DA;
    color: #453630;
}

footer {
    position: fixed;
    bottom: 36px;       /* 화면 하단에서 36px 위 */
    left: 0;
    width: 100%;        /* 화면 전체 너비 차지 */
    display: flex;
    justify-content: center;
    background: transparent; /* 필요 시 배경 지정 */
  }
  
  
  .socials {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
    display: block;
    opacity: 0.9;
    transition: transform .12s ease, opacity .12s ease;
  }
  
  .social-icon:hover {
    transform: translateY(-2px) scale(1.04);
    opacity: 1;
  }