:root {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --accent: #ffffff;
    --border: #333333;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

/* Logotypen */
header {
    width: 100%;
    max-width: 1000px;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 80px;
    height: 80px;
    background-color: #000;
    border: 2px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(-3deg) scale(1.05);
}

.logo-inner {
    text-align: left;
    font-family: 'Courier New', monospace;
    font-weight: 900;
    line-height: 0.8;
}

.logo-text {
    font-size: 1.1rem;
    letter-spacing: -1px;
}

.heart {
    display: block;
    font-size: 0.7rem;
    margin-top: 4px;
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--text-main);
}

.cta-link {
    border: 1px solid var(--text-main);
    padding: 8px 16px;
    border-radius: 4px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    max-width: 700px;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-dim);
    font-weight: 300;
    margin-top: 10px;
}

.description {
    margin-top: 30px;
    color: #666;
    font-size: 1.1rem;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px 100px 20px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #555;
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.card h3 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin: 0;
}

footer {
    padding: 60px 20px;
    border-top: 1px solid var(--border);
    width: 100%;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

footer a {
    color: #666;
    text-decoration: none;
}

/* Enkel animation */
.fade-in {
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    header { flex-direction: column; gap: 20px; }
}