:root {
  /* Color Palette */
  --primary-1: #9a8268; /* Warm taupe */
  --primary-2: #d2b48c; /* Tan */
  --primary-3: #5c4033; /* Dark brown */
  --primary-4: #e6d2b5; /* Cream */
  --primary-5: #8b4513; /* Saddle brown */
  
  /* Shades */
  --primary-1-light: #b19a80;
  --primary-1-dark: #826c50;
  --primary-2-light: #e0c8a4;
  --primary-2-dark: #b49874;
  --primary-3-light: #74584b;
  --primary-3-dark: #44281b;
  --primary-4-light: #f4e6d1;
  --primary-4-dark: #c8b699;
  --primary-5-light: #a3592b;
  --primary-5-dark: #73310b;
  
  /* Font sizes */
  --h1-size: 3.5rem;
  --h2-size: 2.8rem;
  --h3-size: 2.2rem;
  --h4-size: 1.8rem;
  --h5-size: 1.4rem;
  --h6-size: 1.2rem;
  --p-size: 1rem;
  --small-size: 0.875rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Cormorant Garamond', serif;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

h6 {
  font-size: var(--h6-size);
}

p {
  font-size: var(--p-size);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-3);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-5);
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 0;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-5);
  border-color: var(--primary-5);
}

.btn-outline-primary {
  border: 2px solid var(--primary-3);
  color: var(--primary-3);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-3);
  color: #fff;
}

/* Header Styles */
.site-header {
  padding: 1.5rem 0;
  position: absolute;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
}

.navbar-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--primary-3);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navbar-nav .nav-link {
  color: var(--primary-3);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0.8rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-5);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../ELD_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  color: #fff;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--primary-4);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Section Styles */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: var(--h2-size);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--primary-3);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-1);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-img {
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  object-fit: cover;
}

.about-feature {
  margin-bottom: 2rem;
}

.about-feature-icon {
  color: var(--primary-5);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-feature-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-3);
}

.about-feature-desc {
  color: #666;
}

/* Services Section */
.services-section {
  background-color: var(--primary-4-light);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(210, 180, 140, 0.2);
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(154, 130, 104, 0.2);
  border-radius: 50%;
  transform: translate(-100px, 100px);
}

.service-card {
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--primary-5);
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  color: var(--primary-1);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.5rem;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

.service-desc {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-5);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-5);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-5);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.2);
}

.feature-name {
  font-size: 1.5rem;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

.feature-desc {
  color: #666;
}

/* Price Plan */
.priceplan-section {
  background-color: var(--primary-4-light);
  position: relative;
  overflow: hidden;
}

.price-card {
  background-color: #fff;
  border: none;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 2rem;
  background-color: var(--primary-3);
  color: #fff;
  text-align: center;
}

.price-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.price-body {
  padding: 2rem;
}

.price-desc {
  margin-bottom: 1.5rem;
  color: #666;
  text-align: center;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-5);
  position: absolute;
  left: 0;
  top: 12px;
}

.price-footer {
  text-align: center;
  padding: 0 2rem 2rem;
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-card {
  margin-bottom: 2rem;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: none;
  border-radius: 0;
}

.team-img-container {
  position: relative;
  overflow: hidden;
}

.team-img {
  transition: transform 0.3s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.5rem;
  color: var(--primary-3);
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--primary-1);
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-4-light);
  position: relative;
  overflow: hidden;
}

.reviews-slider {
  padding-bottom: 3rem;
}

.review-card {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 0;
  margin: 1rem 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.review-text::before, .review-text::after {
  content: """;
  font-family: 'Georgia', serif;
  font-size: 4rem;
  color: var(--primary-1-light);
  line-height: 0;
  position: absolute;
}

.review-text::before {
  top: 0.5rem;
  left: -1rem;
}

.review-text::after {
  content: """;
  bottom: -1rem;
  right: -1rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-3);
  margin-top: 2rem;
}

/* Core Info Section */
.coreinfo-section {
  background-color: #fff;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-5);
  margin-bottom: 1.5rem;
}

.coreinfo-title {
  font-size: 1.3rem;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

.coreinfo-desc {
  color: #666;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-4-light);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: rgba(210, 180, 140, 0.3);
  border-radius: 50%;
}

.contact-form-container {
  background-color: #fff;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-label {
  color: var(--primary-3);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: none;
}

.form-check-label {
  color: #666;
  margin-left: 0.5rem;
}

.contact-info {
  padding: 2rem;
  background-color: var(--primary-3);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-2);
}

.contact-info-text {
  font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
  background-color: #fff;
}

.blog-card {
  margin-bottom: 2rem;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  border: none;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img-container {
  position: relative;
  overflow: hidden;
}

.blog-img {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-3);
}

.blog-excerpt {
  color: #666;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-5);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-4-light);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  background-color: #fff;
  color: var(--primary-3);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-3);
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.accordion-button::after {
  color: var(--primary-5);
}

.accordion-body {
  padding: 1.5rem;
  background-color: #fff;
  color: #666;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background-color: #fff;
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.gallery-img {
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(92, 64, 51, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: #fff;
  font-size: 2rem;
}

/* Footer */
.footer {
  background-color: var(--primary-3);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  color: #fff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-2);
  text-decoration: none;
}

.footer-contact-info {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  font-size: 1.2rem;
  margin-right: 1rem;
  color: var(--primary-2);
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

#site-copyright {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 0;
}

/* Animation elements */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.animate-fade-in.show {
  opacity: 1;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-up, .animate-fade-in {
    transition: none;
  }
  
  .animate-fade-up, .animate-fade-up.show,
  .animate-fade-in, .animate-fade-in.show {
    transform: none;
    opacity: 1;
  }
}

/* Animation delays */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* Section Dividers */
.section-divider {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.section-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: var(--primary-4-light);
}

/* Shapes */
.shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(210, 180, 140, 0.2);
  z-index: 0;
}

.shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(154, 130, 104, 0.2);
  z-index: 0;
} 