/* Main Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    font-size: 0.875rem;
    line-height: 1.4;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: none;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 1rem;
}

.footer {
    margin-top: 2rem;
    padding: 1rem 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

/* Dashboard Styles */
.upload-area {
    border: 2px dashed #ddd;
    border-radius: 5px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #aaa;
    background-color: #f9f9f9;
}

/* Transcript View Styles */
.transcript-meta {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
}

/* Custom styles that extend Tailwind */

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.2s ease;
}
.hover-lift:hover {
    transform: translateY(-2px);
}

/* Custom scrollbar for webkit browsers */
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Animated gradient backgrounds */
.animated-gradient {
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Custom focus styles */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3);
}

/* Landing Page Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    z-index: -1;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background-color: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1.25rem;
    left: 1.25rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(14, 165, 233, 0.1);
    line-height: 1;
}

.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover::after {
    transform: translateX(100%);
}

/* Compact UI Styles */
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.text-compact {
    line-height: 1.3;
}

.p-compact {
    padding: 0.5rem 0.75rem;
}

.m-compact {
    margin: 0.5rem 0.75rem;
}

.card-compact {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }
h5 { font-size: 0.875rem; }
h6 { font-size: 0.75rem; }

/* Tab styles for agent detail view */
.tab-nav {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn:hover {
    color: #374151;
    background-color: #f3f4f6;
}

.tab-btn.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
    background-color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Coaching summary specific styles */
.coaching-summary-card {
    transition: all 0.3s ease;
}

.coaching-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}

/* Responsive tabs */
@media (max-width: 768px) {
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .tab-btn i {
        display: none;
    }
}

/* Print styles for coaching summaries */
@media print {
    .tab-nav,
    .coaching-summary-loading,
    .coaching-summary-error,
    #generate-summary-btn,
    #export-pdf-btn,
    #print-summary-btn,
    #save-manager-notes-btn {
        display: none !important;
    }
    
    .tab-content {
        display: block !important;
    }
    
    #coaching-summary-content {
        display: block !important;
    }
    
    .coaching-summary-card {
        break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    /* Ensure proper page breaks */
    .bg-gradient-to-r {
        background: white !important;
        border: 1px solid #ccc !important;
    }
    
    /* Hide interactive elements in print */
    button,
    .hover\\:bg-gray-50,
    .transition-colors {
        display: none !important;
    }
    
    /* Ensure text is readable */
    .text-gray-500,
    .text-gray-600,
    .text-gray-700 {
        color: #333 !important;
    }
}

/* Process Flow Carousel Styles */
.process-tab-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 9999px;
    cursor: pointer;
    border: none;
    background: none;
    margin: 0 0.25rem;
    transform: scale(1);
}

.process-tab-btn.active {
    color: white;
    background: #001D44; /* blue background for all buttons */
    box-shadow: 0 4px 15px rgba(0, 29, 68, 0.3);
    transform: scale(1.05);
}

.process-tab-btn:hover:not(.active) {
    color: #374151;
    background-color: #f9fafb;
}

.process-step-content {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.process-step-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

/* Add smooth scroll behavior to the section */
#how-it-works {
    scroll-margin-top: 2rem;
}

/* Make the tab navigation sticky */
.process-tab-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 50;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.95) 90%, 
        rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.process-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #d1d5db;
}

.process-indicator.active {
    width: 2rem;
    background: #FE5B0E; /* orange for all indicators */
}

.process-indicator:hover {
    transform: scale(1.1);
}

/* Feature card styles for consistency */
.feature-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-light {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

/* Custom utility classes for brand colors */
.bg-rumlin-orange {
    background-color: #FE5B0E;
}

.bg-rumlin-blue {
    background-color: #001D44;
}

.text-rumlin-orange {
    color: #FE5B0E;
}

.text-rumlin-blue {
    color: #001D44;
}

.border-rumlin-orange {
    border-color: #FE5B0E;
}

.border-rumlin-blue {
    border-color: #001D44;
}

/* Responsive adjustments for process carousel */
@media (max-width: 768px) {
    .process-tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin: 0 0.125rem;
    }
    
    .process-tab-btn span:first-child {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
        margin-right: 0.5rem;
    }
    
    .process-step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-step-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .process-step-content .grid {
        gap: 2rem;
    }
} 