<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>TaiwanLiving.com</title>
    <link rel="stylesheet" href="css/styles.css">
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
    <style>
        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #FAF9F6;
            color: #333;
            line-height: 1.6;
        }

        header {
            background-color: #5B7553;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo {
            height: 60px;
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
        }

        nav a:hover {
            text-decoration: underline;
        }

        .intro {
            text-align: center;
            padding: 80px 20px;
        }

        .intro h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #5B7553;
        }

        .intro h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #54A4D3;
        }

        .intro p {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        footer {
            background-color: #5B7553;
            color: #fff;
            text-align: center;
            padding: 15px 10px;
            margin-top: 40px;
            font-size: 0.9rem;
        }

        @media (max-width: 600px) {
            nav ul {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
        }
    </style>
</head>
<body>
    <header>
        <img src="images/logo.png" alt="TaiwanLiving.com Logo" class="logo">
        <nav>
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="blog.html">Blog</a></li>
                <li><a href="about.html">About</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <section class="intro">
            <h1>Welcome to TaiwanLiving.com</h1>
            <h2>Industry • Education • Traditions</h2>
            <p>Welcome to TaiwanLiving.com — your guide to life on the beautiful island of Taiwan, where modern innovation, rich traditions, and stunning nature coexist.</p>
        </section>
    </main>

    <footer>
        <p>&copy; 2025 TaiwanLiving.com — All rights reserved.</p>
    </footer>
</body>
</html>
