
/* εβθισας/styles.css */

:root {
    --primary: #3B82F6;
    --secondary: #10B981;
    --bg: #F9FAFB;
    --card: #FFFFFF;
    --text: #111827;
    --muted: #6B7280;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    margin: 1.5rem 0 0.5rem;
    color: var(--text);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #2563EB;
    transform: scale(1.02);
}

button, .button {
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover, .button:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.card {
    background: var(--card);
    border-radius: 1rem;
    box-shadow: 0 10px 25px -12px rgba(0,0,0,0.25);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(to right, #BFDBFE, #93C5FD);
}

.hero h1 {
    font-size: 3rem;
    background: linear-gradient(to right, #3B82F6, #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

section {
    max-width: 1000px;
    margin: auto;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    body {
        padding: 1rem;
    }
}
