/* ==========================================================================
   Intro Page Styles - 細說期遇頁面樣式
   ========================================================================== */

/* Page-specific customizations for intro page */

/* Main Content Styles */
.intro-main {
    margin-top: 2rem;
}

/* Vision Section */
.vision-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vision-content {
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #7c9bb5;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7c9bb5, #9bb0c4);
    border-radius: 2px;
}

.vision-text {
    max-width: 900px;
    margin: 0 auto;
}

.vision-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a453f;
    margin-bottom: 1.5rem;
    text-align: left;
}

.vision-description strong {
    color: #7c9bb5;
    font-weight: 600;
}

/* Environment Section */
.environment-section {
    padding: 4rem 0;
    background: #fff;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.environment-item {
    text-align: center;
}

.environment-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(124, 155, 181, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.environment-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(124, 155, 181, 0.25);
}

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

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

.environment-title {
    font-size: 1.3rem;
    color: #7c9bb5;
    margin-top: 1.5rem;
    font-weight: 500;
}

/* Design Section */
.design-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #a8b8c8 0%, #b8c7d6 100%);
    color: #fff;
}

.design-content {
    text-align: center;
}

.design-section .section-title {
    color: #fff;
}

.design-section .section-title::after {
    background: rgba(255, 255, 255, 0.6);
}

.design-description {
    max-width: 800px;
    margin: 0 auto;
}

.design-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 155, 181, 0.1);
}

.feature-item:nth-child(even) {
    direction: rtl;
}

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

.feature-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #7c9bb5;
}

.feature-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

.feature-content {
    padding: 1rem;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #7c9bb5;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a453f;
}

/* Equipment Section */
.equipment-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #7c9bb5 0%, #9bb0c4 100%);
    color: #fff;
    position: relative;
}

.equipment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.equipment-section .container {
    position: relative;
    z-index: 2;
}

.equipment-section .section-title {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.equipment-section .section-title::after {
    background: rgba(255, 255, 255, 0.8);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.equipment-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.5);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
}

.equipment-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.equipment-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Page-specific CTA customizations - intro頁面使用淺色調 */

/* 響應式設計 */

/* 平板 */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .environment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-item:nth-child(even) {
        direction: ltr;
    }
    
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

/* 手機 */
@media (max-width: 768px) {
    .vision-section,
    .environment-section,
    .design-section,
    .features-section,
    .equipment-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .environment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .environment-image {
        height: 250px;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-item {
        padding: 2rem 1rem;
    }
}

/* 小手機 */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .vision-description {
        font-size: 1rem;
    }
    
    .environment-image {
        height: 200px;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .equipment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .equipment-title {
        font-size: 1.1rem;
    }
    
    .equipment-description {
        font-size: 0.9rem;
    }
} 