/* ===== CURATED THRIFT FASHION - MAIN STYLES ===== */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-sage: #8a9f76;        /* Sage green - sustainability */
  --primary-blush: #e8a9ad;       /* Dusty rose - vintage charm */
  --primary-cream: #ded2c3;       /* Warm cream - thrift appeal */
  --primary-denim: #6993a9;       /* Soft denim - fashion */
  --primary-lavender: #cd9bd7;    /* Muted lavender - creativity */

  /* Light Shades */
  --sage-light: #cdd4c5;
  --blush-light: #dfb5b8;
  --cream-light: #FAF7F0;
  --denim-light: #95aec3;
  --lavender-light: #c2abd0;

  /* Dark Shades */
  --sage-dark: #9dae8f;
  --blush-dark: #dbb1b2;
  --cream-dark: #e8e2d7;
  --denim-dark: #7291a0;
  --lavender-dark: #9b81b1;

  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  
  /* Conservative header sizes */
  --h1-size: 2.25rem;
  --h2-size: 1.875rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --h5-size: 1.125rem;
  --h6-size: 1rem;
  
  /* Logo size - conservative */
  --logo-size: 1.5rem;
}

/* ===== GLOBAL STYLES ===== */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #2e2c2c;
  background-color: var(--cream-light);
}

.navbar-brand {
  font-size: var(--logo-size) !important;
  font-weight: 600;
  color: var(--sage-dark);
}

h1 { font-size: var(--h1-size); color: var(--sage-dark); font-weight: 600; }
h2 { font-size: var(--h2-size); color: var(--denim-dark); font-weight: 600; }
h3 { font-size: var(--h3-size); color: var(--blush-dark); font-weight: 500; }
h4 { font-size: var(--h4-size); color: var(--sage-dark); font-weight: 500; }
h5 { font-size: var(--h5-size); color: var(--denim-dark); font-weight: 500; }
h6 { font-size: var(--h6-size); color: var(--lavender-dark); font-weight: 500; }

/* ===== HEADER ===== */

.navbar {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--sage-light) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sage-light);
}

.navbar-nav .nav-link {
  color: var(--sage-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--blush-dark);
}

/* ===== HERO SECTION ===== */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--lavender-light) 50%, var(--blush-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--sage-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

/* ===== SECTIONS ===== */

section {
  padding: 4rem 0;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--denim-dark);
  margin-bottom: 1.62rem;
}

.section-desc {
  color: #625c5c;
  margin-bottom: 3rem;
}

/* ===== ABOUT SECTION ===== */

.about-section {
  background-color: var(--cream-light);
}

.feature-card {
  background: white;
  border-radius: 17px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(164, 191, 147, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 30px rgba(178, 186, 163, 0.15);
}

/* ===== SERVICES SECTION ===== */

.services-section {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream-light) 100%);
}

.service-card {
  background: white;
  border-radius: 111px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 9px 25px rgba(216, 193, 233, 0.10);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-13px);
  box-shadow: 0 15px 40px rgba(183, 152, 197, 0.15);
}

.service-price {
  font-size: 1.57rem;
  font-weight: 700;
  color: var(--blush-dark);
  margin-top: 1rem;
}

/* ===== FEATURES SECTION ===== */

.features-section {
  background-color: var(--cream-light);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--lavender-dark);
  margin-bottom: 1.65rem;
}

/* ===== PRICE PLAN SECTION ===== */

.priceplan-section {
  background: linear-gradient(135deg, var(--denim-light) 0%, var(--cream-light) 100%);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 11px 35px rgba(114, 157, 186, 0.12);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 19px 50px rgba(117, 145, 171, 0.20);
}

.plan-price {
  font-size: 2.56rem;
  font-weight: 800;
  color: var(--sage-dark);
  margin: 1rem 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.plan-features li {
  padding: 0.5rem 0;
  color: #7f7f7f;
}

/* ===== TEAM SECTION ===== */

.team-section {
  background-color: var(--cream-light);
}

.team-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 25px rgba(255, 218, 217, 0.10);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 17px 35px rgba(247, 182, 185, 0.15);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.73rem;
  border: 6px solid var(--blush-light);
}

/* ===== REVIEWS SECTION ===== */

.reviews-section {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--cream-light) 100%);
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(221, 192, 191, 0.10);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--blush-light);
  font-family: serif;
}

