/* 體驗頁面專用樣式 */
body {
    background-color: #000000;
    background-image: radial-gradient(rgba(50, 50, 50, 0.3) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* 英雄區塊樣式 */
.experience-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(157, 80, 187, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* 卡片網格樣式 */
.experience-cards {
    padding: 50px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* 卡片樣式 */
.card {
    background-color: #0a0a0a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(157, 80, 187, 0.3);
}

.card-image {
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    background-color: #ffffff;
    color: #333333;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333333;
}

.card-price {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b6b, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.card:nth-child(1) .card-price {
    background: linear-gradient(135deg, #ff6b6b, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card:nth-child(2) .card-price {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card:nth-child(3) .card-price {
    background: linear-gradient(135deg, #9733ee, #da22ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card:nth-child(4) .card-price {
    background: linear-gradient(135deg, #f857a6, #ff5858);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-details {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #666666;
}

.card-details p {
    margin: 5px 0;
}

.btn-booking {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.card:nth-child(1) .btn-booking {
    background: linear-gradient(135deg, #ff6b6b, #cc0000);
}

.card:nth-child(2) .btn-booking {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
}

.card:nth-child(3) .btn-booking {
    background: linear-gradient(135deg, #9733ee, #da22ff);
}

.card:nth-child(4) .btn-booking {
    background: linear-gradient(135deg, #f857a6, #ff5858);
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 預約須知區塊 */
.experience-info {
    padding: 70px 0;
    background-color: rgba(10, 10, 10, 0.8);
    margin-top: 50px;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.info-content ul {
    text-align: left;
    margin-bottom: 40px;
    display: inline-block;
}

.info-content li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.info-content li i {
    color: #7A5FFF;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .card-image {
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
    }
}