/* 全局樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft JhengHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #f0f4fa 0%, #d2ddef 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    line-height: 1.6;
}

/* 整體容器調整 */
.container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 50px 40px;
    text-align: center;
}

/* Logo 樣式 */
.logo {
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 50px;
    margin-bottom: 15px;
    color: #2c70b9;
    animation: pulse 2s infinite;
    text-shadow: 0 3px 10px rgba(44, 112, 185, 0.2);
}

.logo h1 {
    font-size: 2.5rem;
    color: #2c70b9;
    margin-bottom: 5px;
    font-weight: 600;
}

.logo h2 {
    font-size: 1.4rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 20px;
}

/* 信息區塊樣式 */
.message {
    margin-bottom: 30px;
    padding: 0 20px;
}

.message h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.message p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #666;
    line-height: 1.7;
}

/* 施工圖片區域 */
.construction-image {
    width: 100%;
    margin: 20px auto 30px;
    position: relative;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.construction-img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.8s ease;
    border-radius: 10px;
    opacity: 0.97;
    filter: brightness(1.02);
    box-shadow: 0 5px 20px rgba(44, 112, 185, 0.15);
}

.construction-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(44, 112, 185, 0.2);
}

.construction-img.loaded {
    opacity: 1;
}



/* 聯絡信息 */
.info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 1.1rem;
}

.info-item i {
    color: #2c70b9;
    font-size: 1.2rem;
}

/* 社交媒體圖標 */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #2c70b9;
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: #225a9c;
    box-shadow: 0 5px 15px rgba(44, 112, 185, 0.4);
}

/* 頁腳 */
.footer {
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
}

/* 齒輪動畫 */
.animation-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

.gear {
    position: absolute;
    color: rgba(44, 112, 185, 0.08);
    animation: rotate 10s linear infinite;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.05));
}

.gear-1 {
    top: 10%;
    right: 15%;
    font-size: 100px;
}

.gear-2 {
    bottom: 20%;
    left: 10%;
    font-size: 80px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.gear-3 {
    top: 60%;
    right: 5%;
    font-size: 60px;
    animation-duration: 12s;
}

/* 動畫效果 */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}



/* 響應式設計 */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo h2 {
        font-size: 1.2rem;
    }
    
    .message h2 {
        font-size: 1.5rem;
    }
    
    .info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo-icon {
        font-size: 40px;
    }
    
    .progress-container {
        width: 90%;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}