@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Color Palette - Thrift Fashion Theme */
:root {
  --primary-sage: #99b0a6;
  --primary-cream: #ffffff;
  --primary-terracotta: #dab086;
  --primary-dusty-rose: #ceb9b9;
  --primary-warm-gray: #7f7264;
  
  /* Light/Dark Shades */
  --sage-light: #add2b6;
  --sage-dark: #7e9982;
  --cream-light: #FDFCF7;
  --cream-dark: #d9d1c0;
  --terracotta-light: #e1bd7c;
  --terracotta-dark: #c4a074;
  --rose-light: #e2bbb9;
  --rose-dark: #a48d83;
  --gray-light: #938c84;
  --gray-dark: #69625d;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-warm-gray);
  background-color: var(--primary-cream);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-warm-gray);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background-color: var(--primary-cream);
  padding: 0.75rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-sage);
}

.navbar-nav .nav-link {
  color: var(--primary-warm-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

.hero-content h1 {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--primary-warm-gray);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

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

.section-title h2 {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.section-title h3 {
  color: var(--primary-dusty-rose);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--primary-warm-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.custom-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

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

.custom-card .card-body {
  padding: 1.5rem;
}

.custom-card .card-title {
  color: var(--primary-sage);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.custom-card .card-text {
  color: var(--primary-warm-gray);
  line-height: 1.6;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-price {
  color: var(--primary-terracotta);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  text-align: center;
  position: relative;
  height: 100%;
}

.price-card.featured {
  background: var(--primary-sage);
  color: white;
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.price-card.featured .price-value {
  color: white;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-sage);
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  height: 100%;
}

.review-stars {
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

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

.faq-question {
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--primary-warm-gray);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

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

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

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

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

.btn-secondary {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  color: white;
}

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

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

.footer h5 {
  color: var(--primary-cream);
  margin-bottom: 1rem;
}

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

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

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background: var(--sage-light);
}

/* Utility Classes */
.text-sage {
  color: var(--primary-sage);
}

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

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

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

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

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--rose-light));
  opacity: 0.1;
  z-index: -1;
}

.blob-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.blob-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 5%;
}

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

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


/* 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;
    }
}
