﻿/* 基礎樣式 */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 89, 182, 0.1);
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(155, 89, 182, 0.15);
    }

.value-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-description {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.95rem;
}

.design-item {
    transition: all 0.3s ease;
}

    .design-item:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(155, 89, 182, 0.1);
    }

.certificate-frame:hover, .logo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.2);
}

/* 動畫效果 */
@@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scale-in {
    animation: scale-in 0.8s ease-out;
}

@@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 徽章圖片響應式優化 */
.logo-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* logo-container 響應式 padding 與排版 */
.logo-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(155, 89, 182, 0.15);
    border: 2px solid rgba(155, 89, 182, 0.1);
    max-width: 350px;
    margin: 0 auto;
}



.text-gradient {
    background: linear-gradient(135deg, #8E44AD, #9B59B6, #AF7AC5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-alumni-primary {
    color: #8E44AD;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* 響應式設計 */
@@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .origin-text-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .value-card, .design-item {
        padding: 1.5rem;
    }

    .certificate-frame {
        margin-bottom: 1.5rem;
    }

    .logo-container {
        padding: 0.75rem;
        max-width: 90vw;
    }

    .logo-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .design-item {
        margin-bottom: 1rem;
    }
}
