https://www.kidora.com.tw/contact.html
初心儀式Kidora
https://www.kidora.com.tw/images/corpimg.png
桃園市
$
02-2771-8077
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--cream: #f5f1ed;
--gold: #d4a574;
--dark: #2c2416;
--light-gray: #e8e4df;
--accent-gold: #c8956a;
}
body {
font-family: 'Crimson Text', 'Georgia', serif;
background: linear-gradient(135deg, var(--cream) 0%, #faf7f3 100%);
color: var(--dark);
line-height: 1.8;
}
/* Header Section */
.header {
padding: 60px 40px;
text-align: center;
border-bottom: 2px solid var(--light-gray);
}
.header h1 {
font-size: 3.2rem;
margin-bottom: 12px;
font-weight: 400;
letter-spacing: 2px;
color: var(--dark);
}
.header .subtitle {
font-size: 1.2rem;
color: var(--accent-gold);
font-weight: 300;
}
/* Main Content */
.container {
max-width: 900px;
margin: 0 auto;
padding: 60px 40px;
}
/* Brand Story Section */
.story-section {
background: white;
padding: 40px;
border-radius: 12px;
margin-bottom: 40px;
border-left: 5px solid var(--gold);
box-shadow: 0 2px 12px rgba(212, 165, 116, 0.08);
}
.story-section h2 {
font-size: 1.8rem;
margin-bottom: 25px;
color: var(--dark);
font-weight: 400;
}
.story-content {
font-size: 1.05rem;
color: #5a5047;
line-height: 2;
margin-bottom: 25px;
}
.story-content .highlight {
color: var(--accent-gold);
font-weight: 600;
}
.divider {
width: 60px;
height: 2px;
background: var(--gold);
margin: 30px 0;
}
/* Core Beliefs Section */
.beliefs-section {
background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0.04) 100%);
padding: 40px;
border-radius: 12px;
margin-bottom: 40px;
}
.beliefs-section h3 {
font-size: 1.5rem;
margin-bottom: 25px;
color: var(--dark);
font-weight: 400;
text-align: center;
}
.beliefs-list {
font-size: 1.1rem;
color: #5a5047;
line-height: 2.2;
text-align: center;
}
.beliefs-list .item {
margin: 15px 0;
}
/* Services Section */
.services-section {
background: white;
padding: 40px;
border-radius: 12px;
margin-bottom: 40px;
border-top: 5px solid var(--gold);
box-shadow: 0 2px 12px rgba(212, 165, 116, 0.08);
}
.services-section h3 {
font-size: 1.5rem;
margin-bottom: 30px;
color: var(--dark);
font-weight: 400;
}
.service-item {
margin-bottom: 20px;
padding: 15px;
background: rgba(212, 165, 116, 0.05);
border-left: 3px solid var(--accent-gold);
border-radius: 4px;
}
.service-item strong {
color: var(--accent-gold);
font-size: 1.05rem;
}
.service-item p {
color: #5a5047;
font-size: 0.95rem;
margin-top: 5px;
line-height: 1.7;
}
/* Vision Section */
.vision-section {
background: white;
padding: 40px;
border-radius: 12px;
margin-bottom: 40px;
border-left: 5px solid var(--gold);
text-align: center;
box-shadow: 0 2px 12px rgba(212, 165, 116, 0.08);
}
.vision-section h3 {
font-size: 1.6rem;
margin-bottom: 20px;
color: var(--dark);
font-weight: 400;
line-height: 2;
}
.vision-section p {
font-size: 1.05rem;
color: #5a5047;
line-height: 2;
}
/* Gallery Section */
.gallery-section {
margin-bottom: 40px;
}
.gallery-section h3 {
font-size: 1.5rem;
margin-bottom: 25px;
color: var(--dark);
font-weight: 400;
text-align: center;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.gallery-item {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(44, 36, 22, 0.05);
transition: all 0.3s ease;
}
.gallery-item:hover {
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(212, 165, 116, 0.12);
}
.gallery-item img {
width: 100%;
height: 250px;
object-fit: cover;
display: block;
}
.gallery-item .caption {
padding: 15px;
text-align: center;
font-size: 0.95rem;
color: var(--accent-gold);
font-weight: 500;
}
/* Contact Section */
.contact-section {
background: var(--gold);
color: white;
padding: 50px 40px;
border-radius: 8px;
text-align: center;
margin: 50px 0;
}
.contact-section h3 {
font-size: 1.6rem;
margin-bottom: 30px;
font-weight: 400;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 25px;
margin-bottom: 30px;
}
.contact-item {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 6px;
}
.contact-item h4 {
font-size: 0.95rem;
margin-bottom: 8px;
font-weight: 600;
}
.contact-item a {
color: white;
text-decoration: none;
font-size: 0.95rem;
word-break: break-all;
transition: opacity 0.3s ease;
}
.contact-item a:hover {
opacity: 0.8;
}
.contact-item .label {
font-size: 0.85rem;
opacity: 0.9;
margin-bottom: 5px;
}
/* Footer */
footer {
text-align: center;
padding: 30px 20px;
color: #8b7d6f;
font-size: 0.9rem;
border-top: 1px solid var(--light-gray);
background: rgba(255, 255, 255, 0.6);
}
/* Responsive */
@media (max-width: 768px) {
.header h1 {
font-size: 2.2rem;
}
.container {
padding: 40px 20px;
}
.story-section,
.services-section,
.vision-section {
padding: 25px;
}
.contact-section {
padding: 40px 20px;
}
.gallery-grid {
grid-template-columns: 1fr;
}
.story-content,
.beliefs-list {
font-size: 0.95rem;
}
}
關於Kidora
初心儀式
「初心」與「Kidora」
「初心」代表著一份純粹:
初為人父母的喜悅牽手走進婚禮的承諾學員踏上學習之路的熱情
「Kidora」來自Kid(孩子)與Aura(光環)象徵著家庭與人生儀式中閃耀的祝福光環
我們的信念
✨儀式是情感的凝聚
✨祝福是能被感受的氛圍
核心服務
到府抓周
陪伴寶寶與家人共度難忘的1歲時刻
婚禮文定迎娶
協助新人順利完成人生大事
主持與培訓課程
從實務到心法,讓更多人能將祝福傳遞下去
我們的願景
每一個與我們相遇的家庭與學員都能帶著祝福的光環走向自己最重要的時刻
我們的實踐
到府抓周服務
婚禮儀式主持
抓周主持培訓
講師:Jamie張潔咪老師
開啟對話
追蹤我們
Instagram
@jamiex0406
到府抓周諮詢
填寫表單
https://forms.gle/LsBozfW4ijmyuY1t5
到府文定迎娶諮詢
填寫表單
https://forms.gle/fWsQLPuVGTLVND8z5
抓周培訓課程
查看課程
https://portaly.cc/Jamiex0406
本網頁所載之內容之著作權歸Kidora所有,未經授權請勿轉載。
https://www.kidora.com.tw/
初心儀式Kidora