/* 기본 폰트 설정 */
body {
    font-family: 'SUIT', sans-serif;
}


/* 네비게이션 바 스타일 */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* 히어로 섹션 스타일 (메인 배너) */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1581094794329-c8112c4e5199?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    color: white;
}

/* 제품 카드 스타일 */
.product-card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}
.product-card:hover {
    transform: translateY(-5px);
}

/* 카테고리 아이콘 스타일 */
.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

/* 서비스 카드 스타일 */
.service-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* 네비게이션 링크 스타일 */
.nav-link {
    font-weight: 500;
    padding: 1rem 1.5rem !important;
}
.nav-link i {
    margin-right: 5px;
}

/* 드롭다운 메뉴 스타일 */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.dropdown-item {
    padding: 0.7rem 1.5rem;
}
.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

/* 카테고리 카드 스타일 (세련된 디자인) */
.category-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
}
.category-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.category-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    color: #fff;
}
.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.category-desc {
    font-size: 1rem;
    opacity: 0.9;
} 