/* ==========================================
   3D-Printed Jewelry Studio - Main Styles
   Bootstrap 5 Compatible - No Overrides
   ========================================== */

/* Color Variables */
:root {
  --primary-color: #d7a5bb;        /* Soft Rose */
  --secondary-color: #cef4cf;      /* Mint Green */
  --accent-color: #ffddbb;         /* Peach */
  --info-color: #a6caff;           /* Light Blue */
  --warning-color: #fff973;        /* Soft Yellow */
  
  /* Light Shades */
  --primary-light: #fac3df;
  --secondary-light: #c9ddc6;
  --accent-light: #fae3cc;
  --info-light: #c5dfff;
  --warning-light: #ffedca;
  
  /* Dark Shades */
  --primary-dark: #d9a6c8;
  --secondary-dark: #aedab2;
  --accent-dark: #ffd67d;
  --info-dark: #57acff;
  --warning-dark: #ffbb2c;
  
  /* Neutral Colors */
  --dark-text: #2b2b2b;
  --light-text: #F8F9FA;
  --gray-text: #667074;
}

/* Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-text);
}

h1 { font-size: 2rem; font-weight: 600; }
h2 { font-size: 1.87rem; font-weight: 600; }
h3 { font-size: 1.56rem; font-weight: 500; }
h4 { font-size: 1.28rem; font-weight: 500; }
h5 { font-size: 1.22rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

.navbar-brand {
  font-size: 1.38rem;
  font-weight: 600;
}

/* Reduced Motion Support */
@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;
  }
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: var(--dark-text);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--dark-text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-dark);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 100px;
}

.hero-decorative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--secondary-color), var(--info-color));
  animation: float 6s ease-in-out infinite;
}

.hero-blob:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-blob:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-text);
  margin-bottom: 3rem;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 7px solid var(--primary-light);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-price {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  font-weight: bold;
  font-size: 1.56rem;
  padding: 1rem;
  text-align: center;
  margin-top: auto;
}

/* Features */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 7px 16px rgba(0,0,0,0.08);
  border-left: 4px solid var(--secondary-color);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: scale(1.02);
}

.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--accent-light), var(--info-light));
}

/* Reviews/Testimonials */
.review-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-top: 4px solid var(--accent-color);
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 10px rgba(0,0,0,0.08);
  border-left: 4px solid var(--info-color);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.60rem;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: 2px solid var(--accent-light);
  text-align: center;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-amount {
  font-size: 2.58rem;
  font-weight: bold;
  color: var(--primary-dark);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--secondary-light), white);
  border-radius: 10px;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.32rem;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  border-left: 4px solid var(--warning-color);
  margin-bottom: 1.69rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--primary-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(232, 203, 216, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-text), #333030);
  color: var(--light-text);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-color);
}

.footer a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--info-light), var(--secondary-light));
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-top: 4px solid var(--warning-color);
}

/* Core Info Items */
.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border-bottom: 4px solid var(--info-color);
}

/* Case Study Cards */
.casestudy-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: 2px solid var(--secondary-light);
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-3px);
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--primary-light);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* 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); } 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
