/* Vintage Furniture Restoration Studio - Main Styles */

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Color Palette - Vintage Furniture Theme */
  --primary-warm-brown: #8B4513;
  --primary-cream: #F5F5DC;
  --primary-sage: #9CAF88;
  --primary-charcoal: #36454F;
  --primary-gold: #DAA520;
  
  /* Light Shades */
  --light-warm-brown: #CD853F;
  --light-cream: #FFFEF7;
  --light-sage: #B8D1A6;
  --light-charcoal: #708090;
  --light-gold: #F4D03F;
  
  /* Dark Shades */
  --dark-warm-brown: #654321;
  --dark-cream: #E6E6FA;
  --dark-sage: #6B8E5A;
  --dark-charcoal: #2F4F4F;
  --dark-gold: #B8860B;
  
  /* Typography */
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===== GENERAL STYLES ===== */
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--primary-charcoal);
  background-color: var(--light-cream);
  line-height: 1.6;
}

/* ===== HEADER STYLES ===== */
.navbar {
  background-color: var(--primary-cream);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-warm-brown);
  font-size: var(--font-size-xl);
  font-weight: 700;
  text-decoration: none;
}

.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-warm-brown);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

.hero-title {
  color: var(--primary-warm-brown);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--primary-charcoal);
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
}

.hero-description {
  color: var(--dark-charcoal);
  font-size: var(--font-size-base);
  margin-bottom: 2rem;
}

/* ===== SECTION STYLES ===== */
.section-padding {
  padding: 4rem 0;
}

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

.section-subtitle {
  color: var(--primary-charcoal);
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-description {
  color: var(--dark-charcoal);
  font-size: var(--font-size-base);
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== CARD STYLES ===== */
.custom-card {
  background: white;
  border: 1px solid var(--primary-cream);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.custom-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-img-top {
  border-radius: 0.5rem 0.5rem 0 0;
  height: 200px;
  object-fit: cover;
}

.card-title {
  color: var(--primary-warm-brown);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--primary-charcoal);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.price-tag {
  background-color: var(--primary-gold);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: var(--font-size-sm);
}

/* ===== TEAM MEMBER STYLES ===== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

.team-name {
  color: var(--primary-warm-brown);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-charcoal);
  font-size: var(--font-size-sm);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border-left: 4px solid var(--primary-sage);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  color: var(--primary-charcoal);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

.testimonial-author {
  color: var(--primary-warm-brown);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

/* ===== FAQ STYLES ===== */
.faq-card {
  background: white;
  border: 1px solid var(--primary-cream);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  color: var(--primary-warm-brown);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--primary-charcoal);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background-color: var(--primary-cream);
}

.form-control {
  border: 1px solid var(--light-sage);
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

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

.btn-primary {
  background-color: var(--primary-warm-brown);
  border-color: var(--primary-warm-brown);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-warm-brown);
  border-color: var(--dark-warm-brown);
}

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

.footer h5 {
  color: var(--primary-gold);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: var(--light-cream);
  font-size: var(--font-size-sm);
  text-decoration: none;
}

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

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

/* ===== GALLERY STYLES ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
}

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

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

/* ===== UTILITY CLASSES ===== */
.text-primary-brown {
  color: var(--primary-warm-brown);
}

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

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

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

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb-image {
  width: 100%;
  max-width: 100px;
  height: auto;
}


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