/* 3D-Printed Home Office Furniture - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-blue: #87CEEB;
  --primary-mint: #B0E0E6;
  --primary-peach: #FFDAB9;
  --primary-lavender: #E6E6FA;
  --primary-cream: #F5F5DC;
  
  /* Light/Dark Shades */
  --light-blue: #E0F6FF;
  --dark-blue: #4682B4;
  --light-mint: #E0F8F8;
  --dark-mint: #5F9EA0;
  --light-peach: #FFE4C4;
  --dark-peach: #CD853F;
  --light-lavender: #F0F0F8;
  --dark-lavender: #9370DB;
  --light-cream: #FAFAF0;
  --dark-cream: #D2B48C;
  
  /* Typography */
  --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --element-margin: 2rem;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@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;
  }
}

/* Typography - Conservative Sizing */
h1, .h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--dark-mint);
  margin-bottom: 0.75rem;
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-peach);
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header Section */
#header {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-mint) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-mint);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-peach) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-lavender);
  border-radius: 50%;
  opacity: 0.3;
  top: 10%;
  right: 10%;
  z-index: 1;
}

.hero-decorative:before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary-peach);
  border-radius: 50%;
  bottom: -20%;
  left: -30%;
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

/* About Section */
#about {
  background-color: var(--light-lavender);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
  text-align: center;
  border: 1px solid var(--primary-lavender);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background-color: var(--light-mint);
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
  text-align: center;
  border: 1px solid var(--primary-mint);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-top: 1rem;
}

/* Features Section */
#features {
  background-color: var(--light-peach);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--light-cream);
}

.price-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  height: 100%;
  text-align: center;
  border: 2px solid var(--primary-cream);
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 1rem 0;
}

/* Team Section */
#team {
  background-color: var(--light-blue);
}

.team-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
  text-align: center;
  border: 1px solid var(--primary-blue);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-blue);
}

/* Reviews Section */
#reviews {
  background-color: var(--light-lavender);
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
  border: 1px solid var(--primary-lavender);
}

/* Case Study Section */
#casestudy {
  background-color: var(--light-mint);
}

.case-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
  border: 1px solid var(--primary-mint);
}

/* Process Section */
#process {
  background-color: var(--light-peach);
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
  text-align: center;
  border: 1px solid var(--primary-peach);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* FAQ Section */
#faq {
  background-color: var(--light-cream);
}

.faq-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
  border: 1px solid var(--primary-cream);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

/* Contact Section */
#contacts {
  background-color: var(--light-blue);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border: 1px solid var(--primary-blue);
}

.form-control {
  border: 2px solid var(--primary-mint);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(135, 206, 235, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

/* Gallery Section */
#gallery {
  background-color: var(--light-lavender);
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.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-color: var(--dark-blue);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--light-mint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Breadcrumb Styling */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 1.875rem;
  }
  
  h2, .h2 {
    font-size: 1.5rem;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .price-card.featured {
    transform: none;
  }
} 


/* 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);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}
