/* ==========================================================================
   1. 基礎設定 & 全域變數
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang TC', 'Helvetica Neue', 'Helvetica', 'Arial', 'Microsoft JhengHei', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #fcfbfa;
    color: #4a3e3d;
    line-height: 1.7;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    position: relative;
    font-weight: 500;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #c8b195;
    margin: 15px auto 0;
}

/* ==========================================================================
   2. 導覽列 (Header)
   ========================================================================== */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-weight: bold;
    font-size: 1.1rem;
    color: #4a3e3d;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease-in-out;
}

nav a {
    text-decoration: none;
    color: #4a3e3d;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #c8b195;
}

.nav-btn {
    background-color: #4a3e3d;
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #c8b195;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    padding: 0;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #4a3e3d;
    transition: all 0.3s ease;
}

/* ==========================================================================
   3. 首頁主視覺 (Hero Section) - 預設本機 PNG 格式背景圖與優化定位
   ========================================================================== */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('hero-bg.png') no-repeat center 30%/cover;
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #4a3e3d;
    padding: 15px 40px;
    font-size: 1.05rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #c8b195;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   4. 關於我區塊 (About Section)
   ========================================================================== */
#about {
    background-color: #ffffff;
    text-align: center;
}

#about p {
    max-width: 750px;
    margin: 0 auto 15px;
    font-size: 1.1rem;
    color: #5a4e4d;
}

#about a {
    color: #c8b195;
    text-decoration: none;
    border-bottom: 1px solid #c8b195;
    font-weight: bold;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

#about a:hover {
    color: #4a3e3d;
    border-color: #4a3e3d;
}

/* ==========================================================================
   5. 專業經歷區塊 (Experience Section)
   ========================================================================== */
#experience {
    background-color: #f7f4f0;
}

#experience ul {
    max-width: 500px;
    margin: 0 auto;
    list-style: none;
}

#experience li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a3e3d;
    text-align: left;
}

#experience li::before {
    content: '✦';
    position: absolute;
    left: 5px;
    color: #c8b195;
    font-size: 1.1rem;
}

/* ==========================================================================
   6. 服務項目區塊 (Services Section)
   ========================================================================== */
#services {
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background-color: #fcfbfa;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(74,62,61,0.03);
    border-top: 4px solid #c8b195;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74,62,61,0.08);
}

.service-card h3 {
    color: #4a3e3d;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.95rem;
    color: #6e605f;
    text-align: justify;
}

.service-card strong {
    color: #c8b195;
}

/* ==========================================================================
   7. 預約與店家資訊卡片區塊 (Booking Section)
   ========================================================================== */
#booking {
    text-align: center;
}

.booking-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.line-btn, .google-btn {
    flex: 1;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.line-btn {
    background-color: #06C755;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(6,199,85,0.2);
}

.line-btn:hover {
    background-color: #05b34c;
    transform: translateY(-2px);
}

.google-btn {
    background-color: #4285F4;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(66,133,244,0.15);
}

.google-btn:hover {
    background-color: #357ae8;
    transform: translateY(-2px);
}

/* 卡片式店家資訊容器 */
.info-card-container {
    background-color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(74, 62, 61, 0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    background-color: #faf9f6;
    border-radius: 8px;
    text-decoration: none;
    color: #4a3e3d;
    transition: all 0.25s ease;
}

.info-row-item.clickable:hover {
    background-color: #f2eee9;
}

.info-row-item.closure {
    background-color: #f7f4f0;
}

.info-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    font-size: 1.1rem;
    margin-right: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.info-text-box {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.info-text-box label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a39594;
    margin-bottom: 2px;
    font-weight: 500;
}

.info-text-box span {
    font-size: 1rem;
    color: #4a3e3d;
    font-weight: 400;
}

.info-text-box span em {
    font-style: normal;
    font-size: 0.85rem;
    color: #c8b195;
    margin-left: 8px;
    font-weight: 500;
}

/* ==========================================================================
   8. 頁尾 & 響應式佈局 (RWD < 768px)
   ========================================================================== */
footer {
    background-color: #4a3e3d;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    header {
        padding: 15px 25px;
    }
    
    .logo {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        height: 0;
        overflow: hidden;
        pointer-events: none;
    }

    nav.open {
        height: 280px; 
        pointer-events: auto;
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #f2eee9;
        font-size: 1rem;
    }

    .nav-btn {
        background-color: #4a3e3d;
        color: #ffffff !important;
        border-radius: 0;
        padding: 15px 0;
    }

    .booking-buttons-group {
        flex-direction: column;
        gap: 12px;
        padding: 0 5px;
    }

    .info-card-container {
	padding: 8px;margin: 
	0 5px;
    }

    .info-row-item {
	padding: 14px 16px;
    }

    .info-badge {
	width: 36px;height: 
	36px;margin-right: 
	14px;font-size: 1rem;
    }

    .info-text-box span {
	font-size: 0.95rem;
    }

    .info-text-box span em {
	display: block;
	margin-left: 0;
	margin-top: 2px;
	font-size: 0.8rem;
    }

    .container {
	padding: 60px 20px;
    }

    .hero-content h1 {
	font-size: 2.1rem;
	line-height: 1.35;
    }

    .hero-content p {
	font-size: 1rem;
    }
    }

