/* Vintage Furniture Restoration Studio - Main Styles */

/* Color Palette - Vintage Furniture Theme */
:root {
  --primary-cream: #e0e0e0;
  --primary-brown: #7c2c08;
  --primary-gold: #e5a31f;
  --primary-forest: #3b593d;
  --primary-burgundy: #980714;
  
  /* Light shades */
  --light-cream: #FAF8F3;
  --light-brown: #e9cc8c;
  --light-gold: #f1db96;
  --light-forest: #677c64;
  --light-burgundy: #d06663;
  
  /* Dark shades */
  --dark-cream: #e3d3b5;
  --dark-brown: #713e22;
  --dark-gold: #a07b17;
  --dark-forest: #142616;
  --dark-burgundy: #6f000a;
}

/* Bootstrap 5 Base Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Global Styles */
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--primary-brown);
  background-color: var(--primary-cream);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 600;
  color: var(--primary-brown);
}

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

/* Header Styles */
.navbar {
  background-color: var(--light-cream);
  box-shadow: 0 2px 10px rgba(150, 56, 24, 0.10);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-brown);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--light-brown);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.1;
}

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

/* About Section */
.about-section {
  background-color: var(--light-cream);
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(139, 56, 23, 0.10);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-gold);
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Services Section */
.services-section {
  background-color: white;
}

.service-card {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(162, 98, 10, 0.10);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-10px);
}

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

/* Features Section */
.features-section {
  background-color: var(--light-cream);
}

/* Price Plan Section */
.priceplan-section {
  background-color: white;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(134, 72, 25, 0.15);
  border: 3px solid var(--light-gold);
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-gold);
  transform: scale(1.05);
}

.price-featured {
  border-color: var(--primary-burgundy);
  transform: scale(1.1);
}

/* Team Section */
.team-section {
  background-color: var(--light-cream);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(121, 64, 18, 0.10);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-gold);
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
  background-color: white;
}

.review-card {
  background: var(--light-cream);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(138, 86, 20, 0.10);
  border-left: 5px solid var(--primary-gold);
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--light-cream);
}

.casestudy-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(135, 59, 6, 0.10);
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  background-color: white;
}

.process-step {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border-top: 4px solid var(--primary-gold);
  box-shadow: 0 5px 15px rgba(142, 60, 26, 0.10);
}

/* Timeline Section */
.timeline-section {
  background-color: var(--light-cream);
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--primary-burgundy);
  box-shadow: 0 3px 10px rgba(129, 48, 16, 0.10);
}

/* Career Section */
.career-section {
  background-color: white;
}

.career-card {
  background: var(--light-cream);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(132, 62, 25, 0.10);
  transition: transform 0.3s ease;
}

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

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-cream);
}

.coreinfo-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(148, 89, 20, 0.10);
  border-top: 4px solid var(--primary-forest);
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-form {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(142, 63, 11, 0.10);
}

.form-control {
  border: 2px solid var(--light-brown);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  background-color: white;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(221, 163, 16, 0.25);
}

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

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

/* Blog Section */
.blog-section {
  background-color: var(--light-cream);
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(149, 90, 9, 0.10);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.faq-card {
  background: var(--light-cream);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(125, 74, 5, 0.10);
  border: 1px solid var(--light-brown);
}

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

.faq-answer {
  color: var(--dark-brown);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-cream);
  padding: 4rem 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(134, 80, 22, 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-color: var(--primary-brown);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

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

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

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

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

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

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

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

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

/* Breadcrumb Styles */
.breadcrumb-image {
  max-height: 40px;
  width: auto;
} 

.hero-section h1 {
    padding-top: 275px;
}


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
