/* Main CSS for Custom-Printed Fabric Template */
:root {
  /* Pastel high-contrast color palette */
  --primary-color: #6979ff;
  --primary-light: #95adff;
  --primary-dark: #3c3ae3;
  --secondary-color: #e69400;
  --secondary-light: #e4c15a;
  --secondary-dark: #ec7f00;
  --accent-color: #18cd93;
  --accent-light: #86efc3;
  --accent-dark: #0d825f;
  --neutral-color: #4e5368;
  --neutral-light: #f3f4f6;
  --neutral-dark: #334555;
  --text-primary: #141820;
  --text-secondary: #69707e;
  --background-light: #ffffff;
  --background-section: #f8fafc;
}

/* Conservative typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Conservative navbar brand sizing */
.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--primary-color);
}

/* Conservative heading sizes */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Conservative paragraph sizing */
p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Header styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-light);
  padding: 0.8rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

/* Hero section - fullscreen with 2 columns */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--neutral-light) 100%);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-content {
  z-index: 2;
    padding-top: 200px;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0.1;
  top: 20%;
  right: 10%;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.7;
  top: -30px;
  left: -30px;
}

/* Section spacing */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--background-section);
}

/* Button styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.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);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

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

/* Card styles */
.card {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-body {
  padding: 2rem;
}

/* Service cards */
.service-card {
  height: 100%;
  background: var(--background-light);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Team member cards */
.team-card {
  background: var(--background-light);
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

/* Review cards - static only */
.review-card {
  background: var(--background-light);
  border-left: 4px solid var(--accent-color);
}

/* FAQ cards - static only */
.faq-card {
  background: var(--background-light);
  margin-bottom: 1rem;
}

/* Process/Timeline cards */
.process-card {
  background: var(--background-light);
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Form styles */
.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(72, 85, 218, 0.25);
}

/* Footer styles - no gradients, high contrast */
.footer {
  background-color: var(--primary-dark);
  color: var(--background-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--background-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--background-light);
}

.footer-copyright {
  background-color: var(--neutral-dark);
  padding: 1rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gallery styles */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lazy loading styles */
img.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img.lazy.loaded {
  opacity: 1;
}

/* Prevent image layout shifts */
img {
  max-width: 100%;
  height: auto;
}

.card-img-top {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.team-photo {
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Icon styles - FontAwesome only */
.icon {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.icon-large {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Breadcrumb styles - images only */
.breadcrumb-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Space page styles */
#space {
  min-height: 80vh;
  background: var(--background-section);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-color);
}

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

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


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
