
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft JhengHei', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

/* 導航欄樣式 */
header {
    background-color: #000;
    box-shadow: 0 2px 5px rgba(255,255,255,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ccc;
}

/* 主要內容區域 */
main {
    padding-top: 180px;
    padding-left: 5%;
    padding-right: 5%;
    min-height: 100vh;
}

section {
    margin-bottom: 4rem;
    padding: 3rem 0;
}

/* 英雄區域 */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background-color: #111;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #333;
    color: #fff;
}

.btn.primary:hover {
    background-color: #444;
}

.btn.secondary {
    background-color: #222;
    color: #fff;
}

.btn.secondary:hover {
    background-color: #333;
}

/* 關於我們區域 */
.about {
    background-color: #000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1rem;
    color: #ccc;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #ccc;
}

/* 願景與使命 */
.vision {
    background-color: #111;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-item {
    padding: 2rem;
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(255,255,255,0.1);
}

.vision-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.vision-item p {
    color: #ccc;
}

/* 投資機會 */
.investment {
    background-color: #000;
}

.investment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.investment-text {
    margin-bottom: 2rem;
}

.investment-text h3 {
    color: #fff;
}

.investment-text ul {
    list-style: none;
    margin-top: 1rem;
}

.investment-text li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #ccc;
}

.investment-text li:before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
}

.investment-cta {
    text-align: center;
}

/* 聯絡表單 */
.contact {
    background-color: #111;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info {
    background-color: #222;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(255,255,255,0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.contact-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.contact-details {
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1.1rem;
}

.contact-details strong {
    color: #fff;
    margin-right: 0.5rem;
}

.contact-message {
    text-align: center;
    color: #ccc;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.contact-message p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* 頁腳 */
footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* 靈感來源 */
.inspiration {
    background-color: #000;
}

.inspiration-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.inspiration-text {
    background-color: #222;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(255,255,255,0.1);
}

.inspiration-text h2 {
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.inspiration-text p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.inspiration-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.inspiration-text ul li {
    color: #ccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.inspiration-text ul li:before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
}

/* 漢堡選單按鈕 */
button.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

button.menu-toggle:focus {
    outline: none;
}

button.menu-toggle .bar {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

/* 響應式設計 */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }

    nav {
        flex-direction: column;
        padding: 0.5rem;
    }

    button.menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #000;
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    main {
        padding-top: 80px;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-content {
        padding: 1rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .inspiration-content {
        padding: 1rem;
    }

    .inspiration-text {
        padding: 2rem;
    }
} 
