/* 
   Bento Grid Design System: Pflegoria GmbH
   Style: Dark-Mode-Eleganz, asymmetrisch, modern
*/

:root {
    --bg-dark: #050505;
    --card-bg: #111111;
    --card-border: #1e1e1e;
    --primary: #4ade80; /* Modernes Neon-Grün für Pflege/Vitalität */
    --secondary: #22c55e;
    --text-main: #f5f5f5;
    --text-muted: #a1a1aa;
    --accent-glow: rgba(74, 222, 128, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--text-main);
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 20px;
}

.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s;
}

.bento-item:hover {
    border-color: var(--primary);
    transform: scale(1.01);
}

/* Kachel-Varianten */
.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

.row-2 { grid-row: span 2; }
.row-3 { grid-row: span 3; }

/* Inhalt der Kacheln */
.bento-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.bento-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 90%;
}

.bento-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--primary);
}

.glow-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 0;
}

/* Buttons */
.btn-fett {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: var(--primary);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-fett:hover {
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
    transform: translateY(-5px);
}

/* Footer */
footer {
    margin-top: 80px;
    padding-bottom: 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom {
    color: #333;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .col-8, .col-4, .col-6, .col-3 { grid-column: span 12; }
    .row-2, .row-3 { grid-row: auto; }
}

@media (max-width: 768px) {
    .bento-title { font-size: 1.8rem; }
    .bento-item { padding: 30px; }
}
