/* ===================================================
   상단 여백 완전 제거 CSS - 네비게이션과 히어로 사이 공간 제거
   =================================================== */

/* HTML과 BODY의 모든 여백 제거 */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* 네비게이션 바의 모든 여백 제거 */
nav {
    margin: 0 !important;
    padding-bottom: 0 !important;
}

/* 히어로 섹션 상하 여백 완전 제거 */
.hero {
    margin: 0 !important;
    padding-top: 0 !important;
}

/* 네비게이션 바와 히어로 섹션 사이 공간 제거 */
nav + .hero,
nav + section {
    margin-top: 0 !important;
}

/* 모든 섹션의 기본 상단 여백 제거 */
section:first-of-type,
section#home {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 네비게이션 내부 요소 여백 제거 */
nav .nav-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
