/* styles.css */
:where([class^="ri-"])::before { content: "\f3c2"; }
body {
font-family: 'Noto Sans KR', sans-serif;
color: #333;
}
.hero-section {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://readdy.ai/api/search-image?query=dark%20blue%20ocean%20with%20red%20camellia%20flowers%20floating%20on%20water%2C%20korean%20traditional%20painting%20style%2C%20deep%20blue%20water%2C%20night%20scene%2C%20artistic%2C%20moody%20atmosphere%2C%20high%20quality%2C%20detailed&width=1280&height=720&seq=1&orientation=landscape');
background-size: cover;
background-position: center;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #e63946;
transition: width 0.3s;
}
.nav-link:hover::after {
width: 100%;
}
.active-nav::after {
width: 100%;
}
.performance-card {
transition: transform 0.3s ease;
}
.performance-card:hover {
transform: translateY(-5px);
}
input:focus, textarea:focus {
outline: none;
border-color: #e63946;
}