:root {
  /* Color Palette */
  --primary-color: #ebc88b;
  --secondary-color: #a4b8c4;
  --accent-color: #d48166;
  --neutral-color: #e9e2d9;
  --dark-color: #424b54;
  
  /* Tints and Shades */
  --primary-light: #f3deb6;
  --primary-dark: #c4a06e;
  --secondary-light: #c9d6de;
  --secondary-dark: #8599a3;
  --accent-light: #e6a48d;
  --accent-dark: #b36450;
  --neutral-light: #f7f4ef;
  --dark-light: #6a717a;
  
  /* Typography */
  --base-font-size: 16px;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Lato', sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: var(--body-font);
  font-size: var(--base-font-size);
  color: var(--dark-color);
  line-height: 1.6;
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title h2 {
  position: relative;
  margin-bottom: 1rem;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Header Styles */
header {
  background-color: var(--neutral-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-color);
}

.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
}

.nav-link:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-light);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  opacity: 0.5;
}

.hero-shape-1 {
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--accent-light);
}

.hero-shape-2 {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--secondary-light);
}

/* Services Section */
.services-item {
  padding: 2rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.services-item-price {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-light);
  color: var(--dark-color);
  border-radius: 30px;
  font-weight: 700;
  margin-top: 1rem;
}

/* Team Section */
.team-member {
  margin-bottom: 2rem;
  text-align: center;
}

.team-member-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-info {
  padding: 1rem;
}

/* Testimonials Section */
.testimonial-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem 0;
}

.testimonial-text {
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.testimonial-text:before,
.testimonial-text:after {
  content: """;
  font-size: 3rem;
  font-family: serif;
  color: var(--primary-light);
  position: absolute;
}

.testimonial-text:before {
  top: -20px;
  left: -10px;
}

.testimonial-text:after {
  content: """;
  bottom: -40px;
  right: -10px;
}

.testimonial-author {
  margin-top: 1.5rem;
  font-weight: 700;
}

/* Contact Section */
.contact-form {
  background-color: #fff;
  padding: 3rem;
  border-radius: 10px;
  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;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer-heading {
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  display: block;
}

.footer-link:hover {
  color: var(--primary-color);
}

.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.7);
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--neutral-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  background-color: var(--neutral-light);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question:after {
  content: "+";
  font-size: 1.5rem;
}

.faq-question.active:after {
  content: "-";
}

.faq-answer {
  padding: 1.25rem;
  background-color: #fff;
  display: none;
}

.faq-answer.show {
  display: block;
}

/* Gallery Section */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Blog Section */
.blog-item {
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  height: 200px;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-title {
  margin-bottom: 1rem;
}

.blog-item-link {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  opacity: 0.5;
  z-index: 0;
}

.shape-circle {
  border-radius: 50%;
}

.shape-1 {
  top: 10%;
  right: 10%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-light);
}

.shape-2 {
  bottom: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--accent-light);
}

.shape-3 {
  top: 40%;
  left: 15%;
  width: 80px;
  height: 80px;
  background-color: var(--secondary-light);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
} 