/* Vintage Trailer Restoration - Main CSS */
:root {
  /* Vintage Trailer Color Palette */
  --primary-rust: #C65D3B;
  --primary-sage: #8B9467;
  --primary-cream: #F4E4BC;
  --primary-charcoal: #2C2C2C;
  --primary-copper: #B87333;
  
  /* Light/Dark Shades */
  --rust-light: #D6825F;
  --rust-dark: #A14C2E;
  --sage-light: #A4B085;
  --sage-dark: #6B7A4F;
  --cream-light: #F9F1E1;
  --cream-dark: #E6D4A8;
  --charcoal-light: #404040;
  --charcoal-dark: #1A1A1A;
  --copper-light: #C8955C;
  --copper-dark: #8F5A23;
  
  /* Conservative Font Sizes */
  --navbar-brand-size: 1.25rem;
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --p-size: 1rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--cream-light);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--charcoal-dark);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }

p {
  font-size: var(--p-size);
  margin-bottom: 1rem;
  color: var(--primary-charcoal);
}

/* Header & Navigation */
.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 700;
  color: var(--charcoal-dark) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
  box-shadow: 0 2px 10px rgba(44, 44, 44, 0.1);
  padding: 1rem 0;
}

.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-rust) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--primary-sage) 50%, var(--sage-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../TEA_images/vintage-trailer-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: var(--h3-size);
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--p-size);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-rust) 0%, var(--rust-dark) 100%);
  border: none;
  border-radius: 5px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rust-dark) 0%, var(--primary-rust) 100%);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-copper) 0%, var(--copper-dark) 100%);
  border: none;
  border-radius: 5px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--copper-dark) 0%, var(--primary-copper) 100%);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--charcoal-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-rust);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--primary-charcoal);
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-rust);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: white;
}

.service-card {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-rust);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-rust);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--primary-sage) 100%);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-rust);
}

/* Testimonials */
.reviews-section {
  background: white;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-charcoal);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-rust);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-rust);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--primary-charcoal);
  border-radius: 0 0 10px 10px;
}

/* Gallery */
.gallery-section {
  background: white;
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--sage-dark) 100%);
  color: white;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-rust);
  box-shadow: 0 0 0 0.2rem rgba(198, 93, 59, 0.25);
}

/* Footer */
.footer {
  background-color: #0a66c2;
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-rust);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-rust);
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Blog Section */
.blog-section {
  background: white;
}

.blog-card {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--charcoal-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-rust);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--rust-dark);
}

/* Process/Timeline Steps */
.process-section {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  background: var(--primary-rust);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* Price Plans */
.priceplan-section {
  background: white;
}

.price-card {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(198, 93, 59, 0.2);
}

.price-card.featured {
  border: 3px solid var(--primary-rust);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-rust);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-rust);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--primary-charcoal);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Utilities */
.text-rust { color: var(--primary-rust) !important; }
.text-sage { color: var(--primary-sage) !important; }
.text-copper { color: var(--primary-copper) !important; }
.bg-rust { background-color: var(--primary-rust) !important; }
.bg-sage { background-color: var(--primary-sage) !important; }
.bg-cream { background-color: var(--primary-cream) !important; }

/* Breadcrumbs */
.breadcrumb-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
} 


/* 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;
    }
}
