/**
 * Staff Profiles Page Styles
 * Styles for the faculty members / staff profiles page
 */

/* Card hover effects */
.faculty-member-card {
    transition: transform 0.3s ease;
}

.faculty-member-card:hover {
    transform: translateY(-5px);
}

.faculty-member-card .card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.faculty-member-card .card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.faculty-member-card .card.no-content {
    cursor: default;
}

.faculty-member-card .card.no-content:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Button hover effects */
.faculty-member-card .btn-outline-secondary {
    transition: all 0.3s ease;
}

.faculty-member-card .card:hover .btn-outline-secondary {
    background-color: var(--u-pink);
    border-color: var(--u-pink);
    color: white;
}

.faculty-member-card .card.no-content:hover .btn-outline-secondary {
    background-color: transparent;
    border-color: #6c757d;
    color: #6c757d;
}

.faculty-member-card .btn-outline-secondary.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Avatar styles */
.faculty-avatar-wrapper {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.faculty-avatar {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.faculty-avatar-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--u-pink) 0%, var(--u-dark-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.faculty-avatar-placeholder i {
    font-size: 3.5rem;
}

.faculty-member-card,
.faculty-member-card .card {
    padding-top: 70px;
}

/* Decorative shapes */
.decorative-shape-cluster {
    position: absolute;
    width: 250px;
    height: 250px;
    z-index: 0;
}

.decorative-shape-cluster.bottom-right {
    bottom: -50px;
    right: -50px;
}

.shape-blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.25;
}

.shape-pink {
    width: 180px;
    height: 180px;
    background-color: var(--u-pink);
    bottom: 0;
    right: 0;
    transform: rotate(25deg);
}

.shape-yellow {
    width: 120px;
    height: 120px;
    background-color: var(--u-yellow);
    bottom: 80px;
    right: 100px;
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    transform: rotate(-15deg);
}

.shape-green {
    width: 90px;
    height: 90px;
    background-color: var(--u-green);
    bottom: 40px;
    right: 180px;
    border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
    transform: rotate(45deg);
}

/* Mobile responsive styles */
@media (max-width: 767.98px) {
    .faculty-member-card {
        padding-top: 50px;
    }

    .faculty-avatar,
    .faculty-avatar-placeholder {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .faculty-avatar-placeholder i {
        font-size: 2.5rem;
    }

    .faculty-member-card .card {
        padding-top: 50px;
    }

    /* Hide decorative shapes on mobile for cleaner design */
    .decorative-shape-cluster {
        display: none;
    }
}
