:root {
    --primary-color: #f7b500;
    --text-color: #333;
    --bg-color: #fff;
    --orange-accent: #ffb028;
    --blue-dark: #1a2a44;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, 'PingFang TC', 'Heiti TC', 'Noto Sans TC', 'Microsoft JhengHei', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #f39800; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.logo a {
    color: #fff;
}

.main-nav {
    margin-left: auto;
    margin-right: 30px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--blue-dark);
}

.social-nav {
    display: flex;
    gap: 15px;
}

.social-nav a {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s;
}

.social-nav a:hover {
    color: var(--blue-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
    padding-top: 0;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content img,
.hero-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* General Sections */
.section-container {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300; /* 細體 */
    font-family: 'Helvetica Neue', 'Segoe UI', 'Noto Sans TC', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif; /* 無襯線體 */
    color: var(--blue-dark);
    position: relative;
    margin-bottom: 40px;
    text-align: left;
    transform: skewX(-15deg); /* 傾斜 15度 */
    display: inline-block; /* 確保 transform 正常運作 */
    letter-spacing: 0.3em; /* 字與字中間加空格 */
}

.section-title .bg-text {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    white-space: nowrap;
}

/* About Section */
.about-club {
    position: relative;
    padding-bottom: 120px;
}

.about-content {
    background: #f5f7fa;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 20px;
    color: var(--blue-dark);
}

.about-more {
    position: absolute;
    bottom: -60px;
    right: 20px;
}

.more-link {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--blue-dark);
    position: relative;
    padding-bottom: 5px;
}

.more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--blue-dark);
    transition: width 0.3s ease;
}

.more-link:hover::after {
    width: 0;
}

.arrow-line {
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: var(--blue-dark);
    position: relative;
    margin-left: 15px;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--blue-dark);
    border-right: 2px solid var(--blue-dark);
    transform: rotate(45deg);
}

/* About 頁面專屬設定 */
.about-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    /* 避免被 fixed header 擋住 */
    margin-top: 80px; 
}

.feature-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #ededed;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* 讓版面一致 */
    display: block;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.8rem;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Talent 頁面專屬設定 */
.talent-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px; 
    text-align: left;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 50px;
    justify-items: center;
}

.talent-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.talent-card:hover {
    transform: translateY(-10px);
}

.talent-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--bg-color);
    transition: box-shadow 0.3s ease;
}

.talent-card:hover .talent-img {
    box-shadow: 0 12px 25px rgba(243, 152, 0, 0.3); /* f39800 */
}

.talent-name {
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--blue-dark);
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* 個人介紹頁面 (Profile) */
.talent-profile {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 0 5%;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.profile-avatar img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--bg-color);
}

.profile-name {
    margin-top: 25px;
    font-size: 2.5rem;
    color: var(--blue-dark);
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.profile-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.profile-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 50px;
}

.profile-intro p {
    margin-bottom: 15px;
}

.profile-data {
    margin-top: 30px;
}

.data-title {
    font-size: 1.8rem;
    color: var(--blue-dark);
    margin-bottom: 20px;
    text-align: center;
    /* 繼承全域的無襯線字體，移除斜體 */
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-size: 1.1rem;
}

.data-table th {
    width: 100px;
    color: var(--blue-dark);
    font-weight: bold;
}

.data-table tr:first-child th,
.data-table tr:first-child td {
    border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f39800;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav.active {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .social-nav {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .intro-content {
        flex-direction: column;
    }

    .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-image {
        width: 100%;
    }
}
/* Footer */
.site-footer {
    background-color: #333333;
    color: #d3d3d3;
    font-family: sans-serif;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    box-sizing: border-box;
    width: 100%;
}
