/* Upcycled Denim Accessories Store - Main CSS */
/* Bootstrap 5 Integration - NO OVERRIDES */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-denim: #6ba3d6;
  --primary-sage: #9db5a1;
  --primary-cream: #f5f1e8;
  --primary-rust: #d4886e;
  --primary-charcoal: #4a5568;
  
  /* Light/Dark Shades */
  --denim-light: #8bb8e3;
  --denim-dark: #5a8bb8;
  --sage-light: #b8c9bb;
  --sage-dark: #7a9b7f;
  --cream-light: #faf8f1;
  --cream-dark: #ede6d5;
  --rust-light: #e1a588;
  --rust-dark: #c2755a;
  --charcoal-light: #6b7280;
  --charcoal-dark: #374151;
  
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-small: 3rem 0;
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--charcoal-dark);
  background-color: var(--cream-light);
}

/* Conservative Typography Sizes */
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--charcoal-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal-dark);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

/* Header */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--charcoal-dark);
}

.navbar {
  background-color: var(--cream-light);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1rem 0;
}

.nav-link {
  color: var(--charcoal-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-denim);
}

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

.hero-content {
  z-index: 2;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-denim);
  border-radius: 50%;
  opacity: 0.1;
  top: 20%;
  right: 10%;
  z-index: 1;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-denim);
  border-color: var(--primary-denim);
  color: white;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

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

.btn-outline-secondary {
  border-color: var(--charcoal-light);
  color: var(--charcoal-dark);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: var(--charcoal-dark);
  border-color: var(--charcoal-dark);
  color: white;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--cream-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-denim);
  font-size: var(--font-size-large);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background-color: white;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--charcoal-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--charcoal-light);
  font-size: var(--font-size-small);
}

/* Services Cards */
.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-rust);
  margin-top: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--charcoal-light);
  font-size: var(--font-size-small);
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--cream-dark);
}

.team-name {
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-denim);
  font-size: var(--font-size-small);
  font-weight: 500;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-denim);
  box-shadow: 0 0 0 0.2rem rgba(107, 163, 214, 0.25);
}

.form-label {
  color: var(--charcoal-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--charcoal-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p, .footer li {
  color: var(--cream-dark);
  font-size: var(--font-size-small);
}

.footer a {
  color: var(--cream-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* FAQ */
.faq-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 0.75rem;
}

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

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Animations - Sal.js Integration */
[data-sal] {
  transition-duration: 0.5s;
}

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

.hero-section h1 {
    padding-top: 200px;
}


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

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

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

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