/* ===== CASE STUDY SECTION ===== */

.casestudy-section {
  background-color: var(--cream-light);
}

.casestudy-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 25px rgba(156, 170, 138, 0.10);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.casestudy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(161, 173, 151, 0.15);
}

/* ===== PROCESS SECTION ===== */

.process-section {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--cream-light) 100%);
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-number {
  background: var(--sage-dark);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* ===== TIMELINE SECTION ===== */

.timeline-section {
  background-color: var(--cream-light);
}

.timeline-item {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(120, 147, 156, 0.10);
  border-left: 9px solid var(--denim-dark);
}

/* ===== CAREER SECTION ===== */

.career-section {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream-light) 100%);
}

.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 9px 20px rgba(179, 194, 162, 0.10);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.career-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(135, 152, 106, 0.15);
}

/* ===== CORE INFO SECTION ===== */

.coreinfo-section {
  background-color: var(--cream-light);
}

.coreinfo-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 9px 20px rgba(203, 162, 217, 0.10);
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(179, 150, 198, 0.15);
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  background: linear-gradient(135deg, var(--denim-light) 0%, var(--cream-light) 100%);
}

.contact-form {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 35px rgba(126, 152, 175, 0.15);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 0.2rem rgba(140, 155, 126, 0.25);
}

.btn-primary {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--sage-light);
  border-color: var(--sage-light);
  transform: translateY(-2px);
}

.form-control.is-invalid {
  border-color: #cd213a;
  box-shadow: 0 0 0 0.2rem rgba(211, 48, 80, 0.25);
}

.form-check-input.is-invalid {
  border-color: #d1213e;
}

.form-control:valid {
  border-color: var(--sage-dark);
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
.btn:focus,
.form-control:focus,
.form-check-input:focus {
  outline: 2px solid var(--sage-dark);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--sage-dark);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 9999;
}

.skip-link:focus {
  top: 6px;
}

/* ===== BLOG SECTION ===== */

.blog-section {
  background-color: var(--cream-light);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 173, 180, 0.10);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(241, 166, 165, 0.15);
}

.blog-content {
  padding: 2rem;
}

/* ===== FAQ SECTION ===== */

.faq-section {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--cream-light) 100%);
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.69rem;
  box-shadow: 0 4px 20px rgba(199, 180, 207, 0.10);
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(177, 142, 205, 0.15);
}

.faq-question {
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  color: #4e4a4a;
  line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */

.gallery-section {
  background-color: var(--cream-light);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(153, 167, 131, 0.10);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===== FOOTER ===== */

.footer {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--denim-dark) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--cream-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--blush-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ===== BREADCRUMB ===== */

.breadcrumb-section {
  background-color: var(--cream-light);
  padding: 2rem 0;
}

.breadcrumb-image {
  max-width: 200px;
  height: auto;
}

/* ===== RESPONSIVE CONSIDERATIONS ===== */

@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;
  }
}

/* ===== DARK MODE SUPPORT ===== */


/* ===== PRINT STYLES ===== */

@media print {
  .navbar,
  .footer,
  .gallery-section,
  .back-to-top {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .price-card {
    page-break-inside: avoid;
    border: 1px solid #dcd7d6;
    margin-bottom: 1rem;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
}

/* ===== UTILITIES ===== */

.text-sage { color: var(--sage-dark); }
.text-blush { color: var(--blush-dark); }
.text-denim { color: var(--denim-dark); }
.text-lavender { color: var(--lavender-dark); }

.bg-sage { background-color: var(--sage-light); }
.bg-blush { background-color: var(--blush-light); }
.bg-denim { background-color: var(--denim-light); }
.bg-lavender { background-color: var(--lavender-light); }

/* ===== CUSTOM GRID FIXES ===== */

/* 5-column layout for team and process sections */
@media (min-width: 992px) {
  .row .col-lg-2:nth-child(6n+1) {
    margin-left: 8.333%;
  }
  
  .row .col-lg-2:nth-child(6n+6) {
    margin-right: 8.333%;
  }
  
  /* Center 5 items in a row */
  .row.justify-content-center .col-lg-2 {
    flex: 0 0 18%;
    max-width: 18%;
  }
}

/* Ensure proper spacing on smaller screens */
@media (max-width: 991.98px) {
  .row.justify-content-center .col-lg-2 {
    flex: 0 0 auto;
    max-width: none;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
