/* 3D Print Pro - Main CSS */

/* CSS Variables - Color Palette */
:root {
    --primary-color: #747afe;
    --primary-light: #a5b1f8;
    --primary-dark: #4a32e2;
    --secondary-color: #ffa910;
    --secondary-light: #e69b38;
    --accent-color: #00ca6c;
    --accent-light: #1fc686;
    --text-dark: #131a20;
    --text-muted: #5e6873;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #ced6e5;
}

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

/* Conservative Font Sizes */
.navbar-brand {
    font-size: 1.29rem;
}

h1, .display-4 {
    font-size: 2.59rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.65rem;
    font-weight: 600;
}

h4 {
    font-size: 1.34rem;
    font-weight: 600;
}

h5 {
    font-size: 1.15rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.24rem;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%236366f1" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%236366f1" opacity="0.1"/></svg>');
    background-size: 100px 100px;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
}

.navbar-brand {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Sections */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Icons */
.fa {
    color: var(--primary-color);
}

/* Form Styling */
.form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(77, 90, 227, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.74rem;
}

/* Footer */
footer {
    background-color: var(--text-dark);
}

footer h5 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

footer p, footer li {
    color: #acb1c2;
}

footer a {
    color: #8696a9;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--bg-white);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Gallery */
.gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Animation Enhancements */

/* Price Display */
.text-primary {
    color: var(--primary-color);
}

/* Badge Styling */
.badge {
    border-radius: 6px;
    font-weight: 500;
}

.bg-primary {
    background-color: var(--primary-color);
}

/* Process Steps */
.rounded-circle {
    border-radius: 50%;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.59rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Breadcrumb */
nav[aria-label="breadcrumb"] {
    background-color: var(--bg-light);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    

}

/* Focus States */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Hover Effects */
.card-title {
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: var(--primary-color);
}

/* List Styling */
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

/* Text Colors */
.text-muted {
    color: var(--text-muted);
}

.text-light {
    color: #f8f9fa;
}

.text-success {
    color: var(--accent-color);
}

/* Spacing */
.g-3 {
    gap: 1rem;
}

.g-4 {
    gap: 1.5rem;
}

/* Container Max Width */
.container {
    max-width: 1200px;
}

/* Sticky Navigation */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Card Body Padding */
.card-body {
    padding: 1.5rem;
}

/* Border Styling */
.border-primary {
    border-color: var(--primary-color);
}

/* Display Utilities */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.text-md-end {
    text-align: right;
}

/* Height Utilities */
.vh-100 {
    height: 100vh;
}

.h-100 {
    height: 100%;
}

/* Flexbox Utilities */
.flex-shrink-0 {
    flex-shrink: 0;
}

.ms-3 {
    margin-left: 1rem;
}

.ms-auto {
    margin-left: auto;
}

.me-2 {
    margin-right: 0.5rem;
} 

.hero-section h1 {
    padding-top: 275px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
