374 lines
7.5 KiB
CSS
374 lines
7.5 KiB
CSS
/* Modern Minimal Theme Styles */
|
|
|
|
/* CSS Variables for consistent theming */
|
|
:root {
|
|
--primary-color: #2563eb;
|
|
--secondary-color: #64748b;
|
|
--accent-color: #f59e0b;
|
|
--text-primary: #1e293b;
|
|
--text-secondary: #64748b;
|
|
--text-light: #94a3b8;
|
|
--bg-primary: #ffffff;
|
|
--bg-secondary: #f8fafc;
|
|
--bg-accent: #f1f5f9;
|
|
--border-color: #e2e8f0;
|
|
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
|
|
--radius-sm: 0.375rem;
|
|
--radius-md: 0.5rem;
|
|
--radius-lg: 0.75rem;
|
|
--spacing-xs: 0.5rem;
|
|
--spacing-sm: 1rem;
|
|
--spacing-md: 1.5rem;
|
|
--spacing-lg: 2rem;
|
|
--spacing-xl: 3rem;
|
|
--spacing-2xl: 4rem;
|
|
}
|
|
|
|
/* Reset and Base Styles */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
line-height: 1.6;
|
|
color: var(--text-primary);
|
|
background-color: var(--bg-primary);
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 var(--spacing-md);
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero-section {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: var(--spacing-2xl) 0;
|
|
background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
|
|
}
|
|
|
|
.hero-content {
|
|
flex: 1;
|
|
max-width: 600px;
|
|
margin-right: var(--spacing-2xl);
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: clamp(2.5rem, 5vw, 4rem);
|
|
font-weight: 700;
|
|
line-height: 1.2;
|
|
margin-bottom: var(--spacing-md);
|
|
background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.25rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-xl);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.hero-cta {
|
|
display: flex;
|
|
gap: var(--spacing-md);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn-primary, .btn-secondary {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: var(--spacing-sm) var(--spacing-lg);
|
|
border-radius: var(--radius-md);
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #1d4ed8;
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: transparent;
|
|
color: var(--text-primary);
|
|
border-color: var(--border-color);
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: var(--bg-accent);
|
|
border-color: var(--primary-color);
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.hero-visual {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-image-placeholder {
|
|
width: 400px;
|
|
height: 400px;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.minimal-shape {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
|
|
border-radius: 50%;
|
|
position: relative;
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
|
|
.minimal-shape::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -20px;
|
|
left: -20px;
|
|
width: 240px;
|
|
height: 240px;
|
|
border: 2px solid var(--primary-color);
|
|
border-radius: 50%;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0px); }
|
|
50% { transform: translateY(-20px); }
|
|
}
|
|
|
|
/* Features Section */
|
|
.features-section {
|
|
padding: var(--spacing-2xl) 0;
|
|
background-color: var(--bg-primary);
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: var(--spacing-2xl);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
}
|
|
|
|
.feature-card {
|
|
padding: var(--spacing-xl);
|
|
background-color: var(--bg-primary);
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow-sm);
|
|
border: 1px solid var(--border-color);
|
|
transition: all 0.3s ease;
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
|
|
.feature-card.animate-in {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: var(--shadow-lg);
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
background-color: var(--bg-accent);
|
|
border-radius: var(--radius-md);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: var(--spacing-md);
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.feature-card h3 {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
margin-bottom: var(--spacing-sm);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.feature-card p {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Content Section */
|
|
.content-section {
|
|
padding: var(--spacing-2xl) 0;
|
|
background-color: var(--bg-secondary);
|
|
}
|
|
|
|
.content-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--spacing-2xl);
|
|
align-items: center;
|
|
}
|
|
|
|
.content-text h2 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: var(--spacing-md);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.content-text p {
|
|
font-size: 1.125rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-lg);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.benefits-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.benefits-list li {
|
|
padding: var(--spacing-sm) 0;
|
|
color: var(--text-secondary);
|
|
position: relative;
|
|
padding-left: var(--spacing-lg);
|
|
}
|
|
|
|
.benefits-list li::before {
|
|
content: '✓';
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--primary-color);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.content-visual {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.visual-placeholder {
|
|
width: 300px;
|
|
height: 300px;
|
|
position: relative;
|
|
}
|
|
|
|
.minimal-geometry {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(45deg, var(--primary-color) 0%, var(--accent-color) 100%);
|
|
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
|
|
animation: rotate 10s linear infinite;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* CTA Section */
|
|
.cta-section {
|
|
padding: var(--spacing-2xl) 0;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
|
|
color: white;
|
|
}
|
|
|
|
.cta-content {
|
|
text-align: center;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.cta-content h2 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.cta-content p {
|
|
font-size: 1.25rem;
|
|
margin-bottom: var(--spacing-xl);
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.btn-primary-large {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: var(--spacing-md) var(--spacing-xl);
|
|
background-color: white;
|
|
color: var(--primary-color);
|
|
border-radius: var(--radius-md);
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
font-size: 1.125rem;
|
|
transition: all 0.3s ease;
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.btn-primary-large:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
/* Responsive Design */
|
|
|
|
|
|
|
|
|
|
/* Animation Classes */
|
|
.animate-in {
|
|
animation: fadeInUp 0.6s ease-out forwards;
|
|
}
|
|
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* Accessibility */
|
|
|
|
|
|
/* Print Styles */
|
|
|
|
|