/* Vintage Furniture Restoration Studio - Main Styles */

/* Color Palette - Vintage Furniture Theme */
:root {
  --primary-cream: #dfdfde;
  --primary-brown: #794813;
  --primary-gold: #ead235;
  --primary-forest: #314931;
  --primary-burgundy: #880438;
  
  /* Light shades */
  --light-cream: #FAF8F3;
  --light-brown: #caa081;
  --light-gold: #e4e08c;
  --light-forest: #5d765d;
  --light-burgundy: #b65f60;
  
  /* Dark shades */
  --dark-cream: #f1e5d7;
  --dark-brown: #5b3b1c;
  --dark-gold: #a16c02;
  --dark-forest: #1f481e;
  --dark-burgundy: #4c0722;
}

/* 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(119, 44, 10, 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, 57, 15, 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(155, 83, 9, 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(147, 75, 24, 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(117, 77, 20, 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(118, 46, 5, 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(142, 80, 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(115, 71, 17, 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(118, 54, 27, 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(118, 65, 19, 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(135, 88, 22, 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(138, 67, 12, 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(232, 193, 34, 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(140, 91, 27, 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(161, 91, 10, 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(151, 77, 28, 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: 100px;
}


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
