/* LuminaCraft - Main CSS File */
/* Bootstrap 5 Compatible - No Overrides */

/* CSS Custom Properties - Color Palette */
:root {
  /* Primary Colors - Pastel High Contrast */
  --primary-blue: #4A90E2;
  --primary-teal: #50C9C3;
  --primary-purple: #8B5CF6;
  --primary-orange: #F59E0B;
  --primary-green: #10B981;
  
  /* Light Shades */
  --primary-blue-light: #E3F2FD;
  --primary-teal-light: #E0F7FA;
  --primary-purple-light: #F3E8FF;
  --primary-orange-light: #FEF3C7;
  --primary-green-light: #ECFDF5;
  
  /* Dark Shades */
  --primary-blue-dark: #1E3A8A;
  --primary-teal-dark: #0F766E;
  --primary-purple-dark: #6B21A8;
  --primary-orange-dark: #B45309;
  --primary-green-dark: #047857;
  
  /* Neutral Colors */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --border-radius-sm: 0.375rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 0.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--gray-700);
  background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography - Conservative Sizes */
.navbar-brand {
  font-size: 1.25rem !important; /* Only !important usage - conservative navbar brand size */
  font-weight: 600;
  color: var(--primary-blue-dark);
}

h1, .h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--spacing-lg);
}

h2, .h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--spacing-md);
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--spacing-md);
}

h4, .h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--spacing-sm);
}

h5, .h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--spacing-sm);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: var(--spacing-md);
  color: var(--gray-600);
}

.lead {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
}

/* Respect Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* Header Styles */
.navbar {
  padding: var(--spacing-md) 0;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.3s ease;
  padding: var(--spacing-sm) var(--spacing-md);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-teal-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-purple-light) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Card Styles */
.card {
  border: none;
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  background-color: white;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-top {
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  height: 200px;
  object-fit: cover;
}

/* Icon Styles */
.fa {
  transition: all 0.3s ease;
}

.text-primary {
  color: var(--primary-blue);
}

.text-success {
  color: var(--primary-green);
}

.text-warning {
  color: var(--primary-orange);
}

.text-info {
  color: var(--primary-teal);
}

.text-danger {
  color: var(--primary-purple);
}

/* Background Utilities */
.bg-primary {
  background-color: var(--primary-blue);
}

.bg-success {
  background-color: var(--primary-green);
}

.bg-warning {
  background-color: var(--primary-orange);
}

.bg-info {
  background-color: var(--primary-teal);
}

.bg-danger {
  background-color: var(--primary-purple);
}

/* Section Spacing */
section {
  padding: var(--spacing-xl) 0;
}

.py-5 {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

/* Form Styles */
.form-control {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--spacing-xs);
}

/* Team Member Images */
.rounded-circle {
  border: 4px solid var(--primary-blue-light);
  transition: all 0.3s ease;
}

.rounded-circle:hover {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

/* Footer Styles */
footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
}

footer h4,
footer h5 {
  color: white;
}

footer a {
  color: var(--gray-300);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-blue-light);
}

/* Breadcrumb Styles */
.breadcrumb {
  background-color: transparent;
  padding: var(--spacing-sm) 0;
}

.breadcrumb-item img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
  opacity: 1;
}

/* SAL.js DISABLED - Animation Support */
/*
.sal-animate {
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
*/

/* Gallery Styles */
#gallery img {
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
}

#gallery img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Process Step Circles */
.bg-primary.rounded-circle {
  background-color: var(--primary-blue);
  transition: all 0.3s ease;
}

.bg-primary.rounded-circle:hover {
  background-color: var(--primary-blue-dark);
  transform: scale(1.1);
}

/* Special Card Borders */
.border-primary {
  border-color: var(--primary-blue);
}

.border-success {
  border-color: var(--primary-green);
}

.border-warning {
  border-color: var(--primary-orange);
}

.border-info {
  border-color: var(--primary-teal);
}

.border-dark {
  border-color: var(--gray-700);
}

/* Badge Styles */
.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
}

/* List Styles */
.list-unstyled li {
  margin-bottom: var(--spacing-xs);
}

/* Shadow Utilities */
.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow {
  box-shadow: var(--shadow);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

/* Spacing Utilities Enhancement */
.mb-5 {
  margin-bottom: var(--spacing-xl);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #0056B3;
    --primary-teal: #006064;
    --primary-purple: #4A148C;
    --primary-orange: #E65100;
    --primary-green: #1B5E20;
  }
  
  .card {
    border: 2px solid var(--gray-300);
  }
  
  .btn {
    border-width: 2px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  footer,
  .btn,
  .breadcrumb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
  }
}


.hero h1 {
    padding-top: 125px;
}


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
