﻿
/* 全域樣式 */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: white;
    text-align: center;
}

/* 頁首 */
.header {
    background-image: url('/images/bk02.jpg'); /* 設定背景圖片 */
    background-repeat: repeat-x; /* 僅在 X 軸方向重複 */
    background-position: center top; /* 確保圖片從頂部中央開始 */
    background-size: auto 100%; /* 讓高度充滿 header，寬度自動調整 */
    opacity: 0.95;
    padding: 15px 20px; /* 調整 padding 讓選單靠近邊緣 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.header .logo {
    margin-left: 20px;
}

.header .logo img {
    height: 80px;
}

.header nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 45px;
    margin: 30px 0 0 0; 0 0 0; /* 讓選單文字稍微上移 */
}

/* 調整選單文字顯眼度，字體稍微縮小，移除底線 */
.header nav ul li a {
    color: #FFEA00; /* 更亮的金黃色 */
    font-weight: bold;
    font-size: 1.5em; /* 縮小字體 */
    text-decoration: none; /* 移除底線 */
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 1.2), 5px 5px 10px rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
}


.header nav ul li a:hover {
    color: #FFD700; /* 懸停時更深的金黃色 */
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 1.0); /* 陰影仍然不擴散 */
}

/* 影片與賣場連結區塊 */
.content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 50px 20px;
}

.video-section {
    width: 60%;
}

.video-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    border: none;
}

.marketplace-section {
    width: 30%;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

.marketplace-section h2 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.marketplace-section ul {
    list-style: none;
    padding: 0;
}

.marketplace-section ul li {
    margin: 10px 0;
}

.marketplace-section ul li a {
    display: block;
    padding: 10px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.marketplace-section ul li a:hover {
    background: #FFD700;
    color: #000;
}
/* 英雄區
/* 英雄區 */
.he {
    padding: 80px 20px;
    background: linear-gradient(135deg, #002244, #004488);
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-in-out;
}
/* 英雄區 */
.products-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #002244, #004488);
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-in-out;
}

/* 產品列表 */
.products-list {
    padding: 50px 20px;
    background: linear-gradient(180deg, #111, #222);
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.5);
    width: 70%;
    margin: auto;
    border-radius: 10px;
}

.product-item {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1.2em;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(255, 204, 0, 0.8);
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 10px 20px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #ffaa00;
}

;
    background: linear-gradient(180deg, #222, #333);
    text-align: center;
}

.featured-products h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffcc00;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.product {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    font-size: 1.2em;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(255, 204, 0, 0.8);
}

.product-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.promo-text {
    font-size: 1em;
    color: #ffeb3b;
    font-weight: bold;
    margin-top: 10px;
}

/* 促銷區 */
.promotions {
    padding: 50px 20px;
   

/* 促銷區 */
.promotions {
    padding: 50px 20px;
    background: linear-gradient(180deg, #222, #333);
    font-size: 1.5em;
    font-weight: bold;
    color: #ffcc00;
}

/* 頁尾 */
footer {
    background: #000;
    padding: 20px;
    font-size: 1em;
    box-shadow: 0px -2px 10px rgba(255, 255, 255, 0.2);
}

/* 動畫效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* 英雄區 */
.contact-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #002244, #004488);
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-in-out;
}

/* 聯絡表單 */
.contact-form {
    padding: 50px 20px;
    background: linear-gradient(180deg, #111, #222);
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.5);
    width: 60%;
    margin: auto;
    border-radius: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    background: #ffcc00;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #ffaa00;
}

/* 公司資訊 */
.contact-info {
    padding: 50px 20px;
    background: linear-gradient(180deg, #222, #333);
    font-size: 1.2em;
}

/* 最新消息列表 */
.news-list {
    padding: 50px 20px;
    background: linear-gradient(180deg, #111, #222);
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.5);
    width: 70%;
    margin: auto;
    border-radius: 10px;
}

.news-item {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1.2em;
    text-align: left;
    box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(255, 204, 0, 0.8);
}

.news-date {
    display: block;
    text-align: right;
    font-size: 0.9em;
    color: #ffcc00;
    margin-top: 10px;
}