:root {
  /* Rustic Sign Color Palette - 5 Primary Colors */
  --primary-wood: #7e2d08;
  --primary-iron: #203a3b;
  --primary-copper: #bf6f28;
  --primary-forest: #268429;
  --primary-cream: #edecdd;
  
  /* Light Shades */
  --light-wood: #ddc7a3;
  --light-iron: #5f6f83;
  --light-copper: #bb8b33;
  --light-forest: #4dcd3c;
  --light-cream: #FFFEF7;
  
  /* Dark Shades */
  --dark-wood: #7a3f1f;
  --dark-iron: #212121;
  --dark-copper: #975b22;
  --dark-forest: #0b6c00;
  --dark-cream: #e6e6e6;
  
  /* Conservative Font Sizes */
  --base-font: 16px;
  --small-font: 14px;
  --large-font: 18px;
  --h1-size: 2.2rem;
  --h2-size: 1.8rem;
  --h3-size: 1.5rem;
  --brand-size: 1.4rem;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: var(--base-font);
  line-height: 1.6;
  color: var(--dark-iron);
  background: var(--light-cream);
  margin: 0;
  padding: 0;
}

/* Typography */
h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--dark-wood);
  margin-bottom: 1.23rem;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--primary-iron);
  margin-bottom: 0.96rem;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 500;
  color: var(--primary-wood);
  margin-bottom: 0.77rem;
}

p {
  font-size: var(--base-font);
  margin-bottom: 1.23rem;
  color: var(--dark-iron);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-wood), var(--dark-wood));
  box-shadow: 0 17px 10px rgba(0,0,0,0.1);
  padding: 0.8rem 0;
}

.navbar-brand {
  font-size: var(--brand-size) !important;
  font-weight: 700;
  color: var(--light-cream) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--light-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-copper) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--dark-forest) 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-image: url('../VIX_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--light-cream);
}

.hero-title {
  font-size: var(--h1-size);
  color: var(--light-cream);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.23rem;
}

.section-subtitle {
  text-align: center;
  color: var(--primary-copper);
  margin-bottom: 1.23rem;
}

/* About Section */
.about-section {
  background: var(--light-cream);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(0,0,0,0.1);
  margin-bottom: 2.16rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-item i {
  font-size: 3.06rem;
  color: var(--primary-copper);
  margin-bottom: 1.23rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(45deg, var(--light-cream), white);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.16rem;
  border: 3px solid var(--primary-copper);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.service-price {
  font-size: 2.07rem;
  font-weight: 700;
  color: var(--primary-wood);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-cream);
}

/* Team Section */
.team-section {
  background: var(--primary-cream);
}

.team-member {
  text-align: center;
  margin-bottom: 2.16rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-copper);
  margin-bottom: 1.23rem;
}

/* Reviews/Testimonials */
.reviews-section {
  background-color: #838383;
  color: var(--light-cream);
}

.review-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2.16rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-copper);
  margin-top: 1.25rem;
}

/* Blog Section */
.blog-section {
  background: var(--light-cream);
}

.blog-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.16rem;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-item {
  border: 1px solid var(--light-copper);
  border-radius: 8px;
  margin-bottom: 1.23rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-copper);
  color: white;
  padding: 1rem;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
}

.faq-answer {
  padding: 1rem;
  background: white;
  border-top: 1px solid var(--light-copper);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(45deg, var(--primary-wood), var(--light-wood));
  color: var(--light-cream);
}

.contact-form {
  background: rgba(255,255,255,0.95);
  padding: 2rem;
  border-radius: 15px;
  color: var(--dark-iron);
}

.form-control {
  border: 2px solid var(--primary-copper);
  border-radius: 8px;
  padding: 0.8rem;
  margin-bottom: 1.23rem;
}

.btn-primary {
  background: var(--primary-copper);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-copper);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--dark-forest);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-copper);
  margin-bottom: 1.23rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-copper);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Process/Timeline */
.process-item, .timeline-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2.16rem;
  border-left: 5px solid var(--primary-copper);
}

/* Case Studies */
.casestudy-item {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2.16rem;
  border: 2px solid var(--primary-wood);
}

/* Career */
.career-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin-bottom: 1.62rem;
}

/* Core Info */
.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2.16rem;
}

/* Price Plan */
.priceplan-item {
  background: white;
  border: 3px solid var(--primary-copper);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.16rem;
  transition: transform 0.3s ease;
}

.priceplan-item:hover {
  transform: translateY(-5px);
}

.priceplan-price {
  font-size: 2.51rem;
  font-weight: 700;
  color: var(--primary-wood);
  margin: 1rem 0;
}

/* Utilities */
.text-rustic-wood { color: var(--primary-wood); }
.text-rustic-iron { color: var(--primary-iron); }
.text-rustic-copper { color: var(--primary-copper); }
.text-rustic-forest { color: var(--primary-forest); }
.text-rustic-cream { color: var(--primary-cream); }

.bg-rustic-wood { background-color: var(--primary-wood); }
.bg-rustic-iron { background-color: var(--primary-iron); }
.bg-rustic-copper { background-color: var(--primary-copper); }
.bg-rustic-forest { background-color: var(--primary-forest); }
.bg-rustic-cream { background-color: var(--primary-cream); } 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
