:root {
  /* Rustic Homeware Color Palette - 5 Primary Colors */
  --primary-warm-brown: #994d1e;
  --primary-cream: #fdffe2;
  --primary-sage-green: #8fb378;
  --primary-terracotta: #c98641;
  --primary-charcoal: #2c343c;
  
  /* Light/Dark Shades */
  --light-brown: #c69c7e;
  --dark-brown: #694b23;
  --light-cream: #FFFEF7;
  --dark-cream: #fefef3;
  --light-sage: #a1c4a4;
  --dark-sage: #6a7b3b;
  --light-terracotta: #dabc90;
  --dark-terracotta: #a08b13;
  --light-charcoal: #7586a1;
  --dark-charcoal: #355a59;
  
  /* Conservative Font Sizes */
  --font-size-base: 16px;
  --navbar-brand-size: 1.4rem;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--light-cream);
  margin: 0;
  padding: 0;
}

@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;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 600;
  margin-bottom: 1.20rem;
  color: var(--primary-warm-brown);
}

h1 { font-size: 2.27rem; }
h2 { font-size: 1.87rem; }
h3 { font-size: 1.61rem; }

.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: bold;
  color: var(--primary-warm-brown) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-cream) 100%);
  box-shadow: 0 13px 14px rgba(0,0,0,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-warm-brown) !important;
}

.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--light-terracotta) 50%, var(--primary-cream) 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('../HAS_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.about-section {
  background: linear-gradient(45deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  padding: 5rem 0;
}

.about-feature {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 19px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.09rem;
}

.about-feature:hover {
  transform: translateY(-6px);
}

.services-section {
  background: linear-gradient(135deg, var(--primary-sage-green) 0%, var(--light-sage) 100%);
  padding: 5rem 0;
  color: white;
}

.service-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.09rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  color: var(--primary-charcoal);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.service-price {
  font-size: 1.61rem;
  font-weight: bold;
  color: var(--primary-terracotta);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-terracotta), var(--dark-terracotta));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--dark-terracotta), var(--primary-terracotta));
  transform: translateY(-2px);
}

.footer {
  background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--dark-charcoal) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-terracotta);
}

.contact-section {
  background: linear-gradient(45deg, var(--primary-terracotta) 0%, var(--light-terracotta) 100%);
  padding: 5rem 0;
  color: white;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  color: var(--primary-charcoal);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--light-cream);
  padding: 0.75rem;
  margin-bottom: 1.20rem;
}

.form-control:focus {
  border-color: var(--primary-terracotta);
  box-shadow: 0 0 0 0.2rem rgba(189, 124, 71, 0.25);
}

.section-padding {
  padding: 5rem 0;
}

.team-section {
  background: linear-gradient(45deg, var(--light-sage) 0%, var(--primary-sage-green) 100%);
  padding: 5rem 0;
  color: white;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.09rem;
  color: var(--primary-charcoal);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

.blog-section {
  background: linear-gradient(45deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  padding: 5rem 0;
}

.blog-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(--primary-charcoal, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.09rem;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.faq-section {
  background: linear-gradient(135deg, var(--light-charcoal) 0%, var(--primary-charcoal) 100%);
  padding: 5rem 0;
  color: white;
}

.faq-item {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 1.20rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: none;
  width: 100%;
  text-align: left;
  color: white;
  font-size: 1.08rem;
  font-weight: 500;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

#space {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.04rem;
  color: var(--primary-charcoal);
}



/* 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;
    }
}
