/* main.css：風格與 chineseindex.css 一致的主頁樣式 */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Microsoft JhengHei', sans-serif;
  }
  
  body {
    /* background-color: #f5a2ea; */
    display: flex;
    justify-content: center;
  }
  
  .Wrapper {
    width: 100%;
    /* max-width: 1400px; */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  header {
    width: 100%;
    height: 85px;
    background-color: #6f81f4cf;
    display: flex;
    align-items: center;
    padding: 0 60px;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85px; /* 與 header 高度一致 */
  }
  
  .aa {
    max-width: 600px;
    height: auto;
    display: block;
  }
  

  /* =========關於本網站======== */
  .lead {
    font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif !important; 
    font-weight: bolder !important;
    font-size: 1..5rem;
    line-height: 2;
    color: #5a4c3d;
    max-width: 90%;
    margin: 0 auto;
    text-align: center; /* 左右平均分散 */
    text-justify: inter-ideograph;
    background-color: #d5d9f7cf;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }

  .site-intro h2,
  .latest-events h2 {
    color: #392F5A;
    font-weight: bolder !important;
  }
  .past-events h2 {
    color: #392F5A;
    font-weight: bolder !important;
  }
  
  .card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000000;
  }
  
  .card-text {
    font-size: 1rem;
    color: #555;
  }
  
  .btn-brand {
    background-color: #6f81f4f5 ; 
    border: none;
    color: #fcfcfc;
    transition: background-color .5s ease, color .5s ease, box-shadow .5s ease;
  }

  a.btn.btn-brand:hover,
  button.btn.btn-brand:hover{
    background-color:#9bc5fff5 ; /* 懸浮色 */
    color:#000;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
  }
  