/* Link Underline Styles - Trauschmuck Sperling GmbH */
/* Alle Textlinks unterstreichen, außer Header-Menü und Buttons */

/* Basis-Regel: Alle Links unterstreichen */
a {
    text-decoration: underline;
}

/* Header-Menü Links nicht unterstreichen */
.header a,
.navbar a,
.navbar-nav a,
.navbar-toggle,
.logo,
.topbar a,
#menu a {
    text-decoration: none !important;
}

/* Buttons innerhalb von Links nicht unterstreichen */
a.btn,
a .btn,
a button,
a .button,
a[class*="btn-"],
.btn a {
    text-decoration: none !important;
}

/* Weitere Button-Varianten */
a.btn-primary,
a.btn-secondary,
a.btn-default,
a.btn-success,
a.btn-warning,
a.btn-danger,
a.btn-info,
a.btn-light,
a.btn-dark,
a.btn-link {
    text-decoration: none !important;
}

/* Skip-Links nicht unterstreichen */
.skip-links a,
.skip-link {
    text-decoration: none !important;
}

/* Social Media Links nicht unterstreichen */
.social-icons a,
a.social-icon,
a[class*="fa-"],
a i.fa {
    text-decoration: none !important;
}

/* Image Links nicht unterstreichen */
a img {
    text-decoration: none;
}

/* Links mit Icons */
a > i,
a > svg {
    text-decoration: none;
}

/* Footer spezifische Anpassungen - Listen mit Icons behalten Unterstreichung */
.footer .list-unstyled a {
    text-decoration: underline;
}

/* Breadcrumb Links optional */
.breadcrumb a {
    text-decoration: underline;
}

/* Pagination Links nicht unterstreichen */
.pagination a {
    text-decoration: none !important;
}

/* Tab Navigation nicht unterstreichen */
.nav-tabs a,
.nav-pills a {
    text-decoration: none !important;
}

/* Dropdown Links nicht unterstreichen */
.dropdown-menu a {
    text-decoration: none !important;
}

/* Modal Links behalten Unterstreichung */
.modal-body a:not(.btn) {
    text-decoration: underline;
}

/* Hover-Effekt für alle unterstrichenen Links */
a:hover {
    text-decoration: underline;
}

/* Hover-Effekt für nicht-unterstrichene Links entfernen */
.header a:hover,
.navbar a:hover,
a.btn:hover,
a .btn:hover {
    text-decoration: none !important;
}