/* ===========================================
   3D Cosplay Props - Main CSS
   Template 156 - Bootstrap 5 Compatible
   =========================================== */

/* Color Palette - Pastel High-Contrast Colors */
:root {
    /* Primary Colors */
    --color-primary: #787eff;           /* Indigo */
    --color-secondary: #eb9820;         /* Amber */
    --color-accent: #22cbac;            /* Emerald */
    --color-warning: #ff842c;           /* Orange */
    --color-info: #17b3c6;              /* Cyan */
    
    /* Light Shades */
    --color-primary-light: #d3d6eb;
    --color-secondary-light: #ede6ac;
    --color-accent-light: #cbebd9;
    --color-warning-light: #ffce94;
    --color-info-light: #b0e9f0;
    
    /* Dark Shades */
    --color-primary-dark: #4852cb;
    --color-secondary-dark: #d76300;
    --color-accent-dark: #04947c;
    --color-warning-dark: #fd6510;
    --color-info-dark: #0fafc4;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    
    /* Spacing & Sizing */
    --header-height: 80px;
    --section-padding: 5rem 0;
    --border-radius: 0.75rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Typography */
body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: #434a58;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #1a2834;
}

/* Conservative font sizes */
h1 { font-size: 2.33rem; }
h2 { font-size: 2.00rem; }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.31rem; }
h5 { font-size: 1.24rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.19rem;
    font-weight: 400;
}

/* Header Styles */
.navbar-brand {
    font-size: 1.34rem !important;
    font-weight: 700;
    color: var(--color-primary) !important;
}

.navbar {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #595b67 !important;
    transition: color 0.45s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%);
    padding-top: var(--header-height);
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.61rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    padding-top: 200px;
}

.hero-section .lead {
    color: var(--color-secondary-dark);
    font-weight: 600;
    font-size: 1.38rem;
    margin-bottom: 1rem;
}

/* Button Styles */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    transition: all 0.70s ease;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.27rem;
}

/* Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 1.27s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 1.08s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 0.97rem;
}

.card-text {
    color: #7a7f88;
    font-size: 1.02rem;
}

/* Feature Box Styles */
.feature-box {
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.44s ease;
}

.feature-box:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
}

.feature-box i {
    color: var(--color-primary);
}

.feature-box h4 {
    color: var(--color-primary-dark);
    margin-top: 1rem;
}

/* Process Steps */
.process-step {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.53rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Team Member Images */
.rounded-circle {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Gallery Styles */
#gallery img {
    border-radius: var(--border-radius);
    transition: all 0.64s ease;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Form Styles */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: all 0.74s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(95, 90, 229, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: 0.63rem;
}

/* Section Backgrounds */
.bg-light {
    background-color: #f9fafb !important;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #0f1620 0%, #111421 100%) !important;
}

footer h5 {
    color: var(--color-accent-light);
    font-weight: 600;
}

footer a {
    transition: color 1.26s ease;
}

footer a:hover {
    color: var(--color-accent-light) !important;
}

/* Utility Classes */
.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: none;
    padding: 0.5rem 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.63s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Animation Support */
@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;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Content Sections */
section {
    padding: 4rem 0;
}

/* Price Display */
.text-primary h6,
.text-primary h4 {
    color: var(--color-secondary) !important;
    font-weight: 700;
}

/* Service Features List */
.list-unstyled li {
    padding: 0.25rem 0;
    color: #676d76;
}

/* Blockquote Styling */
.blockquote-footer {
    color: var(--color-primary-dark);
    font-weight: 500;
    font-size: 0.93rem;
}

/* Special styling for border-primary cards */
.border-primary {
    border: 2px solid var(--color-primary) !important;
    position: relative;
}

.border-primary::before {
    content: 'POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.86rem;
    font-weight: 700;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Ensure proper spacing */
.mb-4 {
    margin-bottom: 1.71rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
