/* 
Theme Name:		 Vocably Child
Theme URI:		 http://childtheme-generator.com/
Description:	 Vocably Child is a child theme of Vocably, created by ChildTheme-Generator.com
Author:			 BE Global
Author URI:		 http://childtheme-generator.com/
Template:		 vocably
Version:		 1.0.0
Text Domain:	 vocably-child
*/


/*
    Add your custom styles here
*/


.profile-content {
    width: 100%;
}
.card {
    width: 380px;
    perspective: 1000px;
    margin: 40px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
}

.card-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 24px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.07);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    overflow: hidden;
}

.card:hover .card-content {
    transform: rotateY(5deg) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.card-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25), transparent 50%);
    pointer-events: none;
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.card:hover .card-glow {
    opacity: 1;
}

.card-info {
    padding: 25px;
    position: relative;
}

.card-name {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.card-title {
    margin: 0 0 15px;
    font-size: 14px;
    color: #1e499f;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.detail {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

.card-bio {
    margin:0px;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #777;
}

.card-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.action-button {
    flex: 1;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-button svg {
    transition: transform 0.3s ease;
}

.action-button.primary {
    background: linear-gradient(135deg, #1e499f 0%, #4ea8de 100%);
    color: white;
}

.action-button.secondary {
    background: rgba(94, 96, 206, 0.1);
    color: #1e499f;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(94, 96, 206, 0.2);
}

.action-button:active {
    transform: translateY(-1px);
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover svg {
    transform: scale(1.1);
}

@media (max-width: 400px) {
    .card {
        width: 300px;
        height: 480px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-info {
        padding: 20px;
    }
    
    .card-name {
        font-size: 20px;
    }
    
    .card-bio {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .action-button {
        padding: 10px;
        font-size: 13px;
    }
}
