:root {
  /* Primary Color Palette */
  --primary-warm: #D4AF37;
  --primary-earthy: #8B4513;
  --primary-sage: #9CAF88;
  --primary-cream: #F5F5DC;
  --primary-rust: #B7410E;
  
  /* Light and Dark Shades */
  --warm-light: #E8C968;
  --warm-dark: #B8941F;
  --earthy-light: #A0522D;
  --earthy-dark: #654321;
  --sage-light: #B8C4A3;
  --sage-dark: #7A8B6F;
  --cream-light: #FDFDF0;
  --cream-dark: #E6E6C7;
  --rust-light: #D4621A;
  --rust-dark: #9A350B;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-normal: 1rem;
  --font-size-medium: 1.25rem;
  --font-size-large: 1.5rem;
  --font-size-xl: 2rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-normal);
  line-height: 1.6;
  color: #333;
  background-color: var(--primary-cream);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-warm), var(--warm-dark));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-size-medium) !important;
  font-weight: 700;
  color: var(--primary-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--primary-cream) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--cream-light) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../HAR_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}

.hero-content h1 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: var(--font-size-medium);
  margin-bottom: 2rem;
}

/* Section Styles */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-size: var(--font-size-large);
  font-weight: 700;
  color: var(--primary-earthy);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: var(--font-size-medium);
  color: var(--earthy-light);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-desc {
  font-size: var(--font-size-normal);
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.custom-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-size: var(--font-size-medium);
  font-weight: 600;
  color: var(--primary-earthy);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: var(--font-size-small);
  color: #666;
}

/* Services Section */
.services-item {
  text-align: center;
  padding: 2rem 1rem;
}

.services-price {
  font-size: var(--font-size-large);
  font-weight: 700;
  color: var(--primary-rust);
  margin-top: 1rem;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-warm);
}

/* Testimonials */
.testimonial-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-earthy);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--primary-cream);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-normal);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-warm);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-warm), var(--warm-dark));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--warm-dark), var(--primary-rust));
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-earthy);
  padding: 1rem;
  cursor: pointer;
  border-bottom: 1px solid var(--primary-cream);
}

.faq-answer {
  padding: 1rem;
  color: #666;
  display: none;
}

/* Gallery */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-earthy), var(--earthy-dark));
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-links a {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-warm);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  color: var(--primary-earthy);
}

/* Utility Classes */
.text-primary-warm { color: var(--primary-warm) !important; }
.text-primary-earthy { color: var(--primary-earthy) !important; }
.text-primary-sage { color: var(--primary-sage) !important; }
.text-primary-rust { color: var(--primary-rust) !important; }

.bg-primary-warm { background-color: var(--primary-warm) !important; }
.bg-primary-earthy { background-color: var(--primary-earthy) !important; }
.bg-primary-sage { background-color: var(--primary-sage) !important; }
.bg-primary-cream { background-color: var(--primary-cream) !important; }

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-warm) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-warm) !important;
} 