/* 企業官網展示頁面樣式 - 重新設計 */
.business-website-container {
    min-height: 100vh;
    padding: 40px 0 60px;
    position: relative;
}

.business-header {
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 40px;
    position: relative;
}

.business-logo {
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-image {
    max-width: 180px;
    max-height: 180px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    background: white;
    padding: 10px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.business-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.business-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 0;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.business-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.business-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.business-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.content-section {
    margin-bottom: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #3498db;
    font-size: 1.5rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #34495e;
    text-align: justify;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text h1, .content-text h2, .content-text h3 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-text ul, .content-text ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-text a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
    transition: color 0.3s ease;
}

.content-text a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.menu-image {
    text-align: center;
    margin-top: 20px;
}

.menu-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-img:hover {
    transform: scale(1.02);
}

/* 動畫效果 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 響應式設計 */
@media (max-width: 768px) {
    .business-website-container {
        padding: 20px 0 40px;
    }
    
    .business-header {
        padding: 40px 15px 30px;
        margin-bottom: 30px;
    }
    
    .business-title {
        font-size: 2rem;
    }
    
    .business-subtitle {
        font-size: 1.1rem;
    }
    
    .business-content-card {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .logo-image {
        max-width: 120px;
        max-height: 120px;
    }
}

