File size: 14,382 Bytes
7156808
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>์‹œ๊ฐ๋””์ž์ธ์—… - ์ผ€์ด๋ฏธ๋””์–ด</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');
        body { font-family: 'Noto Sans KR', sans-serif; scroll-behavior: smooth; }
        .glass-effect { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); }
        .gradient-text { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
        .mosaic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
        .mosaic-item { border-radius: 1rem; overflow: hidden; position: relative; transition: transform .4s ease; }
        .mosaic-item:hover { transform: scale(1.05) rotate(-1deg); }
        .mosaic-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(102,126,234,.2), rgba(118,75,162,.2)); opacity: 0; transition: opacity .4s; }
        .mosaic-item:hover::after { opacity: 1; }
        .morph-card { background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%); border-radius: 2rem; padding: 2.5rem; position: relative; overflow: hidden; }
        .morph-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(102,126,234,.1) 0%, transparent 70%); transform: rotate(30deg); transition: transform .6s; }
        .morph-card:hover::before { transform: rotate(0deg) scale(1.2); }
        .neon-btn { background: linear-gradient(45deg, #667eea, #764ba2); color: #fff; border: none; padding: .75rem 1.5rem; border-radius: 999px; font-weight: 600; position: relative; overflow: hidden; z-index: 1; }
        .neon-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, #fff, #fff); opacity: 0; transition: opacity .3s; z-index: -1; }
        .neon-btn:hover::before { opacity: .2; }
        .floating { animation: float 4s ease-in-out infinite; }
        @keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }
    </style>
</head>
<body class="bg-gray-50 text-gray-800">
    <!-- Navigation -->
    <nav class="fixed w-full z-50 glass-effect py-4 px-6">
        <div class="container mx-auto flex justify-between items-center">
            <a href="index.html" class="text-2xl font-bold text-white">KMedia</a>
            <div class="hidden md:flex space-x-8">
                <a href="about.html" class="text-white hover:text-purple-200 transition">ํšŒ์‚ฌ์†Œ๊ฐœ</a>
                <a href="index.html#business" class="text-white hover:text-purple-200 transition">์‚ฌ์—…์˜์—ญ</a>
                <a href="index.html#promotion" class="text-white hover:text-purple-200 transition">ํ™๋ณด๋งˆ๋‹น</a>
                <a href="index.html#communication" class="text-white hover:text-purple-200 transition">์†Œํ†ต๋งˆ๋‹น</a>
            </div>
            <button class="md:hidden text-white"><i data-feather="menu"></i></button>
        </div>
    </nav>

    <!-- Hero -->
    <section class="relative pt-32 pb-20 bg-gradient-to-br from-purple-600 via-indigo-600 to-indigo-700 text-white overflow-hidden">
        <div class="absolute -top-20 -left-20 w-96 h-96 bg-purple-500 rounded-full opacity-20 blur-3xl floating"></div>
        <div class="absolute -bottom-16 -right-16 w-80 h-80 bg-indigo-500 rounded-full opacity-20 blur-3xl floating" style="animation-delay: 2s;"></div>
        <div class="container mx-auto px-6 text-center relative z-10">
            <h1 class="text-4xl md:text-6xl font-bold mb-6" data-aos="fade-up">์‹œ๊ฐ๋””์ž์ธ์—…</h1>
            <p class="text-xl md:text-2xl max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="100">
                ๊ธฐ์—…๊ณผ ์ƒํ’ˆ์˜ ๋ธŒ๋žœ๋“œ ๊ฐ€์น˜๋ฅผ ์‹œ๊ฐ์ ์œผ๋กœ ํ‘œํ˜„ํ•˜๊ณ  ๊ฐ๋™์„ ์ „ํ•ฉ๋‹ˆ๋‹ค
            </p>
        </div>
    </section>

    <!-- Philosophy -->
    <section class="py-20 bg-white">
        <div class="container mx-auto px-6">
            <div class="max-w-4xl mx-auto text-center mb-16" data-aos="fade-up">
                <h2 class="text-3xl font-bold mb-6">์‹œ๊ฐ์œผ๋กœ ์ „ํ•˜๋Š” ๊ฐ๋™</h2>
                <p class="text-lg text-gray-600 leading-relaxed">
                    ์ผ€์ด๋ฏธ๋””์–ด๋Š” ๋‹จ์ˆœํžˆ ์˜ˆ์œ ๋””์ž์ธ์„ ๋„˜์–ด, ๋ธŒ๋žœ๋“œ์˜ ์ด์•ผ๊ธฐ์™€ ๊ฐ€์น˜๋ฅผ
                    ์‹œ๊ฐ์  ์–ธ์–ด๋กœ ํ’€์–ด๋‚ด์–ด ํƒ€๊นƒ์—๊ฒŒ ๊นŠ์€ ๊ฐ๋™์„ ์ „๋‹ฌํ•ฉ๋‹ˆ๋‹ค.
                </p>
            </div>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="morph-card text-center box-3d" data-aos="zoom-in">
                    <div class="relative z-10">
                        <div class="inline-block p-4 rounded-2xl bg-indigo-100 mb-4"><i data-feather="eye" class="text-indigo-600 text-2xl"></i></div>
                        <h3 class="text-xl font-bold mb-2">์‹ฌ๋ฏธ์  ์™„์„ฑ๋„</h3>
                        <p class="text-gray-600 text-sm">์™„์„ฑ๋„ ๋†’์€ ์‹œ๊ฐ ํ‘œํ˜„์œผ๋กœ ๋ธŒ๋žœ๋“œ ํ’ˆ๊ฒฉ์„ ๋†’์ž…๋‹ˆ๋‹ค</p>
                    </div>
                </div>
                <div class="morph-card text-center box-3d" data-aos="zoom-in" data-aos-delay="100">
                    <div class="relative z-10">
                        <div class="inline-block p-4 rounded-2xl bg-purple-100 mb-4"><i data-feather="target" class="text-purple-600 text-2xl"></i></div>
                        <h3 class="text-xl font-bold mb-2">์ „๋žต์  ์ ‘๊ทผ</h3>
                        <p class="text-gray-600 text-sm">๋ธŒ๋žœ๋“œ ์ „๋žต์— ๊ธฐ๋ฐ˜ํ•œ ํšจ๊ณผ์  ์‹œ๊ฐ ์ปค๋ฎค๋‹ˆ์ผ€์ด์…˜</p>
                    </div>
                </div>
                <div class="morph-card text-center box-3d" data-aos="zoom-in" data-aos-delay="200">
                    <div class="relative z-10">
                        <div class="inline-block p-4 rounded-2xl bg-pink-100 mb-4"><i data-feather="heart" class="text-pink-600 text-2xl"></i></div>
                        <h3 class="text-xl font-bold mb-2">๊ฐ์„ฑ์  ์—ฐ๊ฒฐ</h3>
                        <p class="text-gray-600 text-sm">๊ฐ์„ฑ์„ ์ž๊ทนํ•˜๋Š” ๋””์ž์ธ์œผ๋กœ ์†Œ๋น„์ž์™€์˜ ๊นŠ์€ ์—ฐ๊ฒฐ</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Mosaic Portfolio -->
    <section class="py-20 bg-gray-50">
        <div class="container mx-auto px-6">
            <h2 class="text-3xl font-bold text-center mb-12" data-aos="fade-up">Portfolio Mosaic</h2>
            <div class="mosaic-grid" data-aos="fade-up">
                <div class="mosaic-item h-40 bg-gradient-to-br from-purple-400 to-indigo-500 flex items-end p-4 text-white font-semibold">Brand Identity</div>
                <div class="mosaic-item h-56 bg-gradient-to-br from-indigo-400 to-purple-500 flex items-end p-4 text-white font-semibold">Package Design</div>
                <div class="mosaic-item h-40 bg-gradient-to-br from-pink-400 to-purple-500 flex items-end p-4 text-white font-semibold">Editorial Design</div>
                <div class="mosaic-item h-48 bg-gradient-to-br from-indigo-500 to-pink-400 flex items-end p-4 text-white font-semibold">Web Graphic</div>
                <div class="mosaic-item h-56 bg-gradient-to-br from-purple-500 to-indigo-400 flex items-end p-4 text-white font-semibold">Poster Design</div>
                <div class="mosaic-item h-40 bg-gradient-to-br from-pink-500 to-indigo-500 flex items-end p-4 text-white font-semibold">Logo Design</div>
                <div class="mosaic-item h-48 bg-gradient-to-br from-indigo-400 to-pink-500 flex items-end p-4 text-white font-semibold">UI/UX Design</div>
                <div class="mosaic-item h-48 bg-gradient-to-br from-purple-400 to-pink-500 flex items-end p-4 text-white font-semibold">Motion Graphic</div>
            </div>
        </div>
    </section>

    <!-- Service Spectrum -->
    <section class="py-20 bg-white">
        <div class="container mx-auto px-6">
            <h2 class="text-3xl font-bold text-center mb-12" data-aos="fade-up">Design Spectrum</h2>
            <div class="max-w-5xl mx-auto grid md:grid-cols-2 gap-8">
                <div data-aos="fade-right">
                    <img src="http://static.photos/studio/640x360/1" alt="Studio" class="rounded-2xl shadow-lg w-full">
                </div>
                <div class="flex flex-col justify-center space-y-4" data-aos="fade-left">
                    <div class="flex items-start"><span class="inline-block px-3 py-1 rounded-full bg-indigo-100 text-indigo-700 text-xs font-bold mr-3 mt-1">01</span><div><h4 class="font-bold">Brand Identity</h4><p class="text-gray-600 text-sm">๋กœ๊ณ , ์ปฌ๋Ÿฌ, ํƒ€์ดํฌ, ํŒจํ„ด๊นŒ์ง€ ํ†ตํ•ฉ ๋ธŒ๋žœ๋“œ ์‹œ์Šคํ…œ ์„ค๊ณ„</p></div></div>
                    <div class="flex items-start"><span class="inline-block px-3 py-1 rounded-full bg-purple-100 text-purple-700 text-xs font-bold mr-3 mt-1">02</span><div><h4 class="font-bold">Package Design</h4><p class="text-gray-600 text-sm">์ œํ’ˆ์˜ ๋งค๋ ฅ์„ ๊ทน๋Œ€ํ™”ํ•˜๋Š” ์ฐฝ์˜์  ํŒจํ‚ค์ง€ ๋””์ž์ธ</p></div></div>
                    <div class="flex items-start"><span class="inline-block px-3 py-1 rounded-full bg-pink-100 text-pink-700 text-xs font-bold mr-3 mt-1">03</span><div><h4 class="font-bold">Promotion Design</h4><p class="text-gray-600 text-sm">ํฌ์Šคํ„ฐ, ๋ฐฐ๋„ˆ, ๋ธŒ๋กœ์…” ๋“ฑ ํ”„๋กœ๋ชจ์…˜ ์ „๋ฐ˜์˜ ์‹œ๊ฐ๋ฌผ</p></div></div>
                    <div class="flex items-start"><span class="inline-block px-3 py-1 rounded-full bg-gray-100 text-gray-700 text-xs font-bold mr-3 mt-1">04</span><div><h4 class="font-bold">UI/UX Design</h4><p class="text-gray-600 text-sm">์‚ฌ์šฉ์ž ๊ฒฝํ—˜์„ ๊ณ ๋ คํ•œ ์ธํ„ฐํŽ˜์ด์Šค ๋””์ž์ธ</p></div></div>
                </div>
            </div>
        </div>
    </section>

    <!-- Work Flow -->
    <section class="py-20 bg-gray-50">
        <div class="container mx-auto px-6">
            <h2 class="text-3xl font-bold text-center mb-12" data-aos="fade-up">Design Journey</h2>
            <div class="max-w-4xl mx-auto grid grid-cols-2 md:grid-cols-4 gap-6">
                <div class="text-center box-3d bg-white p-4 rounded-2xl" data-aos="zoom-in"><div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-3"><i data-feather="edit-3" class="text-indigo-600"></i></div><h4 class="font-bold">Sketch</h4><p class="text-xs text-gray-500">์•„์ด๋””์–ด ์Šค์ผ€์น˜</p></div>
                <div class="text-center box-3d bg-white p-4 rounded-2xl" data-aos="zoom-in" data-aos-delay="100"><div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-3"><i data-feather="layout" class="text-purple-600"></i></div><h4 class="font-bold">Design</h4><p class="text-xs text-gray-500">์‹œ๊ฐ์  ๊ตฌํ˜„</p></div>
                <div class="text-center box-3d bg-white p-4 rounded-2xl" data-aos="zoom-in" data-aos-delay="200"><div class="w-14 h-14 bg-pink-100 rounded-full flex items-center justify-center mx-auto mb-3"><i data-feather="message-circle" class="text-pink-600"></i></div><h4 class="font-bold">Feedback</h4><p class="text-xs text-gray-500">ํ”ผ๋“œ๋ฐฑ ๋ฐ˜์˜</p></div>
                <div class="text-center box-3d bg-white p-4 rounded-2xl" data-aos="zoom-in" data-aos-delay="300"><div class="w-14 h-14 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-3"><i data-feather="check-circle" class="text-green-600"></i></div><h4 class="font-bold">Launch</h4><p class="text-xs text-gray-500">์ตœ์ข… ์™„์„ฑ</p></div>
            </div>
        </div>
    </section>

    <!-- CTA -->
    <section class="py-20 bg-gradient-to-r from-purple-600 to-indigo-600 text-white">
        <div class="container mx-auto px-6 text-center">
            <h2 class="text-3xl md:text-4xl font-bold mb-6" data-aos="fade-up">๋‹น์‹ ์˜ ๋ธŒ๋žœ๋“œ๋ฅผ ๋น›๋‚˜๊ฒŒ ํ•  ๋””์ž์ธ์„ ๋งŒ๋‚˜๋ณด์„ธ์š”</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">์ง€๊ธˆ ๋ฐ”๋กœ ์ƒ๋‹ด์„ ์‹ ์ฒญํ•˜์‹œ๋ฉด ์ „๋ฌธ ๋””์ž์ด๋„ˆ๊ฐ€ ํ•จ๊ป˜ํ•ฉ๋‹ˆ๋‹ค.</p>
            <div class="flex flex-col sm:flex-row justify-center gap-4" data-aos="fade-up" data-aos-delay="200">
                <button class="neon-btn">๋ฌด๋ฃŒ ์ƒ๋‹ด ์‹ ์ฒญ</button>
                <button class="neon-btn bg-transparent border-2 border-white">ํฌํŠธํด๋ฆฌ์˜ค ๋ณด๊ธฐ</button>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-12">
        <div class="container mx-auto px-6">
            <div class="grid md:grid-cols-4 gap-8">
                <div><h4 class="text-lg font-semibold mb-4">KMedia</h4><p class="text-gray-400">์‚ฌ๋žŒ ์ค‘์‹ฌ์˜ ์ฐฝ์˜์ ์ธ ๋ฏธ๋””์–ด ์†”๋ฃจ์…˜</p></div>
                <div><h4 class="text-lg font-semibold mb-4">์—ฐ๋ฝ์ฒ˜</h4><p class="text-gray-400">Tel: 02-1234-5678</p><p class="text-gray-400">Email: info@kmedia.com</p></div>
                <div><h4 class="text-lg font-semibold mb-4">์ฃผ์†Œ</h4><p class="text-gray-400">์„œ์šธํŠน๋ณ„์‹œ ๊ฐ•๋‚จ๊ตฌ ํ…Œํ—ค๋ž€๋กœ 123</p></div>
                <div><h4 class="text-lg font-semibold mb-4">Follow Us</h4><div class="flex space-x-4"><a href="#" class="text-gray-400 hover:text-white"><i data-feather="facebook"></i></a><a href="#" class="text-gray-400 hover:text-white"><i data-feather="instagram"></i></a><a href="#" class="text-gray-400 hover:text-white"><i data-feather="twitter"></i></a><a href="#" class="text-gray-400 hover:text-white"><i data-feather="linkedin"></i></a></div></div>
            </div>
            <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400"><p>ยฉ 2023 KMedia. All rights reserved.</p></div>
        </div>
    </footer>

    <script>
        AOS.init({ duration: 1000, once: true });
        feather.replace();
    </script>
</body>
</html>