/* about.css */

/* 기본 스타일 초기화 */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    background-image: url('../img/tree.jpg'); /* 배경 이미지 경로 설정 */
    background-size: cover; /* 배경 이미지를 전체 화면에 맞게 조정 */
    background-position: center; /* 배경 이미지를 중앙에 위치시킴 */
    background-repeat: no-repeat; /* 이미지 반복을 방지 */
    background-attachment: fixed; /* 배경 이미지를 스크롤할 때 고정 */
}

/* Hero 섹션 */
.about-hero {
    background: url('path/to/your/hero-background.jpg') no-repeat center center/cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px; /* 헤더 높이만큼 상단 패딩 추가 */
    margin-bottom: 100px;
}

.about-hero .about-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2rem;
}

/* About Us 상세 섹션 */
.about-details {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    color:white;
}

.about-details h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.about-details p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.values ul {
    list-style: none;
    padding-left: 0;
}

.values ul li {
    padding: 5px 0;
}

.values ul li strong {
    color: #007bff;
}

/* 팀 멤버 소개 섹션 */
.team-introduction {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color:white;
}

.team-introduction h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
}

.team-member img {
    width: 100%;
    border-radius: 10px;
}

.team-member h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
}

/* 푸터 */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}
/*buy me a coffe 버튼 css*/
.bmc-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* 버튼 위에 여백 추가, 필요에 따라 조정 가능 */
}