/* Custom Enhancements for The Paatashala */

/* Import Brand Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Body Typography */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Headings with Cinzel */
h1,
h2,
h3 {
    font-family: 'Cinzel', serif !important;
}

/* Enhanced Team Section */
#team-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.team-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(38, 36, 100, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.team-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(38, 36, 100, 0.2);
}

/* Gradient accent bar on top */
.team-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #262464 0%, #4845a8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.team-item:hover::before {
    transform: scaleX(1);
}

/* Image Styling */
.team-item img.rounded-circle {
    width: 160px !important;
    height: 160px !important;
    object-fit: cover;
    border: 5px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(38, 36, 100, 0.15);
    transition: all 0.4s ease;
    margin: 30px auto 0;
    display: block;
}

.team-item:hover img.rounded-circle {
    transform: scale(1.1);
    border-color: #262464;
}

/* Text Container */
.team-item .team-text {
    position: relative !important;
    padding: 25px 20px 30px !important;
    background: #ffffff !important;
    text-align: center !important;
    width: 100% !important;
    height: auto !important;
    border: none !important;
    border-radius: 0 !important;
    bottom: auto !important;
    right: auto !important;
    display: block !important;
}

/* Team Member Name - Keep original colors */
.team-item .team-text h3 {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    /* color: #262464 !important; - REMOVED to restore original */
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    transition: all 0.3s ease !important;
}

/* .team-item:hover .team-text h3 {
    background: linear-gradient(135deg, #262464 0%, #4845a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

/* Position/Role - Keep original colors */
.team-item .team-text .text-primary {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    /* color: #FF6B9D !important; - REMOVED to restore original */
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 10px !important;
}

/* Qualification Text */
.team-item .team-text p small {
    color: #565759 !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
}

/* Experience Bullets */
.team-item .team-text .mb-2 small {
    display: inline-block !important;
    padding: 5px 0 !important;
    color: #6c757d !important;
    font-size: 0.85rem !important;
}

/* Social Icons */
.team-item .team-text .d-flex.align-items-center {
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 15px !important;
}

.team-item .btn-square {
    width: 38px !important;
    height: 38px !important;
    background: linear-gradient(135deg, #262464 0%, #4845a8 100%) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.team-item .btn-square:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(38, 36, 100, 0.3);
}

/* Primary Color Updates - REMOVED to restore original orange buttons */
/* .text-primary {
    color: #262464 !important;
}

.btn-primary {
    background: linear-gradient(135deg, #262464 0%, #4845a8 100%) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 36, 100, 0.3) !important;
} */

/* Card Background */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Section Headings - REMOVED to restore original styling */
/* .container-fluid h1 {
    color: #262464;
    position: relative;
    display: inline-block;
}

.container-fluid h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B9D 0%, #262464 100%);
    border-radius: 2px;
} */