/* Custom styles for Hello Child Theme */

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

.scale {
    animation: scale 0.6s ease forwards;
}

/* Custom Heading Widget Styles */
.custom-heading-wrapper {
    margin-bottom: 20px;
}

.custom-heading {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.custom-subheading {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 16px;
    opacity: 0.8;
}

/* Custom Team Member Widget Styles */
.team-member-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-content {
    padding: 20px;
}

.team-member-name {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.team-member-position {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-bio {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.team-member-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 14px;
}

/* Custom utility classes */
.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-heading {
        font-size: calc(1.275rem + 0.3vw);
    }

    .team-member-content {
        padding: 15px;
    }

    .team-member-name {
        font-size: 18px;
    }
}

/* Additional custom styles can be added here */


