/* =========================================================================================================================== */
/*                                            🧩 TYPOGRAPHY                                                                    */
/*                                            📍 static/css/typography.css                                                     */
/* =========================================================================================================================== */



/* =========================================================================================================================== */
/*                                      📍 Used in: ABOUT BITCOIN • TREASURIES • MARKET CAP                                    */
/* =========================================================================================================================== */

/* goldene Überschrift für Subtabs außer Home */
.subtab-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;

    /* 🔶 Bitcoin-Gold Verlauf (AKTUELLER LOOK) */
    background: linear-gradient(
        180deg,
        #fff4d6 0%,     /* helles Gold */
        #f2b705 40%,    /* Bitcoin-Gold */
        #d98b00 70%,    /* sattes Orange */
        #a96a00 100%    /* Tiefe */
    );

    /* Text-Gradient */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* 🔹 Tiefe & Glanz */
    text-shadow:
        0 1px 0 rgba(255,255,255,0.35),
        0 3px 10px rgba(0,0,0,0.6);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dekorative Linie unter Überschrift */
.subtab-title::after {
    content: "";
    display: block;

    width: 40%;
    max-width: 18rem;
    height: 3px;
    margin: 0.9rem auto 0;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.0),
        rgba(255,215,0,0.85),
        rgba(255,255,255,0.0)
    );

    border-radius: 3px;
}

/* =========================================================================================================================== */

/* SUBTAB CONTAINER BASE */
.subtab-container {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center; /* Alles zentrieren */
    font-size: 1rem;    /* Basisgröße für Subtabs */
}

/* =========================================================================================================================== */

/* Text */
.subtab-section p {
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: #f0f0f0;
}

/* =========================================================================================================================== */

/* Footer zentrieren und Farbe setzen */
footer { 
    z-index: 1000;
    text-align: center; 
    margin-top: 1.25rem; 
    color: #fff; 
}



/* =========================================================================================================================== */
/* =========================================================================================================================== */
/* =========================================================================================================================== */



/* =========================================================================================================================== */
/*                                            🧩 TYPOGRAPHY MOBILE                                                             */
/*                                            📍 static/css/typography.css                                                     */
/* =========================================================================================================================== */

@media (max-width: 768px) {

    /* ======================================================================================================================= */
    /*                                      📍 Used in: ABOUT BITCOIN • TREASURIES • MARKET CAP                                */
    /* ======================================================================================================================= */

    /* Subtab Title */
    .subtab-title {
        font-size: 1.4rem;
        line-height: 1.3;
        letter-spacing: 0.03em;
        margin-bottom: 1.2rem;
    }

    .subtab-title::after {
        width: 60%;
        height: 2px;
        margin-top: 0.6rem;
    }

    /* TEXT */
    .subtab-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* CONTAINER */
    .subtab-container {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    /* FOOTER */
    footer {
        font-size: 0.75rem;
        margin-top: 1rem;
    }

}