/**
 * Text-Farben-Fix für Bottle-Trade
 * Macht hellgraue Texte dunkler für bessere Lesbarkeit
 */

:root {
  /* Überschreibe hellgraue Textfarbe mit dunklerer Variante */
  --bt-text-light: #495057 !important; /* Dunkler als das ursprüngliche #6c757d */
  --bt-gray: #495057 !important;       /* Dunkler als das ursprüngliche #ced4da */
}

/* Direktes Styling für Container-Texte */
.wine-offer-info,
.hero-card__subtitle,
.glass-container p,
.modern-container p,
.welcome-subtitle,
.statistics-description,
.about-subtitle,
.feature-description,
.card-text,
.hero-subtitle {
  color: #495057 !important;
}

/* Generelle Textfarbe für normale Absätze in Containern */
.glass-container p:not(.hero-card__button):not(.wine-accent):not([class*="title"]):not([class*="header"]),
.modern-container p:not(.hero-card__button):not(.wine-accent):not([class*="title"]):not([class*="header"]),
.card p:not(.hero-card__button):not(.wine-accent):not([class*="title"]):not([class*="header"]),
.container p:not(.hero-card__button):not(.wine-accent):not([class*="title"]):not([class*="header"]) {
  color: #495057 !important;
} 