:root {
  /* Color Palette */
  --primary-color-1: #b3866f; /* Warm taupe */
  --primary-color-2: #e8c6af; /* Soft peach */
  --primary-color-3: #627974; /* Muted sage */
  --primary-color-4: #cfdad6; /* Light sage */
  --primary-color-5: #392f2c; /* Deep brown */

  /* Shades */
  --primary-color-1-light: #c9a393;
  --primary-color-1-dark: #8e694f;
  --primary-color-2-light: #f2dbc9;
  --primary-color-2-dark: #caa688;
  --primary-color-3-light: #7f9792;
  --primary-color-3-dark: #4a5c58;
  --primary-color-4-light: #e5eeeb;
  --primary-color-4-dark: #b5c4be;
  --primary-color-5-light: #5a4d47;
  --primary-color-5-dark: #271f1c;

  /* Font sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
}

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-color-5);
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-md);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-3);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color-3-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--font-size-xl);
  color: var(--primary-color-5);
}

.nav-link {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-4-light);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-shape {
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 50%;
  height: 50%;
  background-color: var(--primary-color-2-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
}

/* Section Styling */
section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color-5);
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color-1);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: var(--font-size-md);
  color: var(--primary-color-3);
  margin-bottom: var(--spacing-md);
}

/* Services */
.service-card {
  padding: var(--spacing-md);
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--primary-color-1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: var(--spacing-sm);
}

.service-price {
  font-weight: 600;
  margin-top: var(--spacing-sm);
  color: var(--primary-color-5-dark);
}

/* Features */
.features-section {
  background-color: var(--primary-color-4-light);
  position: relative;
  overflow: hidden;
}

.feature-item {
  margin-bottom: var(--spacing-md);
}

.feature-icon {
  color: var(--primary-color-3);
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

/* Team */
.team-card {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: var(--spacing-sm);
}

.team-img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-name {
  margin-bottom: 0.25rem;
  color: var(--primary-color-5);
}

.team-role {
  color: var(--primary-color-3);
  font-style: italic;
}

/* Testimonials */
.testimonial-section {
  background-color: var(--primary-color-4-light);
  position: relative;
}

.testimonial-item {
  background-color: #fff;
  padding: var(--spacing-lg);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: var(--spacing-md);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color-2);
  position: absolute;
}

.testimonial-text::before {
  top: -20px;
  left: -15px;
}

.testimonial-text::after {
  bottom: -30px;
  right: -15px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color-5);
  margin-top: var(--spacing-md);
}

/* Core Info */
.core-info-item {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: var(--spacing-sm);
}

/* Blog */
.blog-card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: var(--spacing-lg);
  background-color: #fff;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img-wrapper {
  overflow: hidden;
  position: relative;
}

.blog-img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-content {
  padding: var(--spacing-md);
}

.blog-title {
  margin-bottom: var(--spacing-sm);
}

.blog-excerpt {
  color: var(--primary-color-5-light);
}

/* Contact Form */
.contact-form {
  background-color: #fff;
  padding: var(--spacing-lg);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--primary-color-4-dark);
  padding: 0.75rem;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: none;
}

.form-label {
  color: var(--primary-color-5);
  font-weight: 500;
}

.btn-submit {
  background-color: var(--primary-color-1);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-submit:hover {
  background-color: var(--primary-color-1-dark);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-color-4-light);
}

.accordion-item {
  margin-bottom: var(--spacing-sm);
  border: none;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-button {
  background-color: #fff;
  color: var(--primary-color-5);
  font-weight: 500;
  padding: 1rem 1.25rem;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color-1-light);
}

.accordion-body {
  padding: 1.25rem;
  background-color: #fff;
}

/* Gallery */
.gallery-section {
  overflow: hidden;
}

.gallery-item {
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-5-dark);
  color: #fff;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.footer-title {
  margin-bottom: var(--spacing-md);
  color: #fff;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
  margin-right: var(--spacing-sm);
  color: var(--primary-color-1);
}

.site-copyright {
  text-align: center;
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-xs);
} 