/* Cat Furniture Boutique - Main Styles */
@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://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

:root {
  /* Primary Color Palette */
  --primary-cream: #F5F1E8;
  --primary-sage: #8B9A7A;
  --primary-terracotta: #D4A574;
  --primary-charcoal: #3A3A3A;
  --primary-warm-white: #FEFCF8;
  
  /* Light/Dark Shades */
  --cream-light: #FDFBF5;
  --cream-dark: #E8E2D5;
  --sage-light: #A8B89A;
  --sage-dark: #6B7A5A;
  --terracotta-light: #E2B991;
  --terracotta-dark: #C19657;
  --charcoal-light: #5A5A5A;
  --charcoal-dark: #2A2A2A;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-sage), var(--primary-terracotta));
  --gradient-warm: linear-gradient(135deg, var(--primary-warm-white), var(--primary-cream));
  --gradient-accent: linear-gradient(135deg, var(--terracotta-light), var(--primary-terracotta));
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-accent: Georgia, 'Times New Roman', serif;
  
  /* Conservative font sizes */
  font-size: 16px;
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-warm-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--charcoal-light);
}

/* Header */
.navbar {
  background: var(--gradient-warm) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-accent);
  font-size: 1.4rem !important;
  font-weight: 700;
  color: var(--primary-charcoal) !important;
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--primary-warm-white);
}

.hero-section h1 {
  color: var(--primary-warm-white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: var(--cream-light);
  font-size: 1.1rem;
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  background: var(--primary-terracotta);
  opacity: 0.2;
  border-radius: 50%;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
  background: var(--gradient-warm);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--primary-warm-white);
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background: var(--gradient-accent);
  color: white;
}

.features-section h2, .features-section h3 {
  color: white;
}

.features-section p {
  color: var(--cream-light);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--primary-cream);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

/* Team Section */
.team-section {
  background: var(--primary-warm-white);
}

.team-card {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-sage);
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-warm);
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 1rem;
}

.review-stars {
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
  background: var(--primary-warm-white);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  background: var(--primary-cream);
}

.accordion-button {
  background: var(--primary-warm-white);
  color: var(--primary-charcoal);
  border: none;
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-sage);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-sage);
  color: white;
}

/* Gallery */
.gallery-section {
  background: var(--primary-warm-white);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Case Studies Section */
.case-study-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  background: var(--primary-warm-white);
}

.process-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-card i {
  font-size: 2rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--primary-cream);
}

.timeline-item {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-item h6 {
  color: var(--primary-sage);
  font-weight: 600;
}

/* Career Section */
.career-section {
  background: var(--primary-warm-white);
}

.career-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--primary-cream);
}

.coreinfo-item {
  padding: 1rem;
  text-align: center;
}

.coreinfo-item h6 {
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Blog Section */
.blog-section {
  background: var(--primary-warm-white);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--sage-dark);
}

/* FAQ Section */
.faq-section {
  background: var(--primary-cream);
}

.accordion-button {
  background: var(--primary-warm-white);
  color: var(--primary-charcoal);
  border: none;
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-sage);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-sage);
  color: white;
}

.accordion-body {
  background: var(--cream-light);
}

/* Gallery */
.gallery-section {
  background: var(--primary-warm-white);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-section {
  background: var(--gradient-primary);
  color: white;
}

.contact-section h2, .contact-section h3 {
  color: white;
}

.contact-section p {
  color: var(--cream-light);
}

.form-control {
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background: var(--primary-terracotta);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--primary-charcoal);
  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(--primary-terracotta);
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Space page */
#space {
  min-height: 70vh;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Swiper customization */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet-active {
  background: var(--primary-sage);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Utilities */
.text-primary-sage { color: var(--primary-sage) !important; }
.text-primary-terracotta { color: var(--primary-terracotta) !important; }
.bg-primary-cream { background-color: var(--primary-cream) !important; }
.bg-gradient-primary { background: var(--gradient-primary) !important; } 


/* 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;
    }
}
