body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #f7f7f7;
            color: #333;
        }

        header {
            background: #000;
            color: #fff;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header h1 {
            margin: 0;
            font-size: 14px;
            letter-spacing: 1px;
        }

        nav a {
            color: #fff;
            margin-left: 20px;
            text-decoration: none;
            font-size: 16px;
        }

        .site-title {
            color: #fff;
            margin-right: 20px;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
        }

        p {
        font-size: 20px;
        line-height: 1.6;
        color: #333;
        }

        .hero {
            height: 15vh;
            background: url("cherryblossem.jpeg") center/cover no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-shadow: 0 4px 15px rgba(0,0,0,0.7);
            font-size: 40px;
            font-weight: bold;
        }

        .section-title {
            text-align: center;
            margin: 50px 0 20px;
            font-size: 32px;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            padding: 0 40px 40px;
        }

        .portfolio-grid img {
            width: 100%;
            border-radius: 6px;
            object-fit: cover;
        }

        /* Blog Section */
        .blog-container {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .blog-post {
            background: #fff;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .blog-post img {
            width: 100%;
            border-radius: 6px;
            margin-top: 15px;
        }

        .post-content {
        padding: 20px 30px;
        }

        .post-meta {
        padding: 20px 30px;
        }

        footer {
            background: #000;
            color: #fff;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }