/* ===== 3D PRINTING COSPLAY PROPS - MAIN STYLES ===== */

/* Color Palette - 5 Primary Pastel Colors with High Contrast */
:root {
  --primary-lavender: #E6E6FA;
  --primary-mint: #F0FFF0;
  --primary-peach: #FFEFD5;
  --primary-sky: #E0F6FF;
  --primary-rose: #FFE4E1;
  
  --accent-deep-purple: #4B0082;
  --accent-forest: #228B22;
  --accent-coral: #FF7F50;
  --accent-navy: #191970;
  --accent-burgundy: #8B1538;
  
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --bg-light: #fafafa;
  --border-light: #e9ecef;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Respect prefers-reduced-motion */
@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;
  }
}

/* Typography - Conservative Sizes */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-deep-purple);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--accent-navy);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--accent-forest);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--accent-coral);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Conservative navbar brand size */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-deep-purple);
}

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

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-blob-1 {
  background-color: var(--accent-coral);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
  background-color: var(--accent-forest);
  bottom: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

/* About Section */
.about-section {
  background-color: var(--primary-mint);
}

.about-feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Services Section */
.services-section {
  background-color: var(--primary-peach);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-coral);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--primary-sky);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-rose);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

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

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-coral);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background-color: var(--primary-mint);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-lavender);
}

/* Reviews Section - Static Bootstrap Cards Only */
.reviews-section {
  background-color: var(--primary-lavender);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Case Study Section */
.casestudy-section {
  background-color: var(--primary-peach);
}

.casestudy-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Process Section */
.process-section {
  background-color: var(--primary-sky);
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

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

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-coral);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--primary-rose);
}

.timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

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

/* Career Section */
.career-section {
  background-color: var(--primary-mint);
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-lavender);
}

.coreinfo-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Contact Section */
.contact-section {
  background-color: var(--primary-peach);
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background: var(--accent-deep-purple);
  color: white;
  border-radius: 15px;
  padding: 3rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--primary-sky);
}

.blog-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

/* FAQ Section - Static Cards Only, NO Accordion */
.faq-section {
  background-color: var(--primary-rose);
}

.faq-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.faq-question {
  font-weight: 600;
  color: var(--accent-deep-purple);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-mint);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer - High contrast colors only */
.footer {
  background-color: var(--accent-navy);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

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

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

.footer a:hover {
  color: var(--primary-lavender);
}

/* Buttons */
.btn-primary {
  background-color: var(--accent-coral);
  border-color: var(--accent-coral);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.form-control:focus {
  border-color: var(--accent-coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 127, 80, 0.25);
}

/* Icon Styles - FontAwesome */
.fa {
  margin-right: 0.5rem;
}

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

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

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-deep-purple);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--accent-navy);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}



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