/* GPU Rendering Farm - Main CSS */

/* ===== COLOR VARIABLES ===== */
:root {
    /* Primary Colors (5 main colors) */
    --primary-blue: #1b79f9;
    --primary-purple: #a44dff;
    --primary-green: #1da478;
    --primary-orange: #f79e06;
    --primary-pink: #ff4dbf;
    
    /* Light Shades */
    --light-blue: #f1f9ff;
    --light-purple: #e2d3ff;
    --light-green: #d4e3dc;
    --light-orange: #fff5b9;
    --light-pink: #fff2fa;
    
    /* Dark Shades */
    --dark-blue: #144698;
    --dark-purple: #6232c1;
    --dark-green: #018262;
    --dark-orange: #ef8f03;
    --dark-pink: #c22956;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #dfe7fc;
    --gray-300: #cfcfcf;
    --gray-600: #414958;
    --gray-800: #1c2a38;
    --gray-900: #14243b;
    
    /* Typography */
    --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--gray-800);
    background-color: #ffffff;
}

/* Conservative font sizes */
h1 {
    font-size: 2.38rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 1.99rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 1.62rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.26rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
}

h5 {
    font-size: 1.16rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
}

p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: var(--spacing-sm);
}

/* Links */
a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* ===== HEADER STYLES ===== */
.navbar {
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    background-color: #ffffff;
}

.navbar-brand {
    font-size: 1.51rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.navbar-brand:hover {
    color: var(--dark-blue);
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.hero-section h1 {
    color: var(--gray-900);
    font-size: 3rem;
    font-weight: 800;
    padding-top: 200px;
}

.hero-section h2 {
    color: var(--primary-blue);
    font-size: 1.53rem;
    font-weight: 600;
}

.hero-section p {
    color: var(--gray-600);
    font-size: 1.27rem;
    margin-bottom: var(--spacing-lg);
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.section-title h3 {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.27rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARD STYLES ===== */
.card {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.card-body {
    padding: var(--spacing-md);
}

.card-title {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: var(--gray-600);
    line-height: var(--line-height-base);
}

/* ===== BUTTON STYLES ===== */
.btn {
    border-radius: var(--border-radius-md);
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-md);
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
}

/* ===== SERVICES SECTION ===== */
.services-item {
    margin-bottom: var(--spacing-lg);
}

.services-item .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.services-item h4 {
    color: var(--gray-900);
    font-weight: 700;
}

.services-item .price {
    color: var(--primary-green);
    font-size: 1.54rem;
    font-weight: 700;
}

/* ===== FEATURES SECTION ===== */
.feature-item {
    text-align: center;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-item i {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.feature-item h4 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    color: var(--gray-600);
}

/* ===== TEAM SECTION ===== */
.team-member {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--light-blue);
    margin-bottom: var(--spacing-sm);
}

.team-member h5 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.team-member p {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: var(--font-size-small);
}

/* ===== PROCESS SECTION ===== */
.process-step {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.63rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-sm);
}

.process-step h5 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.process-step p {
    color: var(--gray-600);
    font-size: var(--font-size-small);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background-color: var(--gray-50);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-control {
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.125rem rgba(22, 105, 226, 0.25);
    outline: none;
}

.contact-info {
    background-color: #ffffff;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info h4 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-sm);
}

.contact-info i {
    color: var(--primary-blue);
    margin-right: var(--spacing-xs);
}

/* ===== GALLERY SECTION ===== */
.gallery img {
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ===== FOOTER STYLES ===== */
footer {
    background-color: var(--gray-900);
    color: #ffffff;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

footer p {
    color: var(--gray-300);
    margin-bottom: var(--spacing-sm);
}

footer a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

footer .list-unstyled li {
    margin-bottom: var(--spacing-xs);
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: var(--gray-600);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: none;
}

/* ===== TIMELINE STYLES ===== */
.timeline-item {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.timeline-item h5 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.timeline-item p {
    color: var(--gray-600);
    font-size: var(--font-size-small);
}

/* ===== STEP CARD STYLES ===== */
.step-card {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.39rem;
}

/* ===== FEATURE BOX STYLES ===== */
.feature-box {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-box i {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.feature-box h4 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.feature-box p {
    color: var(--gray-600);
    font-size: var(--font-size-small);
}

/* ===== BACKGROUND VARIATIONS ===== */
.bg-light {
    background-color: var(--gray-50);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary-blue);
}

.text-secondary {
    color: var(--gray-600);
}

.text-muted {
    color: var(--gray-600);
}

.border-primary {
    border-color: var(--primary-blue);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.rounded-lg {
    border-radius: var(--border-radius-lg);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #2618fe;
        --gray-600: #000000;
        --gray-800: #000000;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .btn,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
