/* =========================================================
   PB ABOUT HERO
   ========================================================= */
.pb-about-page h2 {
    color: #e1111a;
}
.pb-hero {
    position: relative;
    min-height: 65vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    padding-top: 100px;
}

.pb-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.1)
    );
}

.pb-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.pb-hero h1 {
    color: #fff;
    line-height: 1.3;

    text-shadow:
        0 2px 8px rgba(0,0,0,0.7),
        0 0 2px rgba(0,0,0,0.9);
}

.pb-hero p {
    color: #f0f0f0;
    margin-top: 12px;
    font-size: 1.1rem;

    text-shadow:
        0 2px 6px rgba(0,0,0,0.6);
}

/* =========================================================
   ONLY THIS PAGE NAV（🔥 精準打掉 transparent）
   ========================================================= */

/* 👉 直接打 .navbar.transparent（關鍵） */
.navbar.transparent {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.0)
    ) !important;

    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* 👉 文字 */
.navbar.transparent a {
    color: #fff !important;
}

/* 👉 hover */
.navbar.transparent a:hover {
    color: #e1111a !important;
}

/* PB Swiss Tools link color */
.pb-red-link {
    color: #e1111a;
    text-decoration: none !important;
}

.pb-red-link:hover {
    color: #c50f17; /* 深一點紅（可選） */
    text-decoration: none;
}