/* Ethical Fashion Dropshipping Platform - Main Styles */

/* Color Palette - Pastel High Contrast */
:root {
  --primary-sage: #a4ae91;
  --primary-terracotta: #e4bf84;
  --primary-cream: #e8ded2;
  --primary-charcoal: #222c38;
  --primary-dusty-rose: #e1c4c2;
  
  /* Light/Dark Shades */
  --sage-light: #bfc6b1;
  --sage-dark: #779d6f;
  --terracotta-light: #e9b18b;
  --terracotta-dark: #c48562;
  --cream-light: #FDFCF9;
  --cream-dark: #e8e8e5;
  --charcoal-light: #35576f;
  --charcoal-dark: #212b3a;
  --rose-light: #f9dbdf;
  --rose-dark: #d58b90;
}

/* Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--primary-charcoal);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-charcoal);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

p, .lead {
  font-size: 1rem;
  color: var(--charcoal-light);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: var(--primary-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 150px;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-sage);
  border-color: var(--primary-sage);
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 25px;
}

.btn-outline-primary:hover {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(46, 66, 88, 0.10);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(43, 68, 84, 0.15);
}

.card-header {
  background-color: var(--primary-cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

/* Services Section */
.services-section {
  background-color: var(--cream-light);
  padding: 100px 0;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(48, 61, 84, 0.10);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.price-tag {
  background-color: var(--primary-terracotta);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: white;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-dusty-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}

/* Team Section */
.team-section {
  background-color: var(--cream-light);
  padding: 100px 0;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-sage);
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0;
  background-color: white;
}

.review-card {
  background-color: var(--primary-cream);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-sage);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background-color: var(--cream-light);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: white;
}

.faq-card {
  background-color: var(--primary-cream);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--charcoal-light);
  margin: 0;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--cream-light);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--cream-dark);
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(161, 190, 134, 0.25);
}

.contact-info {
  background: white;
  border-radius: 15px;
  padding: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
}

/* Footer */
.footer-section {
  background-color: var(--primary-charcoal);
  color: white;
  padding: 60px 0 30px;
}

.footer-section h5 {
  color: var(--primary-sage);
  margin-bottom: 20px;
}

.footer-section a {
  color: #bfccd1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-sage);
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
}

/* Utility Classes */
.section-padding {
  padding: 100px 0;
}

.text-sage {
  color: var(--primary-sage);
}

.bg-sage {
  background-color: var(--primary-sage);
}

.text-terracotta {
  color: var(--primary-terracotta);
}

.bg-terracotta {
  background-color: var(--primary-terracotta);
}

/* Animation Base */
[data-sal] {
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-sal] {
    animation: none !important;
    transition: none !important;
  }
}

/* Navbar Scrolled State */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 20px 0;
  background-color: var(--primary-cream);
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
