/********************************************
 * BASISFUNKTIONEN UND LAYOUT-HILFEN
 ********************************************/

.flexiblecolumn {
    float: none;
}

.flexiblecolumn > div, 
.flexiblecolumn > div > div {
    height: 100%;
}

#contact-button .btn {
    font-size: 20px;
}

ul.list-icons {
    list-style: none;
    margin: 0;
}

ul.list-icons li:before {
    content: "\f101";
    color: #E28623;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-right: 12px;
}

div.mod-login__password button {
    width: 55px;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

div.mod-login__username .input-group-text {
    width: 55px;
}

.plg_system_webauthn_login_button {
    display: flex;
    align-items: center;
}

.mod-login input {
    margin: 0;
}

button.navbar-toggler {
    color: #404040;
}



/********************************************
 * HFS ARTIST – NEUES DESIGN (HELLGRAU)
 ********************************************/

/* Container der gesamten Künstlerseite */
.hfs-artist {
    max-width: 960px;
    margin: 0 auto 3rem;
    padding: 2rem 2.5rem;
    border-radius: 1.5rem;

    /* Neuer Hintergrund: helles Grau passend zum Template */
    background: linear-gradient(135deg, #fff3e4 0%, #ffe0bb 100%);

    color: #222;
    
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}



/********************************************
 * HEADER (Bild + Name)
 ********************************************/

.hfs-artist-header {
    display: flex;
    gap: 1.8rem;
    align-items: center;

    margin-bottom: 1.8rem;
    padding: 1.4rem 1.8rem;

    background: linear-gradient(135deg, #f59a2a 0%, #d57a00 100%);

    border-radius: 1rem;

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.hfs-artist-avatar-wrap {
    flex-shrink: 0;
}

.hfs-artist-avatar {
    width: 140px;
    height: 140px;
    border-radius: 1.2rem;
    object-fit: cover;

    border: 3px solid #c9c9c9;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hfs-artist-meta {
    flex: 1;
}

.hfs-artist-name {
    margin: 0 0 0.3rem 0;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: #222;
}



/********************************************
 * INFO-BOX (Grunddaten)
 ********************************************/

.hfs-info-box {
    background: #ffffffcc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid #d0d0d5;
}

.hfs-info-box p {
    margin: 0.3rem 0;
    font-size: 1.05rem;
    color: #222;
}

.hfs-info-box strong {
    font-weight: 600;
    color: #000;
}



/********************************************
 * BIOGRAFIE-BLOCKS
 ********************************************/

.hfs-artist-section {
    margin-bottom: 2rem;
}

.hfs-artist-section h2 {
    margin-top: 0.2rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
}



/********************************************
 * BUTTONS (YouTube, Spotify)
 ********************************************/

.hfs-artist-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.hfs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.72rem 1.1rem;
    border-radius: 999px;

    font-size: 0.96rem;
    font-weight: 500;
    text-decoration: none;

    border: 1px solid transparent;
    cursor: pointer;

    transition: transform 0.12s ease, 
                box-shadow 0.12s ease, 
                background 0.12s ease, 
                border-color 0.12s ease;
}

.hfs-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.hfs-btn-primary {
    background: linear-gradient(135deg, #ececec, #d0d0d0);
    color: #222;
    border: 1px solid #bababa;
}

.hfs-btn-primary:hover {
    background: #ffffff;
}

.hfs-btn-secondary {
    background: linear-gradient(135deg, #bbbbc7, #8f8fa3);
    color: #fff;
}



/********************************************
 * MOBILE STYLE
 ********************************************/

@media (max-width: 768px) {

    .hfs-artist {
        padding: 1.5rem 1.4rem;
    }

    .hfs-artist-header {
        flex-direction: column;
        text-align: center;
    }

    .hfs-artist-avatar {
        width: 120px;
        height: 120px;
    }

    .hfs-artist-links {
        gap: 0.55rem;
    }
}
/* Alterszeile in der Blogansicht ausblenden */
.blog .artist-age-line {
    display: none;
}

/* Alterszeile nur in der Vollansicht anzeigen */
.item-page .artist-age-line {
    display: block;
}
/* Blogansicht: Details und Links ausblenden */
.blog .hfs-artist-section,
.blog .hfs-artist-links {
    display: none;
}

/* Blogansicht: schöner Abstand unterhalb der Grunddaten */
.blog .hfs-readmore-wrapper {
    margin-top: 16px;
}

/* Button-Styling */
.hfs-readmore-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #e68a00;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.hfs-readmore-btn:hover {
    background: #cc7a00;
    color: #fff !important;
}
/* Standard: Weiterlesen-Button ausblenden */
.hfs-readmore-wrapper {
    display: none;
}

/* Nur in der BLOGANSICHT anzeigen */
.blog .hfs-readmore-wrapper {
    display: block;
}
/* Hide all individual band member profiles in BLOG view */
.blog .hfs-band-members {
    display: none;
}

/* Show member profiles ONLY in full article view */
.item-page .hfs-band-members {
    display: block;
}
#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 40px; /* höher vom Rand */
    background: #e68729; /* Template-Orange */
    color: #fff;
    padding: 6px 10px; /* kleiner */
    font-size: 14px; /* kleiner */
    text-decoration: none;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s;
    z-index: 9999;
}

#scrollTopBtn.visible {
    opacity: 0.85;
    pointer-events: auto;
}

#scrollTopBtn:hover {
    opacity: 1;
    background: #f5a945; /* etwas helleres Orange */
}
.footer-orange-links ul.list-icons li a {
    color: #f28c28 !important;
}

.footer-orange-links ul.list-icons li a:hover {
    color: #fff !important;
}
