/* ==========================================
   3D-Printed Jewelry Studio - Main Styles
   Bootstrap 5 Compatible - No Overrides
   ========================================== */

/* Mobile Animation Override - Disable all animations */
@media (max-width: 767.98px) {
  * {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Override keyframes */
  @keyframes float {
    0%, 50%, 100% { transform: translateY(0); }
  }
}

/* Color Variables */
:root {
  --primary-color: #f2b5ca;        /* Soft Rose */
  --secondary-color: #cae3ca;      /* Mint Green */
  --accent-color: #ffdcb7;         /* Peach */
  --info-color: #acd7ff;           /* Light Blue */
  --warning-color: #ffd25f;        /* Soft Yellow */
  
  /* Light Shades */
  --primary-light: #e4cad2;
  --secondary-light: #edffea;
  --accent-light: #fff0e8;
  --info-light: #a6c7e6;
  --warning-light: #ffe5b0;
  
  /* Dark Shades */
  --primary-dark: #df8db2;
  --secondary-dark: #b5d8ae;
  --accent-dark: #f3b874;
  --info-dark: #5aadff;
  --warning-dark: #fffe38;
  
  /* Neutral Colors */
  --dark-text: #181818;
  --light-text: #F8F9FA;
  --gray-text: #828a8e;
}

/* 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.85rem; font-weight: 600; }
h3 { font-size: 1.61rem; font-weight: 500; }
h4 { font-size: 1.35rem; font-weight: 500; }
h5 { font-size: 1.14rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

.navbar-brand {
    font-size: 10px !important;
  font-size: 1.34rem;
  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(11px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 10px !important;
  color: var(--dark-text);
  text-decoration: none;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
  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: 176px;
}

.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: 110px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 6px solid var(--primary-light);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-9px);
  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.63rem;
  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 6px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--secondary-color);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  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 5px 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 7px 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.66rem;
}

/* 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.57rem;
  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 5px 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(255, 201, 230, 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), #181818);
  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 7px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.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 - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
