/* 全域重置與基礎樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 顏色系統定義 - 以 #E60000 優化紅色為主色 */
:root {
    /* 主色系 - 優化紅色階 */
    --primary-color: #E60000;
    --primary-light: #FF1A1A;
    --primary-dark: #B30000;
    --primary-ultra-light: #FFE6E6;
    
    /* 次要色系 - 深紅色階 */
    --secondary-color: #990000;
    --secondary-light: #B30000;
    --secondary-dark: #660000;
    
    /* 中性色系 */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* 語意色彩 */
    --success-color: #4CAF50;
    --success-light: #81C784;
    --success-dark: #388E3C;
    
    --warning-color: #FF9800;
    --warning-light: #FFB74D;
    --warning-dark: #F57C00;
    
    --error-color: #F44336;
    --error-light: #E57373;
    --error-dark: #D32F2F;
    
    /* 字體系統 */
    --font-primary: 'Cinzel Decorative', cursive; /* 奇幻神秘字體 */
    --font-secondary: 'Noto Sans TC', sans-serif; /* 中文內文字體 */
    --font-mono: 'Courier New', monospace; /* 程式碼字體 */
    
    /* 間距系統 */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* 圓角系統 */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* 陰影系統 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* 動畫時間 */
    --transition-fast: 0.15s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7; /* 提升可讀性 */
    color: var(--gray-800);
    overflow-x: hidden;
    background-color: var(--gray-50);
}

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

/* 導覽列樣式 - 使用珊瑚紅色系 */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

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

.nav-logo h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal) ease;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: all var(--transition-normal) ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* 首頁橫幅 */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('B08A00_P_01_02.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal) ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow) ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

/* 通用區塊樣式 */
.section {
    padding: 80px 0;
}

.section-bg {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    text-shadow: 2px 2px 4px rgba(224, 63, 79, 0.1);
    letter-spacing: 0.05em;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(224, 63, 79, 0.3);
}

/* 關於光復區塊 */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal) ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.stat-item h3 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(224, 63, 79, 0.2);
}

.stat-item p {
    color: var(--gray-700);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 鄉長介紹區塊 */
.mayor-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.mayor-image {
    text-align: center;
    position: sticky;
    top: 100px;
}

.mayor-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.mayor-image img:hover {
    transform: scale(1.05);
}

.mayor-info {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.mayor-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.mayor-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mayor-title {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

.mayor-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mayor-bio,
.mayor-vision,
.mayor-achievements,
.mayor-contact {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mayor-bio:hover,
.mayor-vision:hover,
.mayor-achievements:hover,
.mayor-contact:hover {
    transform: translateY(-5px);
}

.mayor-bio h3,
.mayor-vision h3,
.mayor-achievements h3,
.mayor-contact h3 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.mayor-bio h3::after,
.mayor-vision h3::after,
.mayor-achievements h3::after,
.mayor-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-full);
}

.mayor-bio p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.1rem;
}

.mayor-vision ul {
    list-style: none;
    padding: 0;
}

.mayor-vision li {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.mayor-vision li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.mayor-vision strong {
    color: var(--primary-color);
    font-weight: 600;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.achievement-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-normal) ease;
    box-shadow: var(--shadow-sm);
}

.achievement-item:hover {
    background: var(--primary-ultra-light);
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.achievement-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.achievement-item p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.5;
}

.mayor-contact p {
    color: var(--gray-700);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.mayor-contact strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 商品卡片 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal) ease;
    border: 2px solid transparent;
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-price {
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-family: var(--font-primary);
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-normal) ease;
    font-weight: bold;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.add-to-cart {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-normal) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow) ease;
}

.add-to-cart:hover::before {
    left: 100%;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.cart-icon {
    font-size: 1.2rem;
}

/* 購物車區塊 */
.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart h3 {
    color: #666;
    margin-bottom: 1rem;
}

.empty-cart p {
    color: #999;
    margin-bottom: 2rem;
}

.continue-shopping {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-normal) ease;
    box-shadow: var(--shadow-md);
}

.continue-shopping:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item-details h4 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-total {
    text-align: right;
}

.cart-item-total-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.remove-item {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.remove-item:hover {
    background: #c82333;
}

.cart-summary {
    height: fit-content;
}

.summary-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.summary-card h3 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.summary-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 1rem 0;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-normal) ease;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow) ease;
}

.checkout-btn:hover::before {
    left: 100%;
}

.checkout-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.clear-cart-btn {
    width: 100%;
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-cart-btn:hover {
    background: #dc3545;
    color: white;
}

/* 支付方式樣式 */
.payment-section {
    margin: 2rem 0;
}

.payment-section h4 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-method {
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    display: block;
    background: white;
}

.payment-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 63, 79, 0.1);
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method input[type="radio"]:checked + .payment-option {
    border-color: var(--primary-color);
    background: var(--primary-ultra-light);
}

.payment-method input[type="radio"]:checked + .payment-option .payment-icon {
    transform: scale(1.1);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-info {
    flex: 1;
}

.payment-name {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.payment-desc {
    display: block;
    color: var(--gray-700);
    font-size: 0.9rem;
}

/* 響應式設計 - 支付方式 */
@media (max-width: 768px) {
    .payment-methods {
        gap: 0.6rem;
    }
    
    .payment-method {
        padding: 0.8rem;
    }
    
    .payment-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .payment-name {
        font-size: 1rem;
    }
    
    .payment-desc {
        font-size: 0.8rem;
    }
}

/* 景點卡片 */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal) ease;
    border: 2px solid transparent;
    position: relative;
}

.attraction-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.attraction-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* 文化特色 */
.culture-content {
    display: grid;
    gap: 2rem;
}

.culture-item {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    transition: all var(--transition-normal) ease;
    position: relative;
}

.culture-item:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: var(--primary-ultra-light);
}

.culture-item h3 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.culture-item p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* 美食網格 */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.food-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal) ease;
    text-align: center;
    border: 2px solid transparent;
}

.food-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.food-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.food-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.food-card p {
    padding: 0 1rem 1rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* 聯絡資訊 */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-normal) ease;
}

.contact-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-item h3 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-normal) ease;
}

.contact-form:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 63, 79, 0.1);
}

.contact-form button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal) ease;
    box-shadow: var(--shadow-md);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow) ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* 頁尾 */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark), var(--primary-light));
}

footer p {
    margin-bottom: 0.5rem;
}

/* 動畫效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 響應式設計 - 手機優先 */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content,
    .mayor-content,
    .cart-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .attractions-grid,
    .food-grid {
        grid-template-columns: 1fr;
    }
    
    .mayor-image {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .mayor-bio,
    .mayor-vision,
    .mayor-achievements,
    .mayor-contact {
        padding: 1.5rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .culture-item,
    .contact-item,
    .contact-form {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .nav-logo h1 {
        font-size: 1.5rem;
    }
}
