/* Ethical Fashion Dropshipping Platform - Main Styles */

/* Color Palette - Pastel High Contrast */
:root {
  --primary-sage: #899876;
  --primary-terracotta: #c7a981;
  --primary-cream: #e1ddd1;
  --primary-charcoal: #384a67;
  --primary-dusty-rose: #e6caca;
  
  /* Light/Dark Shades */
  --sage-light: #a8bd93;
  --sage-dark: #81ab7b;
  --terracotta-light: #efbc86;
  --terracotta-dark: #d2a55a;
  --cream-light: #FDFCF9;
  --cream-dark: #d5ccc1;
  --charcoal-light: #3a4a5b;
  --charcoal-dark: #1e333f;
  --rose-light: #f5b2ae;
  --rose-dark: #b28389;
}

/* 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(45, 64, 79, 0.10);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 52, 63, 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(32, 42, 61, 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(166, 185, 152, 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(--terracotta-light);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-section a {
  color: #c1c4c6;
  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 - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
