html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html, body {
    height: 100%;
}

@font-face {
    font-family: 'Magz';
    src: url('/fonts/Magz.otf') format('opentype');
}

/* 針對 About 頁面背景的樣式 */
.about-page-full-bg {
    /* flex-grow: 1; 確保它佔滿父容器（main）的所有可用空間 */
    flex-grow: 1;
    /* 背景圖片樣式 */
    background-size: cover; /* 覆蓋整個容器，可能會裁剪圖片邊緣 */
    background-position: center center; /* 圖片居中顯示 */
    background-repeat: no-repeat; /* 不重複背景圖片 */
    /* 確保即使內容很少，背景區塊也有足夠的高度 */
    /* 因為 main 已經 flex-grow-1，這裡設置 min-height 可以作為後備或視覺調整 */
    /* 如果您想讓背景圖至少是完整螢幕高度減去 header/footer */
    /* 可以這樣計算：min-height: calc(100vh - var(--header-height, 0px) - var(--footer-height, 0px)); */
    /* 更簡單直接的方式是讓它充滿 Flexbox 空間 */
}

    /* 可以為文字內容提供一個半透明背景，讓文字在圖片上更容易閱讀 */
    /* 這裡應用到 about-page-full-bg 內的 .container，與圖片上的文字相對應 */
    .about-page-full-bg .container {
        background-color: rgba(0, 0, 0, 0.4); /* 黑色半透明背景 */
        padding: 30px; /* 內邊距 */
        border-radius: 8px; /* 圓角 */
        /* 確保容器寬度不會太窄或太寬，Bootstrap col 已經處理了 */
        max-width: 900px; /* 範例：限制文字內容區的最大寬度 */
        margin-left: 20px; /* 範例：讓文字內容區塊稍微向左偏移 */
    }

/* 之前設定的連結底線移除樣式，確保還在 */
.list-unstyled a,
.list-group-item a {
    text-decoration: none;
}

/* 確保 h6 的粗體樣式生效 */
.fw-bold {
    font-weight: bold;
}

/*jquery verify alert css*/
label.error {
    /*background: url("/images/unchecked.gif") no-repeat 0px 0px;
    padding-left: 0px;
    padding-bottom: 0px;*/
    font-weight: bold;
    color: #EA5200;
    font-size: 0.9rem;
}
