/* 3D-Printing Workshops Template - Main CSS */
/* Bootstrap 5 Integration - No Overrides */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-blue: #6366f1;
  --primary-purple: #8b5cf6;
  --primary-teal: #14b8a6;
  --primary-orange: #f97316;
  --primary-pink: #ec4899;
  
  /* Light Shades */
  --light-blue: #e0e7ff;
  --light-purple: #f3e8ff;
  --light-teal: #ccfbf1;
  --light-orange: #fed7aa;
  --light-pink: #fce7f3;
  
  /* Dark Shades */
  --dark-blue: #3730a3;
  --dark-purple: #6b21a8;
  --dark-teal: #0f766e;
  --dark-orange: #c2410c;
  --dark-pink: #be185d;
  
  /* Neutral Colors */
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  
  /* Typography */
  --font-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: var(--font-base);
  font-weight: var(--font-weight-normal);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

/* Conservative heading sizes */
h1 {
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Conservative navbar brand size */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-blue);
}

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

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decoration-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-teal);
  top: 10%;
  right: 15%;
}

.hero-decoration-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-orange);
  bottom: 20%;
  left: 10%;
}

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

.section-title {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.section-description {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
}

/* Feature Items */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 8px;
  background: var(--bg-white);
  border: 1px solid var(--light-teal);
  height: 100%;
}

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

/* Team Members */
.team-card {
  text-align: center;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* Reviews/Testimonials */
.review-card {
  border: none;
  border-radius: 12px;
  background: var(--light-blue);
  padding: 2rem;
  height: 100%;
  position: relative;
}

.review-quote {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-blue);
}

/* Price Plan Cards */
.price-card {
  border: 2px solid var(--light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
}

.price-value {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
}

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--light-teal);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
}

.faq-question {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--light-teal);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: var(--font-weight-medium);
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  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);
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Footer - High Contrast Colors Only */
.footer {
  background-color: var(--text-primary);
  color: var(--bg-white);
  padding: 3rem 0 2rem;
}

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

.footer p, .footer a {
  color: var(--text-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--bg-white);
}

.footer-bottom {
  border-top: 1px solid var(--text-secondary);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--bg-light);
}

.breadcrumb-image {
  max-height: 30px;
  width: auto;
}

/* Process/Timeline Items */
.process-item, .timeline-item {
  text-align: center;
  margin-bottom: 2rem;
}

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

/* Case Study Cards */
.casestudy-card {
  background: var(--light-orange);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: none;
}

/* Career Cards */
.career-card {
  border: 1px solid var(--light-purple);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--bg-white);
  height: 100%;
}

/* Core Info Cards */
.coreinfo-card {
  background: var(--light-pink);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* Responsive Utilities */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
}

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

.hero-section h1 {
    padding-top: 100px;
}


/* 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);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.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;
    }
}
