/* Upcycled Wood Home Décor Shop - Main CSS */
:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-wood: #8B4513;
  --primary-sage: #9CAF88;
  --primary-cream: #F5F5DC;
  --primary-terracotta: #E07A5F;
  --primary-charcoal: #36454F;
  
  /* Light/Dark Shades */
  --wood-light: #CD853F;
  --wood-dark: #654321;
  --sage-light: #B8C9A8;
  --sage-dark: #7A8F68;
  --cream-light: #FFFEF7;
  --cream-dark: #E6E6C7;
  --terracotta-light: #F4A584;
  --terracotta-dark: #C85A3F;
  --charcoal-light: #4A5A6A;
  --charcoal-dark: #2C3E50;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-charcoal);
  line-height: 1.6;
    overflow-x: hidden;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-wood);
}

h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--primary-charcoal);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-wood);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-wood);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Section */
#header {
  background-color: var(--primary-cream);
  border-bottom: 1px solid var(--cream-dark);
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-wood);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--terracotta-light);
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  background: var(--sage-dark);
}

/* About Section */
#about {
  background-color: var(--primary-cream);
  padding: 80px 0;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image {
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Services Section */
#services {
  background-color: white;
  padding: 80px 0;
}

.service-card {
  background: var(--cream-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  background: var(--sage-light);
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-price {
  background: var(--primary-terracotta);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}

/* Features Section */
#features {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream-light) 100%);
  padding: 80px 0;
}

.feature-item {
  text-align: center;
  padding: 30px;
}

.feature-number {
  width: 80px;
  height: 80px;
  background: var(--primary-wood);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

/* Price Plan Section */
#priceplan {
  background-color: white;
  padding: 80px 0;
}

.price-card {
  background: var(--cream-light);
  border: 2px solid var(--cream-dark);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-card.featured {
  border-color: var(--primary-terracotta);
  transform: scale(1.05);
}

.price-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-wood);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
}

/* Team Section */
#team {
  background: var(--primary-cream);
  padding: 80px 0;
}

.team-member {
  text-align: center;
  padding: 30px;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--sage-light);
  margin: 0 auto 20px;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Reviews Section */
#reviews {
  background-color: white;
  padding: 80px 0;
}

.review-card {
  background: var(--cream-light);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-terracotta);
  position: absolute;
  top: -10px;
  left: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-wood);
  margin-top: 20px;
}

/* Case Study Section */
#casestudy {
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--cream-light) 100%);
  padding: 80px 0;
}

.case-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.case-image {
  height: 200px;
  background: var(--wood-light);
}

.case-content {
  padding: 30px;
}

/* Process Section */
#process {
  background-color: white;
  padding: 80px 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 30px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--primary-sage);
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

/* Timeline Section */
#timeline {
  background: var(--primary-cream);
  padding: 80px 0;
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-wood);
}

/* Career Section */
#career {
  background-color: white;
  padding: 80px 0;
}

.career-card {
  background: var(--cream-light);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateX(10px);
}

/* Core Info Section */
#coreinfo {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--wood-light) 100%);
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-image {
  height: 180px;
  overflow: hidden;
  margin-bottom: 15px;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.info-card:hover .info-image img {
  transform: scale(1.05);
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Section */
#contacts {
  background-color: white;
  padding: 80px 0;
}

.contact-form {
  background: var(--cream-light);
  border-radius: 15px;
  padding: 40px;
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.btn-primary {
  background: var(--primary-terracotta);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

/* Blog Section */
#blog {
  background: var(--primary-cream);
  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;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: var(--sage-light);
}

.blog-content {
  padding: 25px;
}

.blog-link {
  color: var(--primary-terracotta);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--terracotta-dark);
}

/* FAQ Section */
#faq {
  background-color: white;
  padding: 80px 0;
}

.faq-card {
  background: var(--cream-light);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-sage);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-wood);
  margin-bottom: 15px;
}

/* Gallery Section */
#gallery {
  background: var(--primary-cream);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 250px;
  background: var(--sage-light);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Footer Section */
#footer {
  background-color: var(--primary-charcoal);
  color: white;
  padding: 60px 0 20px;
}

.footer-section h5 {
  color: var(--primary-cream);
  margin-bottom: 20px;
}

.footer-section a {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-terracotta);
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
  background: var(--cream-light);
  padding: 20px 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  background: var(--primary-sage);
  border-radius: 5px;
}

/* Utility Classes */
.text-wood { color: var(--primary-wood); }
.text-sage { color: var(--primary-sage); }
.text-terracotta { color: var(--primary-terracotta); }
.bg-wood { background-color: var(--primary-wood); }
.bg-sage { background-color: var(--primary-sage); }
.bg-cream { background-color: var(--primary-cream); }

.section-padding {
  padding: 80px 0;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; } 


/* 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;
    }
}
