@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Playfair+Display:wght@600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #f7e8e0 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.menu-container {
    background: white;
    max-width: 800px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-header {
    background: linear-gradient(135deg, #d4a574 0%, #c89666 100%);
    padding: 50px 40px;
    text-align: center;
    color: white;
    position: relative;
    /* overflow: hidden; */
    background-image:
      linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
      url('images/top-banner.jpg');
    background-size: cover;
    background-position: center;
}

.menu-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

.menu-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.menu-header p {
    font-size: 1em;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.menu-content {
    padding: 50px 40px;
}

.menu-section {
    margin-bottom: 50px;
    animation: slideIn 0.6s ease-out forwards;
    opacity: 0;
}

.menu-section:nth-child(1) {
    animation-delay: 0.2s;
}

.menu-section:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0e5d8;
}

.section-icon {
    font-size: 2em;
    margin-right: 15px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #6b4423;
    font-weight: 600;
}

.section-info {
    background: linear-gradient(135deg, #fef8f3 0%, #fdf5ed 100%);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid #d4a574;
}

.section-info p {
    color: #8b6f47;
    font-size: 0.95em;
    font-weight: 500;
}

.menu-items {
    display: grid;
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    background: linear-gradient(135deg, #fff9f5 0%, #fff5ed 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
}

.item-bullet {
    color: #d4a574;
    font-size: 1.2em;
    margin-right: 12px;
    font-weight: bold;
}

.item-name {
    color: #4a4a4a;
    font-size: 1em;
    font-weight: 400;
}

.item-desc {
    color: #a88b5a;
    font-size: 0.92em;
}


        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #d4a574 0%, #c89666 100%);
            color: white;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(212, 165, 116, 0.5);
            background: linear-gradient(135deg, #e0b585 0%, #d4a574 100%);
        }
        
        .cta-button:active {
            transform: translateY(-1px);
        }

        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 15px 20px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            justify-content: center;
            animation: slideUp 0.5s ease-out;
        }

.sticky-cta .cta-button {
    width: 100%;
    max-width: 400px;
    padding: 16px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


@media (max-width: 600px) {
    .menu-header {
        padding: 40px 30px;
    }
    
    .menu-header h1 {
        font-size: 2em;
    }
    
    .menu-content {
        padding: 40px 30px;
    }
    
    .section-title h2 {
        font-size: 1.5em;
    }
    .cta-button {
        padding: 16px 40px;
        font-size: 1em;
    }
            
            
    .sticky-cta .cta-button {
        padding: 14px 30px;
        font-size: 0.95em;
    }
}


/* 社群 ICON 區塊連結樣式 */
.social-icons a {
    text-decoration: none;
    position: relative;
    z-index: 2;
}