/* main.css：風格與 chineseindex.css 一致的主頁樣式 */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Microsoft JhengHei', sans-serif;
  }
  
  body {
    background-color: #FAE4B0;
    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: #F4D06F;
    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: 300px;
    height: auto;
    display: block;
  }
  

  /* =========關於本網站======== */
  .lead {
    font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif !important; 
    font-weight: bolder !important;
    font-size: 1.4rem;
    line-height: 2;
    color: #5a4c3d;
    max-width: 75%;
    margin: 0 auto;
    text-align: justify; /* 左右平均分散 */
    text-justify: inter-ideograph;
    background-color: #fff8df;
    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: #6B8496;
  }
  
  .card-text {
    font-size: 1rem;
    color: #555;
  }
  
  .btn-warning {
    background-color: #F4D06F;
    border: none;
    color: #392F5A;
  }
  .btn-warning:hover {
    background-color: #FFCA28;
    color: #000;
  }
  