/* ========================================
   BEAUTIFUL CARD STYLES
   Professional, Modern, Minimalist Design
   ======================================== */

/* ===================== MINIMAL FLAT CARDS ===================== */
.card-minimal {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f4f8;
    cursor: pointer;
}

.card-minimal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.card-minimal-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-minimal-icon.general {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card-minimal-icon.admission {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.card-minimal-icon.career {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.card-minimal-icon.event {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.card-minimal-icon.urgent {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.card-minimal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-minimal-text {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-minimal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f4f8;
    font-size: 0.85rem;
    color: #a0aec0;
}

/* ===================== ELEVATED SHADOW CARDS ===================== */
.card-elevated {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-elevated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card-elevated:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-elevated:hover::before {
    transform: scaleX(1);
}

.card-elevated-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-elevated-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.card-elevated-meta {
    flex: 1;
}

.card-elevated-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #667eea;
    margin-bottom: 0.35rem;
    letter-spacing: 0.5px;
}

.card-elevated-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.card-elevated-time {
    font-size: 0.85rem;
    color: #a0aec0;
}

.card-elevated-content {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-elevated-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.card-elevated-action:hover {
    border-bottom-color: #667eea;
    gap: 0.75rem;
}

/* ===================== GRADIENT ACCENT CARDS ===================== */
.card-gradient {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f4f8;
}

.card-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.card-gradient-header {
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.card-gradient-body {
    padding: 2rem;
}

.card-gradient-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-gradient-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.card-gradient-text {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-gradient-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #f0f4f8;
    color: #667eea;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===================== BORDERED MINIMAL CARDS ===================== */
.card-bordered {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.card-bordered:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.card-bordered-icon-wrapper {
    position: relative;
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
}

.card-bordered-icon {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.card-bordered:hover .card-bordered-icon {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    transform: rotate(-5deg) scale(1.05);
}

.card-bordered-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.card-bordered-text {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================== LEADERSHIP CARDS ===================== */
.card-leadership {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-leadership:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.card-leadership-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.card-leadership-image::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.card-leadership-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.card-leadership-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.card-leadership-role {
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-leadership-message {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-left: 4px solid #667eea;
    border-radius: 6px;
}

.card-leadership-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.card-leadership-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
    text-decoration: none;
}

.card-leadership-social:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
}

/* ===================== NOTIFICATION TYPE COLORS ===================== */
.card-minimal-icon.general,
.card-elevated-image.general {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-minimal-icon.admission,
.card-elevated-image.admission {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-minimal-icon.career,
.card-elevated-image.career {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-minimal-icon.event,
.card-elevated-image.event {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card-minimal-icon.urgent,
.card-elevated-image.urgent {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 768px) {
    .card-minimal,
    .card-elevated,
    .card-gradient-body,
    .card-bordered {
        padding: 1.5rem;
    }

    .card-minimal-title,
    .card-elevated-title,
    .card-gradient-title {
        font-size: 1.1rem;
    }

    .card-elevated-header {
        gap: 1rem;
    }

    .card-elevated-image {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .card-leadership-image {
        height: 250px;
        font-size: 3.5rem;
    }

    .card-leadership-body {
        padding: 2rem 1.5rem;
    }
}

/* ===================== UTILITY CLASSES ===================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.cards-section {
    margin-bottom: 3rem;
}

.visibility-badge {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 0.75rem;
}

.visibility-badge.public {
    background: #d1fae5;
    color: #059669;
}

.visibility-badge.private {
    background: #fef3c7;
    color: #b45309;
}

.type-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: white;
}

.type-badge.type-general {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.type-badge.type-admission {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.type-badge.type-career {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.type-badge.type-event {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.type-badge.type-urgent {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
