/* 價單頁面專用樣式 */

/* 背景圖片設定 - 使用不同的背景圖片 */
@media (min-width: 769px) {
    .bg-image {
        background-image: url('../img/price-list/bg.jpg') !important;
    }
}

@media (max-width: 768px) {
    .bg-image {
        background-image: url('../img/price-list/bg-m.jpg') !important;
    }
}

/* 英雄區域 - 價單頁面 */
.pricelist-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 15px;
    padding: 40px 20px;
    background: linear-gradient(135deg, 
        rgba(10, 37, 64, 0.85) 0%, 
        rgba(16, 65, 90, 0.8) 50%, 
        rgba(22, 93, 116, 0.75) 100%);
    box-shadow: 
        inset 0 0 100px rgba(255, 255, 255, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.2);
}

.pricelist-hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out 0.5s forwards;
}

.pricelist-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); */
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricelist-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 60px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: 500;
}

/* 價單按鈕 - 單一按鈕 */
.pricelist-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricelist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.primary-pricelist-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: 2px solid #2ecc71;
}

.primary-pricelist-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

/* 按鈕動畫效果 */
.btn-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.primary-pricelist-btn:hover .btn-wave {
    animation: wave 1s ease-out;
}

@keyframes wave {
    0% {
        transform: scale(0.15, 0.15);
        opacity: 1;
    }
    100% {
        transform: scale(30, 30);
        opacity: 0;
    }
}

.footer-note {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* 響應式設計 */
@media (max-width: 992px) {
    .pricelist-hero-title {
        font-size: 2.8rem;
    }
    
    .pricelist-hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .pricelist-hero-section {
        min-height: 70vh;
        padding: 30px 15px;
    }
    
    .pricelist-hero-title {
        font-size: 2.3rem;
    }
    
    .pricelist-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    .pricelist-buttons {
        max-width: 350px;
    }
    
    .pricelist-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricelist-hero-section {
        min-height: 65vh;
    }
    
    .pricelist-hero-title {
        font-size: 2rem;
    }
    
    .pricelist-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .pricelist-buttons {
        max-width: 300px;
        gap: 20px;
    }
    
    .pricelist-btn {
        padding: 16px 30px;
        font-size: 0.95rem;
    }
}
