/* 3D-Printed Kitchen Gadgets Store - Main Styles */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-mint: #98E4D6;
  --primary-coral: #FFB3B3;
  --primary-lavender: #D1B3FF;
  --primary-peach: #FFCC99;
  --primary-sage: #C8E6C9;
  
  --mint-dark: #7BC4B8;
  --mint-light: #B8F0E6;
  --coral-dark: #FF9999;
  --coral-light: #FFCCCC;
  --lavender-dark: #BF99FF;
  --lavender-light: #E6CCFF;
  --peach-dark: #FFB366;
  --peach-light: #FFE6CC;
  --sage-dark: #A5D6A7;
  --sage-light: #E8F5E8;
  
  --text-dark: #2C3E50;
  --text-light: #FFFFFF;
  --bg-light: #FAFAFA;
  --border-color: #E0E0E0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  font-size: 16px;
    overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

/* Header Section */
#header {
  background: linear-gradient(135deg, var(--primary-mint) 0%, var(--mint-dark) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--coral-dark) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-lavender);
  top: -150px;
  right: -150px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-peach);
  bottom: -100px;
  left: -100px;
}

/* About Section */
#about {
  background: var(--bg-light);
  padding: 80px 0;
}

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Services Section */
#services {
  background: linear-gradient(135deg, var(--primary-lavender) 0%, var(--lavender-light) 100%);
  padding: 80px 0;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: none;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-coral);
}

.service-img {
  width: 80px;
  height: 80px;
  background: var(--primary-peach);
  border-radius: 15px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

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

/* Features Section */
#features {
  background: var(--bg-light);
  padding: 80px 0;
}

/* Price Plan Section */
#priceplan {
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--sage-light) 100%);
  padding: 80px 0;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid var(--border-color);
  height: 100%;
  position: relative;
}

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

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

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

/* Team Section */
#team {
  background: var(--bg-light);
  padding: 80px 0;
}

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

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--primary-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-dark);
}

.team-role {
  color: var(--primary-coral);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Reviews Section */
#reviews {
  background: linear-gradient(135deg, var(--primary-peach) 0%, var(--peach-light) 100%);
  padding: 80px 0;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  border-left: 4px solid var(--primary-coral);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.review-author {
  font-weight: 600;
  color: var(--primary-coral);
}

/* Case Studies Section */
#casestudy {
  background: var(--bg-light);
  padding: 80px 0;
}

/* Process Section */
#process {
  background: linear-gradient(135deg, var(--primary-mint) 0%, var(--mint-light) 100%);
  padding: 80px 0;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
}

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

/* Timeline Section */
#timeline {
  background: var(--bg-light);
  padding: 80px 0;
}

/* Career Section */
#career {
  background: linear-gradient(135deg, var(--primary-lavender) 0%, var(--lavender-light) 100%);
  padding: 80px 0;
}

/* Core Info Section */
#coreinfo {
  background: var(--bg-light);
  padding: 80px 0;
}

/* Contact Section */
#contacts {
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--sage-light) 100%);
  padding: 80px 0;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(152, 228, 214, 0.25);
}

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

.btn-primary:hover {
  background: var(--coral-dark);
}

.contact-info {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: fit-content;
}

/* Blog Section */
#blog {
  background: var(--bg-light);
  padding: 80px 0;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: none;
}

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

.blog-img {
  height: 200px;
  background: var(--primary-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-dark);
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--coral-light) 100%);
  padding: 80px 0;
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-mint);
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Gallery Section */
#gallery {
  background: var(--bg-light);
  padding: 80px 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 250px;
  background: var(--primary-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-dark);
}

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

/* Footer */
#footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

/* Section Spacing */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Animations - Conservative and Accessible */
@media (prefers-reduced-motion: no-preference) {
  .animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-delay-1 { animation-delay: 0.1s; }
  .animate-delay-2 { animation-delay: 0.2s; }
  .animate-delay-3 { animation-delay: 0.3s; }
  .animate-delay-4 { animation-delay: 0.4s; }
}

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

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

.bg-primary-mint { background-color: var(--primary-mint); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-lavender { background-color: var(--primary-lavender); }
.bg-primary-peach { background-color: var(--primary-peach); }
.bg-primary-sage { background-color: var(--primary-sage); }



/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

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

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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