/* ===== 3D PRINTED JEWELRY - MAIN STYLES ===== */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-color: #6B73FF;
  --primary-light: #9BA3FF;
  --primary-dark: #4A52CC;
  
  --secondary-color: #FF6B9D;
  --secondary-light: #FF9BC4;
  --secondary-dark: #CC4A7A;
  
  --accent-color: #4ECDC4;
  --accent-light: #7FE3DC;
  --accent-dark: #3BA39D;
  
  --neutral-color: #F7F7F7;
  --neutral-light: #FFFFFF;
  --neutral-dark: #E5E5E5;
  
  --text-color: #2C3E50;
  --text-light: #5A6B7D;
  --text-dark: #1A252F;
  
  /* 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.5rem;
  --font-size-h2: 1.75rem;
  --font-size-h1: 2rem;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  color: var(--text-color);
  line-height: 1.6;
    overflow-x: hidden;
}

h1 { font-size: var(--font-size-h1); font-weight: 600; }
h2 { font-size: var(--font-size-h2); font-weight: 600; }
h3 { font-size: var(--font-size-h3); font-weight: 500; }
h4 { font-size: var(--font-size-h4); font-weight: 500; }
h5 { font-size: var(--font-size-h5); font-weight: 500; }
h6 { font-size: var(--font-size-h6); font-weight: 500; }

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-color) 100%);
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  bottom: 20%;
  left: 5%;
}

.hero-shape-3 {
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  top: 50%;
  left: 20%;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 175px;
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

/* Services Cards */
.service-card {
  background: var(--neutral-light);
  border: 1px solid var(--neutral-dark);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-color);
}

/* About Features */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Team Cards */
.team-card {
  background: var(--neutral-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--neutral-dark);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-color);
}

/* Review Cards */
.review-card {
  background: var(--neutral-light);
  border: 1px solid var(--neutral-dark);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* FAQ Cards */
.faq-card {
  background: var(--neutral-light);
  border: 1px solid var(--neutral-dark);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-light);
  margin: 0;
}

/* Gallery */
#gallery {
  background: var(--neutral-color);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  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);
}

/* Contact Form */
.contact-form {
  background: var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--neutral-dark);
}

.form-control {
  border: 1px solid var(--neutral-dark);
  border-radius: 6px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(107, 115, 255, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Footer */
#footer {
  background: var(--text-color);
  color: var(--neutral-light);
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--neutral-light);
  margin-bottom: 1rem;
}

#footer p, #footer a {
  color: var(--text-light);
}

#footer a:hover {
  color: var(--neutral-light);
  text-decoration: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--neutral-light);
  border: 2px solid var(--neutral-dark);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-dark);
}

/* Case Study Cards */
.case-card {
  background: var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--neutral-dark);
  height: 100%;
}

/* Blog Cards */
.blog-card {
  background: var(--neutral-light);
  border: 1px solid var(--neutral-dark);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Utility Classes */
.text-primary-custom { color: var(--primary-color); }
.text-secondary-custom { color: var(--secondary-color); }
.text-accent-custom { color: var(--accent-color); }

.bg-primary-custom { background-color: var(--primary-color); }
.bg-secondary-custom { background-color: var(--secondary-color); }
.bg-accent-custom { background-color: var(--accent-color); }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* Conservative spacing */
.mb-small { margin-bottom: 0.5rem; }
.mb-medium { margin-bottom: 1rem; }
.mb-large { margin-bottom: 2rem; }

.mt-small { margin-top: 0.5rem; }
.mt-medium { margin-top: 1rem; }
.mt-large { margin-top: 2rem; } 


/* 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;
    }
}
