/* ================================== */
/* 1. 기본 설정 및 공통 스타일 */
/* ================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth; 
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.6;
}

/* ================================== */
/* 2. HEADER 스타일 (홈 로고 이미지 및 홈 버튼 적용) */
/* ================================== */
header {
    background-color: #007bff; 
    color: white;
    padding: 30px 20px; 
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative; /* 자식 요소인 home-button의 absolute 배치를 위해 */
}

.home-link {
    text-decoration: none; 
    color: inherit; 
    display: block; 
}

.header-logo-img {
    max-width: 100px; 
    height: auto;
    display: block; 
    margin: 0 auto 10px auto; 
}

header h1 { 
    display: none; 
}

header p {
    font-size: 1.1em;
    opacity: 0.9;
    margin-top: 10px; 
}

/* 🎯 홈 버튼 스타일 수정 */
.home-button {
    display: inline-block;
    background-color: transparent; /* 배경색 투명하게 */
    color: white; /* 글자색 흰색 */
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    margin-top: 0; /* 기존 margin-top 제거 */
    transition: background-color 0.3s, transform 0.2s;
    /*box-shadow: 0 3px 6px rgba(0,0,0,0.15); /* 그림자 제거 또는 약하게 */
    border: 2px solid white; /* 흰색 테두리 추가로 더 잘 보이게 */

    /* 왼쪽 상단에 고정 */
    position: absolute;
    top: 20px;
    left: 20px;
}

.home-button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* 호버 시 반투명 흰색 배경 */
    transform: translateY(-2px);
}

/* ================================== */
/* 3. 메뉴 컨테이너 (3x2 GRID 레이아웃) */
/* ================================== */
.menu-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 60px auto; 
    padding: 0 20px;
}

.menu-card {
    text-decoration: none; 
    color: inherit; 
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon {
    font-size: 2.5em;
    color: #007bff;
    background-color: #eaf5ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.menu-card h2 {
    font-size: 1.3em;
    color: #007bff;
    margin: 0 0 10px 0;
}

.menu-card p {
    font-size: 0.95em;
    color: #666;
}

/* ================================== */
/* 4. 콘텐츠 섹션 (예시) */
/* ================================== */
/* ... (이전과 동일) ... */

/* ================================== */
/* 5. 반응형 디자인 */
/* ================================== */
@media (max-width: 992px) {
    .menu-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .header-logo-img { 
        max-width: 80px; 
    }
    .menu-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto;
    }
    .home-button { 
        padding: 8px 15px;
        font-size: 0.8em;
        top: 15px; /* 모바일에서 버튼 위치 조정 */
        left: 15px;
        border: 1px solid white; /* 모바일에서 테두리 두께 조정 */
    }
}