/* Modern Website Styles for Gorev */
:root {
/* Colors */
--bg-primary: #0f172a;
--bg-secondary: #1e293b;
--bg-card: #1e293b;
--bg-hover: #334155;
--text-primary: #f1f5f9;
--text-secondary: #94a3b8;
--text-muted: #64748b;
/* Accents */
--accent-blue: #3b82f6;
--accent-purple: #8b5cf6;
--accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
/* Status */
--status-pending: #f59e0b;
--status-in-progress: #3b82f6;
--status-completed: #10b981;
/* Spacing */
--container: 1200px;
--spacing-xs: 0.5rem;
--spacing-sm: 1rem;
--spacing-md: 1.5rem;
--spacing-lg: 2rem;
--spacing-xl: 4rem;
--spacing-2xl: 6rem;
/* Typography */
--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
/* Shadows */
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-primary);
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
.container {
max-width: var(--container);
margin: 0 auto;
padding: 0 var(--spacing-md);
}
/* Heavy Development Warning Banner */
.warning-banner {
position: fixed;
top: 0;
left: 0;
right: 0;
background: linear-gradient(to right, #f59e0b, #ea580c, #dc2626);
color: white;
padding: var(--spacing-xs) 0;
text-align: center;
z-index: 2000;
box-shadow: var(--shadow-md);
}
.warning-content {
display: flex;
align-items: center;
justify-content: center;
gap: var(--spacing-xs);
font-weight: 700;
font-size: 0.875rem;
}
.warning-icon {
font-size: 1.25rem;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
@media (max-width: 640px) {
.warning-text {
font-size: 0.75rem;
}
}
/* Navigation */
.navbar {
position: fixed;
top: 40px; /* Account for warning banner height */
width: 100%;
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
z-index: 1000;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: var(--spacing-sm) 0;
}
.nav-logo {
display: flex;
align-items: center;
gap: var(--spacing-xs);
font-size: 1.5rem;
font-weight: 700;
color: var(--text-primary);
text-decoration: none;
}
.logo-icon {
width: 32px;
height: 32px;
color: var(--accent-blue);
}
.nav-links {
display: flex;
gap: var(--spacing-lg);
align-items: center;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--text-primary);
}
/* Hero Section */
.hero {
padding: calc(var(--spacing-2xl) + 60px) 0 var(--spacing-xl); /* Extra 60px for navbar + banner */
background: var(--accent-gradient);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}
.hero .container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-2xl);
align-items: center;
position: relative;
z-index: 1;
}
.hero-title {
font-size: 3.5rem;
font-weight: 700;
line-height: 1.1;
margin-bottom: var(--spacing-md);
}
.gradient-text {
background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 1.25rem;
margin-bottom: var(--spacing-lg);
opacity: 0.9;
color: rgba(255, 255, 255, 0.9);
}
.hero-actions {
display: flex;
gap: var(--spacing-sm);
}
.btn {
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s;
border: none;
cursor: pointer;
font-family: var(--font-primary);
}
.btn-primary {
background: white;
color: var(--accent-blue);
box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-xl);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.1);
color: white;
border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.5);
}
/* Code Mockup */
.code-mockup {
background: var(--bg-secondary);
border-radius: 0.75rem;
overflow: hidden;
box-shadow: var(--shadow-xl);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.code-header {
background: var(--bg-hover);
padding: var(--spacing-xs) var(--spacing-sm);
display: flex;
align-items: center;
gap: var(--spacing-xs);
}
.code-dots {
display: flex;
gap: 0.5rem;
}
.code-dots span {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
}
.code-dots span:first-child { background: #ef4444; }
.code-dots span:nth-child(2) { background: #f59e0b; }
.code-dots span:nth-child(3) { background: #10b981; }
.code-title {
margin-left: auto;
font-size: 0.75rem;
color: var(--text-muted);
font-weight: 500;
}
.code-content {
padding: var(--spacing-md);
font-family: 'Monaco', 'Courier New', monospace;
}
.code-line {
margin-bottom: var(--spacing-xs);
display: flex;
gap: var(--spacing-xs);
align-items: center;
}
.code-line.output {
color: var(--text-muted);
}
.prompt {
color: var(--accent-purple);
font-weight: 600;
}
.command {
color: var(--text-secondary);
}
.cursor {
width: 8px;
height: 1rem;
background: var(--text-secondary);
animation: blink 1s infinite;
}
@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}
.status {
padding: 0.2rem 0.5rem;
border-radius: 0.25rem;
font-size: 0.75rem;
font-weight: 600;
}
.status:nth-child(1) { background: var(--status-pending); color: #000; }
.status:nth-child(2) { background: var(--status-in-progress); color: #fff; }
.status:nth-child(3) { background: var(--status-completed); color: #000; }
/* Features Section */
.features {
padding: var(--spacing-2xl) 0;
background: var(--bg-primary);
}
.section-title {
font-size: 2.5rem;
font-weight: 700;
text-align: center;
margin-bottom: var(--spacing-xl);
color: var(--text-primary);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--spacing-lg);
}
.feature-card {
background: var(--bg-card);
padding: var(--spacing-lg);
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s;
}
.feature-card:hover {
transform: translateY(-4px);
border-color: var(--accent-blue);
box-shadow: var(--shadow-lg);
}
.feature-icon {
width: 48px;
height: 48px;
background: var(--accent-gradient);
color: white;
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: var(--spacing-md);
}
.feature-icon svg {
width: 24px;
height: 24px;
}
.feature-card h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: var(--spacing-sm);
color: var(--text-primary);
}
.feature-card p {
color: var(--text-secondary);
line-height: 1.6;
}
/* GitHub Section */
.github {
padding: var(--spacing-2xl) 0;
background: var(--bg-secondary);
}
.github-content {
display: grid;
grid-template-columns: 1fr auto;
gap: var(--spacing-2xl);
align-items: center;
}
.github-info h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: var(--spacing-md);
color: var(--text-primary);
}
.github-info p {
font-size: 1.125rem;
color: var(--text-secondary);
margin-bottom: var(--spacing-lg);
line-height: 1.6;
}
.github-stats {
display: flex;
gap: var(--spacing-lg);
margin-bottom: var(--spacing-lg);
}
.stat {
text-align: center;
}
.stat-number {
font-size: 2rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 0.5rem;
}
.stat-label {
color: var(--text-muted);
font-size: 0.875rem;
font-weight: 500;
}
/* Footer */
.footer {
background: var(--bg-secondary);
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: var(--spacing-xl) 0 var(--spacing-lg);
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--spacing-lg);
}
.footer-logo {
display: flex;
align-items: center;
gap: var(--spacing-xs);
font-weight: 700;
font-size: 1.25rem;
color: var(--text-primary);
}
.footer-logo svg {
width: 24px;
height: 24px;
color: var(--accent-blue);
}
.footer-links {
display: flex;
gap: var(--spacing-lg);
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover {
color: var(--text-primary);
}
.footer-copyright {
color: var(--text-muted);
font-size: 0.875rem;
}
/* Responsive */
@media (max-width: 768px) {
.hero .container {
grid-template-columns: 1fr;
gap: var(--spacing-xl);
text-align: center;
}
.hero-title {
font-size: 2.5rem;
}
.hero-actions {
flex-direction: column;
align-items: center;
}
.github-content {
grid-template-columns: 1fr;
gap: var(--spacing-lg);
text-align: center;
}
.github-stats {
justify-content: center;
}
.nav-links {
display: none;
}
.footer-content {
flex-direction: column;
text-align: center;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 2rem;
}
.section-title {
font-size: 2rem;
}
.features-grid {
grid-template-columns: 1fr;
}
}
/* Smooth Scrolling */
html {
scroll-behavior: smooth;
}
/* Focus Styles */
.btn:focus,
a:focus {
outline: 2px solid var(--accent-blue);
outline-offset: 2px;
}