:root {
  /* Color Palette */
  --primary-color: #654321; /* Deep brown - forest theme */
  --primary-color-light: #8a6d3b;
  --primary-color-dark: #3d2914;
  
  --secondary-color: #4a7c59; /* Forest green */
  --secondary-color-light: #6a9c79;
  --secondary-color-dark: #2a5c39;
  
  --accent-color: #d9a566; /* Warm amber */
  --accent-color-light: #e9c586;
  --accent-color-dark: #b98546;
  
  --neutral-color: #e8e0d5; /* Parchment */
  --neutral-color-light: #f8f0e5;
  --neutral-color-dark: #c8c0b5;
  
  --text-color: #2c2418; /* Dark wood */
  --text-color-light: #5c5448;
  --text-color-dark: #1c1408;
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Raleway', sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);
  background-color: var(--neutral-color-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-dark);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color-dark);
  text-decoration: none;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-color-dark);
  border-color: var(--secondary-color-dark);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-color-dark);
}

.btn-accent:hover {
  background-color: var(--accent-color-dark);
  border-color: var(--accent-color-dark);
}

/* Header */
header {
  background-color: var(--primary-color);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--neutral-color-light) !important;
  font-size: 1.5rem;
}

.nav-link {
  color: var(--neutral-color) !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.nav-link:hover:before {
  width: 80%;
  left: 10%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background-color: var(--primary-color-dark);
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  margin-top: 76px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--neutral-color-light);
}

.about-img {
  border-radius: 5px;
  overflow: hidden;
}

.about-feature {
  padding: 1.5rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: white;
}

.service-item {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.service-features {
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--neutral-color);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  padding: 5rem 0;
  background-color: white;
}

.price-item {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
  border: 1px solid var(--neutral-color);
  height: 100%;
}

.price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 2rem 1rem;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.price-content {
  padding: 2rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.price-features {
  margin-bottom: 2rem;
}

.price-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--neutral-color-light);
}

.team-member {
  margin-bottom: 2rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background-color: white;
}

.review-item {
  padding: 2rem;
  border-radius: 5px;
  background-color: var(--neutral-color-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 2rem;
  color: var(--accent-color);
  position: absolute;
}

.review-text:before {
  top: -1rem;
  left: -0.5rem;
}

.review-text:after {
  bottom: -2rem;
  right: -0.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color);
}

/* Core Info Section */
.coreinfo-section {
  padding: 5rem 0;
  background-color: var(--neutral-color);
}

.coreinfo-item {
  padding: 2rem;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 1.5rem;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: white;
}

.contact-form {
  padding: 2rem;
  border-radius: 5px;
  background-color: var(--neutral-color-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--neutral-color);
  padding: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.form-check {
  margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background-color: var(--neutral-color-light);
}

.blog-item {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: white;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--neutral-color-light);
}

.accordion-body {
overflow-x: hidden;
  padding: 1.5rem;
  background-color: var(--neutral-color-light);
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--neutral-color);
}

.gallery-item {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img {
  height: 250px;
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-dark);
  color: var(--neutral-color);
  padding: 3rem 0 1rem;
}

.footer-heading {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: var(--neutral-color);
}

.footer-list a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
} 