﻿ @charset "utf-8";
/* CSS Document */

    /* 導覽列 (玻璃透視感) */
    .glass-header {
      background: rgb(0 102 204);
      border-bottom: 1px solid rgba(30, 41, 59, 0.8);
      margin: 0px;
      padding: 0;
      border: none;
    }
    .navbar-brand img {
      /* height: 24px; */
      display: inline-block;
    }
    .navbar-default .navbar-nav > li > a {
       color: #fff;
       font-weight: 500;
       transition: color 0.3s;
    }
    .navbar-default .navbar-nav > li > a:hover {
      color: #c3e1ff; 
    }

    .navbar-nav a{
       color: #fff;
      font-weight: 500;
      transition: color 0.3s;
    }


    .navbar-default .navbar-toggle {
      border-color: transparent;
    }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #ffffff;
    }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: transparent;
    }
    
    /* 導覽列按鈕 */
    .nav-btn-unlock {
      background-color: rgb(255 255 255 / 30%);
      /* color: #fff !important; */
      /* font-weight: bold; */
      /* border-radius: 50px; */
      /* padding: 8px 20px !important; */
      /* margin-top: 8px; */
      /* margin-left: 15px; */
      /* box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.2); */
      /* transition: all 0.3s ease; */
    }
    .nav-btn-unlock:hover {
      background-color: #d97706;
      transform: translateY(-1px);
    }

    /* 首圖區塊 (Hero Section) */
    .hero-section {
      position: relative;
      min-height: 560px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 60px 15px 120px 15px;
    }
    
    /* 背景光暈效果 */
    .glow-blue {
      position: absolute;
      top: 25%;
      left: 10%;
      width: 280px;
      height: 280px;
      background: rgba(59, 130, 246, 0.2);
      border-radius: 50%;
      filter: blur(60px);
      animation: pulse 3s infinite;
      z-index: 1;
    }
    .glow-amber {
      position: absolute;
      bottom: 10%;
      right: 10%;
      width: 380px;
      height: 380px;
      background: rgba(245, 158, 11, 0.15);
      border-radius: 50%;
      filter: blur(60px);
      z-index: 1;
    }
    
    @keyframes pulse {
      0% { opacity: 1; }
      50% { opacity: 0.6; }
      100% { opacity: 1; }
    }

    /* 首圖內容層級 */
    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
    }
    
    /* 標籤小丸子 */
    .badge-crown {
      display: inline-block;
      border: 1px solid rgba(251, 191, 36, 0.3);
      background: rgba(255, 255, 255, 0.05);
      color: #fcd34d;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 1px;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .hero-subtitle {
      font-size: 20px;
      color: #cbd5e1;
      font-weight: 300;
      margin-bottom: 15px;
    }
    
    @media (max-width: 768px) {
      .hero-title { font-size: 32px; }
      .nav-btn-unlock { margin-left: 0; display: inline-block; margin-bottom: 15px; }
    }

    /* 按鈕樣式 */
    .btn-action-primary {
      /* background-color: #f59e0b; */
      color: #020617;
      font-weight: bold;
      padding: 15px 32px;
      border-radius: 12px;
      font-size: 16px;
      border: none;
      margin: 10px 5px;
      transition: all 0.3s;
      box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.25);
    }
    .btn-action-primary:hover {
      /* background-color: #d97706; */
      color: #020617;
      transform: translateY(-2px);
    }
    .btn-action-secondary {
      background-color: transparent;
      color: #ffffff;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 12px;
      font-size: 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      margin: 10px 5px;
      transition: all 0.3s;
    }
    .btn-action-secondary:hover {
      background-color: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      transform: translateY(-2px);
    }



    .navbar-brand {
    float: left;
    height: 50px;
    padding: 0;
    /* font-size: 18px; */
    line-height: 20px;
}