/* Enthropic Data LLC - Custom Styles */

:root {
    --ed-primary: #2563eb;
    --ed-primary-dark: #1d4ed8;
    --ed-secondary: #1e293b;
    --ed-accent: #3b82f6;
    --ed-light: #f8fafc;
    --ed-dark: #0f172a;
}

/* Override Bootstrap primary color */
.btn-primary {
    background-color: var(--ed-primary);
    border-color: var(--ed-primary);
}

.btn-primary:hover {
    background-color: var(--ed-primary-dark);
    border-color: var(--ed-primary-dark);
}

.text-primary {
    color: var(--ed-primary) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ed-secondary) 0%, var(--ed-dark) 100%);
    padding-top: 80px;
}

.hero-section h1 {
    letter-spacing: -1px;
}

.hero-section .lead {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Sections */
section {
    scroll-margin-top: 70px;
}

/* About Section */
.about-stats {
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
}

.stat-item {
    padding: 1rem;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Form */
.form-control:focus {
    border-color: var(--ed-primary);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

/* Footer */
footer {
    background-color: var(--ed-dark) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Animation for scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Project Cards */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

.project-card .bg-primary {
    background: linear-gradient(135deg, var(--ed-primary) 0%, var(--ed-primary-dark) 100%) !important;
}

/* Project Logo */
.project-logo {
    max-width: 120px;
    height: auto;
}
