/* 全域樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 導覽列 */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b4513;
}

/* 頁首橫幅 */
.page-header {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* 左上角 BH logo */
.header-logo-left {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 2;
}

.bh-logo {
    height: 120px;
    width: auto;
    transition: transform 0.3s;
}

.bh-logo:hover {
    transform: scale(1.05);
}

/* 右側橫幅 */
.header-banner-right {
    margin-left: auto;
    z-index: 2;
    background-color: rgba(255, 253, 240, 0.95);
    border-radius: 100px 200px 100px 200px;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.character-img {
    width: 150px;
    height: auto;
}

.category-title {
    font-size: 32px;
    font-weight: bold;
    color: #555;
    margin: 0;
    white-space: nowrap;
}

/* 主要內容 */
.award-content {
    padding: 40px 0;
}

/* 得獎資訊卡片 */
.award-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.card-header {
    background: linear-gradient(135deg, #d2b48c, #bc9a6b);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.award-level {
    background-color: rgba(255,255,255,0.3);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.card-body {
    padding: 30px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row.full-width {
    grid-template-columns: 150px 1fr;
}

.info-label {
    font-weight: bold;
    color: #8b4513;
    font-size: 16px;
}

.info-value {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

/* 內容區塊 */
.content-section {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #8b4513;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #d2b48c;
}

.section-content {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 15px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* 按鈕群組 */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #d2b48c, #bc9a6b);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #bc9a6b, #a0825a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: #fff;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.btn-secondary:hover {
    background-color: #8b4513;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* 頁尾 */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 30px 0 0 0;
    text-align: center;
    margin-top: 60px;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
}

.browser-note {
    font-size: 12px;
    color: #bdc3c7;
    margin-top: 10px;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .page-header {
        height: auto;
        min-height: 250px;
    }
    
    .header-content {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .header-logo-left {
        position: static;
        margin-bottom: 20px;
    }
    
    .bh-logo {
        height: 80px;
    }
    
    .header-banner-right {
        flex-direction: column;
        margin-left: 0;
        padding: 20px 30px;
        border-radius: 50px 100px 50px 100px;
    }
    
    .character-img {
        width: 100px;
    }
    
    .category-title {
        font-size: 20px;
        white-space: normal;
        text-align: center;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

