/* HM Group GmbH */
body {
    font-family: system-ui, -apple-system, sans-serif;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Navigation */
.nav-link {
    position: relative;
    color: #f3f4f6;
    transition: color 0.3s ease;
    padding-bottom: 4px;
    font-weight: 500;
}
.nav-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ef4444;
    transition: width 0.4s ease;
}
.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}
.nav-link:hover {
    color: #f87171;
}

/* Dropdown - KEIN Abstand */
.group > .absolute {
    display: none;
    margin-top: 0;           /* kein Abstand */
    border-top: 0;
    border-radius: 0 0 16px 16px;
}

.group:hover > .absolute {
    display: block !important;
}

/* Dropdown Items */
.dropdown-item {
    color: #f3f4f6 !important;
    padding: 1rem 1.5rem;
    transition: all 0.25s ease;
    display: block;
    text-align: center;
}
.dropdown-item:hover {
    background-color: #374151;
    color: #f87171;
}

/* Cards & Buttons */
.category-card {
    background-color: #e2e8f0 !important;
    border: 2px solid #cbd5e1;
    border-radius: 1.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
.category-card:hover {
    transform: translateY(-8px);
}

.btn-red {
    background-color: #ef4444;
    color: white;
    font-weight: 600;
}
.btn-red:hover {
    background-color: #dc2626;
}