﻿




/*stylish font title--------------------------------------------*/

/* Container spacing */
.stylishfonttitle-outer-container {
    width: 100%;
    padding: 30px 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 55px;
}

/* Thicker Silver Metallic Bars */
.stylishfonttitle-silver-bar {
    width: 100%;
    /* Thicker height for visibility */
    height: 3px;
    /* Multi-stop gradient for a polished chrome/silver look */
    background: linear-gradient(90deg, transparent 0%, rgba(170, 170, 170, 0.4) 10%, rgba(255, 255, 255, 0.9) 50%, rgba(170, 170, 170, 0.4) 90%, transparent 100%);
    /* Adds a soft silver glow around the bar */
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* Text Wrapper */
.stylishfonttitle-header-box {
    padding: 50px 20px;
    text-align: center;
}

/* The Stylish Font */
.stylishfonttitle-text {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2rem, 8vw, 4rem);
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 300;
    line-height: 1.2;
    /* Soft shadow to keep text readable against any background */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

    /* Accent Word Styling */
    .stylishfonttitle-text span {
        color: #e0e0e0; /* Light silver-white */
        font-style: italic;
        font-weight: 400;
        letter-spacing: 0.05em;
        position: relative;
    }

/* Mobile Devices */
@media (max-width: 768px) {
    .stylishfonttitle-silver-bar {
        height: 2px; /* Slightly thinner on mobile to stay elegant */
    }

    .stylishfonttitle-header-box {
        padding: 40px 15px;
    }

    .stylishfonttitle-text {
        letter-spacing: 0.15em;
    }
}




/*team member lst display-----------------------------*/

:root {
    --tm-primary: #6366f1;
    --tm-dark: #0f172a;
    --tm-accent: #818cf8;
    --tm-text: #64748b;
    --tm-white: #ffffff;
}

.teammembercard-section {
    padding: 0px 0px;
    background: transparent;
    font-family: 'Inter', system-ui, sans-serif;
}

.teammembercard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.teammembercard-header {
    text-align: center;
    margin-bottom: 60px;
}

.teammembercard-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--tm-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.teammembercard-subtitle {
    font-size: 1rem;
    color: var(--tm-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
}

/* Grid Layout */
.teammembercard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.teammembercard-item {
    background: var(--tm-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

    .teammembercard-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

/* Image Interaction */
.teammembercard-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.teammembercard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teammembercard-item:hover .teammembercard-img {
    transform: scale(1.1);
}

.teammembercard-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transition: bottom 0.3s ease;
}

.teammembercard-item:hover .teammembercard-socials {
    bottom: 0;
}

.teammembercard-social-link {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--tm-primary);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

    .teammembercard-social-link:hover {
        background: var(--tm-accent);
    }

/* Info Section */
.teammembercard-info {
    padding: 25px;
    text-align: center;
}

.teammembercard-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tm-dark);
    margin: 0 0 5px 0;
}

.teammembercard-position {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tm-primary);
    margin-bottom: 15px;
}

.teammembercard-bio {
    font-size: 0.9rem;
    color: var(--tm-text);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .teammembercard-grid {
        gap: 25px;
    }

    .teammembercard-image-wrapper {
        height: 280px;
    }

    .teammembercard-socials {
        bottom: 0; /* Always visible on mobile for better UX */
        background: transparent;
    }

    .teammembercard-social-link {
        background: rgba(99, 102, 241, 0.8);
    }
}









