/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;700;800&display=swap');

/* Basic Reset & Base Style */
body {
    background: radial-gradient(circle at top, #1a1a2e 0%, #16213e 100%);
    color: #e9ecef;
    font-family: 'Noto Sans KR', sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* 콘텐츠가 적어도 푸터가 바닥에 붙도록 설정 */
}

/* Glassmorphism Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
    color: #4ecca3 !important;
    font-size: 1.5rem;
}

/* Sidebar (Offcanvas) Styling */
.offcanvas {
    background: rgba(26, 26, 46, 0.98) !important;
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: #adb5bd !important;
    padding: 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #4ecca3 !important;
    background: rgba(78, 204, 163, 0.1);
    border-radius: 8px;
}

/* Main Card Style */
.dream-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

/* Buttons */
.btn-dream {
    background: linear-gradient(135deg, #4ecca3, #45b7af);
    border: none;
    color: white;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: transform 0.2s;
}

.btn-dream:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 204, 163, 0.4);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffd700;
    border-color: #ffd700;
}

/* ------------------------------------------------------
   Footer Custom Styling (가독성 개선 버전)
--------------------------------------------------------- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2); /* 배경을 약간 더 어둡게 깔아줌 */
}

/* 면책조항 텍스트 */
.footer-disclaimer {
    color: #94a3b8; /* 가독성 좋은 청회색 */
    font-size: 0.8rem;
    line-height: 1.7;
    word-break: keep-all;
}

.footer-disclaimer strong {
    color: #cbd5e1; /* 강조 텍스트는 좀 더 밝게 */
}

/* 푸터 링크 스타일 (개인정보처리방침 등) */
.footer .business-info a {
    color: #4ecca3 !important; 
    text-decoration: none;
    transition: 0.3s;
}

.footer .business-info a:hover {
    color: #ffd700 !important;
    text-decoration: underline !important;
}

/* 사업자 상세 정보 */
.footer-details {
    color: rgba(148, 163, 184, 0.7); /* 보조 텍스트 색상 */
    font-size: 0.75rem;
    line-height: 2;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
}

/* Utility */
.text-muted {
    color: #94a3b8 !important; /* 부트스트랩 기본 muted보다 약간 더 밝게 보정 */
}

/* Privacy Page Custom */
.privacy-content h5 {
    border-left: 4px solid #4ecca3;
    padding-left: 12px;
    margin-top: 2.5rem !important;
}

.privacy-content p {
    margin-bottom: 1.5rem;
    word-break: keep-all;
}