/*
 Theme Name:   Divi Child
 Description:  Custom Child Theme für Divi mit Utility-Klassen
 Author:       Weirether
 Template:     Divi
 Version:      1.0.0
*/

/* =========================
   Globale Utilities
   ========================= */

/* Textfarben */
.text-white { color: #fff !important; }
.text-dark { color: #333 !important; }
.text-green { color: #2d7a34 !important; }

/* Hintergrundfarben */
.bg-dark { background: #222 !important; }
.bg-green { background: #2d7a34 !important; }
.bg-light { background: #f7f7f7 !important; }

/* Abstände */
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }

.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }

.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }

/* Text-Ausrichtung */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* Flexbox Helpers */
.flex { display: flex !important; }
.flex-center { display: flex !important; align-items: center; justify-content: center; }
.flex-between { display: flex !important; justify-content: space-between; }

/* Schatten */
.shadow { box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important; }
.shadow-lg { box-shadow: 0 6px 16px rgba(0,0,0,0.2) !important; }
