/* Virtual Craft Workshops Marketplace - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-color: #6c5ce7;
  --secondary-color: #fd79a8;
  --accent-color: #00b894;
  --warning-color: #fdcb6e;
  --info-color: #74b9ff;
  
  /* Light/Dark Shades */
  --primary-light: #a29bfe;
  --primary-dark: #5f3dc4;
  --secondary-light: #ff7675;
  --secondary-dark: #e84393;
  --accent-light: #00cec9;
  --accent-dark: #00a085;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --section-margin: 2rem 0;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
    overflow-x: hidden;
}

/* Conservative font sizes */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: var(--font-size-base);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Section */
#header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
  color: white;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

#hero p {
  color: rgba(255,255,255,0.9);
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
}

/* About Section */
#about {
  padding: var(--section-padding);
  background: #f8f9fa;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  padding: var(--section-padding);
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.service-price {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Features Section */
#features {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

#features h2,
#features p {
  color: white;
}

.feature-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  color: white;
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
#priceplan {
  padding: var(--section-padding);
  background: #f8f9fa;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
}

.price-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Team Section */
#team {
  padding: var(--section-padding);
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card-body {
  padding: 1.5rem;
}

/* Reviews Section */
#reviews {
  padding: var(--section-padding);
  background: #f8f9fa;
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Case Studies Section */
#casestudy {
  padding: var(--section-padding);
}

.case-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 100%;
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-card-body {
  padding: 2rem;
}

/* Process Section */
#process {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

#process h2,
#process p {
  color: white;
}

.process-step {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  color: white;
  position: relative;
}

.process-number {
  background: white;
  color: var(--secondary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  padding: var(--section-padding);
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Career Section */
#career {
  padding: var(--section-padding);
  background: #f8f9fa;
}

.career-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.career-role {
  color: var(--accent-color);
  font-weight: 600;
}

/* Core Info Section */
#coreinfo {
  padding: var(--section-padding);
}

.info-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.info-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--info-color), var(--primary-light));
}

#contact h2,
#contact p {
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem;
}

.form-control {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

/* Blog Section */
#blog {
  padding: var(--section-padding);
  background: #f8f9fa;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  padding: var(--section-padding);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #666;
}

/* Gallery Section */
#gallery {
  padding: var(--section-padding);
  background: #f8f9fa;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  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);
}

/* Footer */
#footer {
  background: #2d3436;
  color: white;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

#footer a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--accent-color);
}

.footer-divider {
  border-top: 1px solid #636e72;
  margin: 2rem 0 1rem;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title p {
  color: #666;
  font-size: var(--font-size-lg);
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

.bg-accent {
  background-color: var(--accent-color);
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
