/* CLAUDE: Utilities CSS - Kleine Helferklassen */
/* CLAUDE: Für schnelle Anpassungen ohne neue CSS zu schreiben */

/* CLAUDE: Text-Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* CLAUDE: Font Weights */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* CLAUDE: Font Sizes */
.text-sm { font-size: var(--lhi-font-size-sm); }
.text-base { font-size: var(--lhi-font-size-base); }
.text-lg { font-size: var(--lhi-font-size-lg); }
.text-xl { font-size: var(--lhi-font-size-xl); }
.text-2xl { font-size: var(--lhi-font-size-2xl); }

/* CLAUDE: Text Colors */
.text-primary { color: var(--lhi-color-primary); }
.text-dark { color: var(--lhi-color-text); }
.text-light { color: var(--lhi-color-text-light); }
.text-white { color: var(--lhi-color-white); }

/* CLAUDE: Background Colors */
.bg-primary { background-color: var(--lhi-color-primary); }
.bg-white { background-color: var(--lhi-color-white); }
.bg-gray { background-color: var(--lhi-color-gray-100); }
.bg-dark { background-color: var(--lhi-color-text); }

/* CLAUDE: Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* CLAUDE: Flexbox Utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

/* CLAUDE: Gap Utilities */
.gap-sm { gap: var(--lhi-space-sm); }
.gap-md { gap: var(--lhi-space-md); }
.gap-lg { gap: var(--lhi-space-lg); }
.gap-xl { gap: var(--lhi-space-xl); }

/* CLAUDE: Margin Utilities */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: var(--lhi-space-sm); }
.mt-md { margin-top: var(--lhi-space-md); }
.mt-lg { margin-top: var(--lhi-space-lg); }
.mt-xl { margin-top: var(--lhi-space-xl); }
.mb-sm { margin-bottom: var(--lhi-space-sm); }
.mb-md { margin-bottom: var(--lhi-space-md); }
.mb-lg { margin-bottom: var(--lhi-space-lg); }
.mb-xl { margin-bottom: var(--lhi-space-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* CLAUDE: Padding Utilities */
.p-0 { padding: 0; }
.p-sm { padding: var(--lhi-space-sm); }
.p-md { padding: var(--lhi-space-md); }
.p-lg { padding: var(--lhi-space-lg); }
.p-xl { padding: var(--lhi-space-xl); }
.py-sm { padding-top: var(--lhi-space-sm); padding-bottom: var(--lhi-space-sm); }
.py-md { padding-top: var(--lhi-space-md); padding-bottom: var(--lhi-space-md); }
.py-lg { padding-top: var(--lhi-space-lg); padding-bottom: var(--lhi-space-lg); }
.py-xl { padding-top: var(--lhi-space-xl); padding-bottom: var(--lhi-space-xl); }
.px-sm { padding-left: var(--lhi-space-sm); padding-right: var(--lhi-space-sm); }
.px-md { padding-left: var(--lhi-space-md); padding-right: var(--lhi-space-md); }
.px-lg { padding-left: var(--lhi-space-lg); padding-right: var(--lhi-space-lg); }

/* CLAUDE: Width/Height Utilities */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* CLAUDE: Border Utilities */
.rounded { border-radius: var(--lhi-radius-sm); }
.rounded-md { border-radius: var(--lhi-radius-md); }
.rounded-lg { border-radius: var(--lhi-radius-lg); }
.rounded-full { border-radius: 9999px; }

/* CLAUDE: Shadow Utilities */
.shadow-sm { box-shadow: var(--lhi-shadow-sm); }
.shadow { box-shadow: var(--lhi-shadow-md); }
.shadow-lg { box-shadow: var(--lhi-shadow-lg); }

/* CLAUDE: Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* CLAUDE: Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }

/* CLAUDE: Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* CLAUDE: Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* CLAUDE: Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* CLAUDE: Transition */
.transition { transition: all var(--lhi-transition-normal); }
.transition-fast { transition: all var(--lhi-transition-fast); }

/* CLAUDE: Responsive Utilities */
@media (max-width: 768px) {
    .md\:d-none { display: none; }
    .md\:d-block { display: block; }
    .md\:text-center { text-align: center; }
}

@media (min-width: 769px) {
    .lg\:d-none { display: none; }
    .lg\:d-flex { display: flex; }
}
