/* ============================ */
/* 기본 및 공통 스타일      */
/* ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f9;
}

.section {
    padding: 60px 20px;
    text-align: center;
}
h1{
    font-size: 5em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
    width: 100%;
}

/* ============================ */
/* HERO SECTION STYLES      */
/* ============================ */
.hero {
    background: linear-gradient(135deg, #007acc, #005c99);
    color: white;
    padding: 100px 20px;
}

.hero-content {
    /* Hero 내부의 텍스트와 버튼을 포함하는 컨테이너 */
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    /* ❗ 버튼들을 가로로 나란히 배치하고 간격을 벌리는 핵심: Flexbox */
    display: flex;
    flex-direction: space-around; /* 기본적으로는 세로로 쌓고 */
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ❗ Hero 버튼 그룹을 위한 컨테이너 */
.btn-group {
    display: flex;
    flex-direction: space-around;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* 모바일에서 줄바꿈 허용 */
    margin-top: 10px;
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #007acc;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #e6f7ff;
    transform: translateY(-3px);
}

/* ============================ */
/* SKILLS SECTION (가로 나열 배치) */
/* ============================ */
.skills {
    background-color: white;
}

.skills-grid {
    /* ❗ 가로 나열의 핵심: Flexbox */
    display: flex; 
    justify-content: center; /* 아이템들을 중앙에 모으기 */
    gap: 30px; 
    flex-wrap: wrap; /* 줄 바꿈 허용 */
    
    max-width: 1200px; 
    margin: 0 auto;   
    padding: 20px 0;
}

/* --- 스킬 카드 디자인 --- */
.skill-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    max-width: 350px; /* 카드 최대 너비 */
    flex-grow: 0; 
    flex-shrink: 1; 
    transition: transform 0.3s;
}

.skill-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* ❗ 이미지 링크의 버튼 스타일 오버라이드 */
.skill-card a.btn {
    padding: 0;
    background: none;
    display: block;
    border-radius: 0;
    transform: none;
}
.skill-card a.btn:hover {
    background: none;
    transform: none;
}


.skill-logo {
    /* 이미지 크기 설정 */
    width: 280px; 
    height: 280px;
    object-fit: contain;
    margin-bottom: 15px;
}

.skill-card h3 {
    color: #007acc;
    margin-top: 10px;
    font-size: 1.5rem;
}

/* ============================ */
/* ABOUT & CONTACT         */
/* ============================ */
.about {
    background-color: #f9f9f9;
}
.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.contact {
    background-color: #2c3e50;
    color: white;
}
.contact h2 {
    color: white;
}
.contact ul {
    list-style: none;
    padding: 0;
}
.contact li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* ============================ */
/* 반응형 (모바일)          */
/* ============================ */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    
    /* 모바일에서 버튼들이 수직으로 쌓임 (flex-wrap: wrap 덕분에) */
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
    .btn {
        width: 100%; /* 버튼을 모바일 너비에 맞게 늘림 */
    }

    .skills-grid {
        gap: 20px;
    }
    
    .skill-logo {
        width: 100%; /* 모바일에서 로고 너비 꽉 채우기 */
        height: auto;
    }
}