/* public/css/style.css */

/* 전체 폰트 및 스크롤 설정 */
html {
    scroll-behavior: smooth; /* 부드러운 스크롤 핵심 */
}

body {
    font-family: 'Noto Sans KR', sans-serif; /* 한글 폰트 적용 추천 */
    color: #333;
    line-height: 1.6;
}

/* 네비게이션 바 투명도 및 블러 효과 */
.navbar {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
}

/* 히어로 섹션 (메인 배너) */
.hero-section {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* 그라데이션 배경 */
    color: white;
    padding: 150px 0 100px;
    margin-bottom: 0;
}

/* 섹션 공통 */
section {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

/* 제목 밑줄 포인트 */
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #0d6efd; /* 포인트 컬러 */
    margin: 15px auto 0;
}

/* 카드 디자인 (협력사, 포트폴리오) */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background: #fff;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* 앱 이미지 스타일 */
.app-screen {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-height: 500px;
    object-fit: cover;
}