/* Vintage Furniture Restoration Studio - Main Styles */

:root {
  /* Primary Vintage Color Palette */
  --primary-cream: #f5f2e8;
  --primary-burgundy: #8b4a5c;
  --primary-sage: #9db4a0;
  --primary-brown: #7d5a4a;
  --primary-charcoal: #4a4a4a;
  
  /* Light/Dark Variations */
  --light-cream: #faf9f5;
  --dark-burgundy: #6b3847;
  --light-sage: #c5d4c7;
  --dark-brown: #5d3f33;
  --light-charcoal: #6a6a6a;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --line-height-base: 1.6;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--primary-charcoal);
  background-color: var(--light-cream);
  margin: 0;
  padding: 0;
}

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

/* Header Styles */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-burgundy);
}

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

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

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

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
    padding-top: 225px;
}

.hero-section .lead {
  font-size: var(--font-size-large);
  color: var(--primary-brown);
  margin-bottom: 1.5rem;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: var(--font-size-large);
  color: var(--primary-brown);
  margin-bottom: 1rem;
  text-align: center;
}

.section-desc {
  color: var(--primary-charcoal);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Styles */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

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

.card-header {
  background-color: var(--primary-cream);
  border-bottom: 1px solid var(--light-sage);
  font-weight: 600;
  color: var(--primary-burgundy);
}

/* Service Cards */
.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

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

/* Team Cards */
.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

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

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

.btn-outline-primary {
  color: var(--primary-burgundy);
  border-color: var(--primary-burgundy);
}

.btn-outline-primary:hover {
  background-color: var(--primary-burgundy);
  border-color: var(--primary-burgundy);
}

/* Form Styles */
.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-burgundy);
  box-shadow: 0 0 0 0.2rem rgba(139, 74, 92, 0.25);
}

/* Gallery Styles */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

/* Timeline Styles */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background-color: var(--primary-burgundy);
  border-radius: 50%;
}

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

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

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

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

/* Background Variations */
.bg-light-cream {
  background-color: var(--light-cream);
}

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

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

/* Text Colors */
.text-burgundy {
  color: var(--primary-burgundy);
}

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

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

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

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

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}


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