/* Virtual Craft Workshops Marketplace - Main CSS */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-purple: #8B5FBF;
  --primary-teal: #4ECDC4;
  --primary-coral: #FF6B6B;
  --primary-mint: #95E1D3;
  --primary-peach: #FFB88C;
  
  /* Light Shades */
  --light-purple: #B08BCE;
  --light-teal: #7FDDD6;
  --light-coral: #FF9999;
  --light-mint: #B8E8E0;
  --light-peach: #FFD4B8;
  
  /* Dark Shades */
  --dark-purple: #6B4A8F;
  --dark-teal: #3BA9A2;
  --dark-coral: #E55555;
  --dark-mint: #7BC9BA;
  --dark-peach: #E5A67A;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
}

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

/* Typography - Conservative Sizes */
.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-purple);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  font-size: var(--font-size-base);
  line-height: 1.6;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: var(--primary-mint);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
}

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

/* Services Section */
.services-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.services-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple);
}

/* Team Section */
.team-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.team-img {
  height: 250px;
  object-fit: cover;
}

/* Review Cards */
.review-card {
  border: none;
  border-radius: 15px;
  background: var(--light-mint);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.faq-question {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Features Section */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Price Plans */
.price-plan-card {
  border: 2px solid var(--light-purple);
  border-radius: 15px;
  position: relative;
  height: 100%;
  transition: border-color 0.3s ease;
}

.price-plan-card:hover {
  border-color: var(--primary-purple);
}

.price-plan-featured {
  border-color: var(--primary-coral);
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: var(--light-mint);
  border-radius: 15px;
  padding: 2rem;
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--light-purple);
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 95, 191, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  border-radius: 25px;
  padding: 0.75rem 2rem;
}

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

.btn-outline-primary {
  color: var(--primary-purple);
  border-color: var(--primary-purple);
  border-radius: 25px;
  padding: 0.75rem 2rem;
}

.btn-outline-primary:hover {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
}

/* Footer */
.footer {
  background-color: var(--dark-purple);
  color: white;
}

.footer h5 {
  color: var(--light-mint);
}

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

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

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* Case Study Cards */
.casestudy-card {
  background: var(--light-peach);
  border-radius: 15px;
  border: none;
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

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

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--primary-teal);
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--primary-teal);
  border-radius: 50%;
}

/* Career Cards */
.career-card {
  border: 1px solid var(--light-teal);
  border-radius: 10px;
  height: 100%;
}

/* Core Info Cards */
.coreinfo-card {
  background: var(--light-coral);
  border: none;
  border-radius: 10px;
  height: 100%;
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

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

/* Utility Classes */
.text-primary-purple { color: var(--primary-purple); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-peach { color: var(--primary-peach); }

.bg-light-purple { background-color: var(--light-purple); }
.bg-light-teal { background-color: var(--light-teal); }
.bg-light-coral { background-color: var(--light-coral); }
.bg-light-mint { background-color: var(--light-mint); }
.bg-light-peach { background-color: var(--light-peach); } 

body {
    overflow-x: hidden;
}


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