/* 
 * 澳根尼會館 (AUGANIC) - 特色體驗頁面樣式
 */

/* Experience Intro Section */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Experience Details Section */
.experience-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 60px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.experience-item:last-child {
    margin-bottom: 0;
}

.experience-item:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
    direction: rtl;
}

.experience-item:nth-child(even) .experience-content {
    direction: ltr;
}

.experience-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-item:hover .experience-image img {
    transform: scale(1.05);
}

.experience-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.experience-content p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    background-color: rgba(84, 92, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

.experience-note {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Custom Experience Section */
.custom-experience {
    background-color: var(--gray);
}

.custom-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.custom-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.custom-info p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.custom-info ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.custom-info ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.custom-info .btn {
    margin-top: 10px;
}

.custom-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 400px;
}

.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.custom-image:hover img {
    transform: scale(1.05);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .experience-item,
    .experience-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .experience-image {
        height: 300px;
    }
    
    .custom-content {
        grid-template-columns: 1fr;
    }
    
    .custom-image {
        height: 350px;
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .experience-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .experience-features {
        grid-template-columns: 1fr;
    }
    
    .experience-content {
        padding: 20px;
    }
    
    .experience-content h3 {
        font-size: 1.5rem;
    }
}