:root {
  /* Color Palette - Pastel */
  --color-primary-1: #e8c5b5; /* Peach */
  --color-primary-2: #d5b6a3; /* Taupe */
  --color-primary-3: #b3c5d7; /* Powder Blue */
  --color-primary-4: #d8dcde; /* Light Gray */
  --color-primary-5: #e5d7c3; /* Sand */
  
  /* Light/Dark Variants */
  --color-primary-1-light: #f2dccf;
  --color-primary-1-dark: #c4a590;
  --color-primary-2-light: #e7d4c9;
  --color-primary-2-dark: #a89082;
  --color-primary-3-light: #d1e0ed;
  --color-primary-3-dark: #8ea3b7;
  --color-primary-4-light: #f0f3f5;
  --color-primary-4-dark: #b1b7bc;
  --color-primary-5-light: #f7efe1;
  --color-primary-5-dark: #c7b9a5;
  
  /* Text Colors */
  --text-dark: #484b4d;
  --text-medium: #6c757d;
  --text-light: #adb5bd;
  
  /* Base Sizes */
  --base-font-size: 16px;
  --section-padding: 5rem 0;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: var(--base-font-size);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}

section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--color-primary-3);
  border-color: var(--color-primary-3);
  color: var(--text-dark);
  padding: 0.75rem 2rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-primary-3-dark);
  border-color: var(--color-primary-3-dark);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-primary-3);
  color: var(--text-dark);
  padding: 0.75rem 2rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--color-primary-3);
  color: #fff;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--color-primary-3);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--color-primary-4-light);
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-desc {
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-feature {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.about-feature-icon {
  margin-bottom: 1.5rem;
  color: var(--color-primary-3);
  font-size: 2.5rem;
}

.about-feature-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.about-feature-desc {
  color: var(--text-medium);
}

/* Services Section */
.services-section {
  background-color: var(--color-primary-4-light);
}

.services-item {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.services-item-img {
  margin-bottom: 1.5rem;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
}

.services-item-name {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.services-item-desc {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.services-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-3-dark);
  margin-bottom: 1.5rem;
}

.services-item-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.services-item-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-primary-4-light);
}

.services-item-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.features-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--color-primary-4-light);
  border-radius: 5px;
  transition: all 0.3s ease;
  height: 100%;
}

.features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.features-item-icon {
  margin-bottom: 1.5rem;
  color: var(--color-primary-3);
  font-size: 2.5rem;
}

.features-item-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.features-item-desc {
  color: var(--text-medium);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--color-primary-4-light);
}

.priceplan-item {
  margin-bottom: 2.5rem;
  padding: 3rem 2rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.priceplan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.priceplan-item-name {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary-3-dark);
  margin-bottom: 2rem;
}

.priceplan-item-desc {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.priceplan-item-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.priceplan-item-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-primary-4-light);
}

.priceplan-item-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-member {
  margin-bottom: 2.5rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.team-member-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.team-member-role {
  color: var(--text-medium);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--color-primary-4-light);
}

.reviews-slider {
  padding-bottom: 3rem;
}

.reviews-item {
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  height: 100%;
}

.reviews-item-text {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-medium);
}

.reviews-item-author {
  font-weight: 600;
  color: var(--text-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: #fff;
}

.coreinfo-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--color-primary-4-light);
  border-radius: 5px;
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.coreinfo-item-icon {
  margin-bottom: 1.5rem;
  color: var(--color-primary-3);
  font-size: 2.5rem;
}

.coreinfo-item-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.coreinfo-item-desc {
  color: var(--text-medium);
}

/* Contact Section */
.contact-section {
  background-color: var(--color-primary-4-light);
}

.contact-form {
  background-color: #fff;
  padding: 3rem;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  height: 50px;
  border: 1px solid var(--color-primary-4);
  border-radius: 2px;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary-3);
  box-shadow: 0 0 0 0.2rem rgba(179, 197, 215, 0.25);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.btn-submit {
  background-color: var(--color-primary-3);
  border: none;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--color-primary-3-dark);
}

.contact-info {
  padding: 2rem;
  background-color: var(--color-primary-3);
  color: #fff;
  border-radius: 5px;
  height: 100%;
}

.contact-info h4 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
  background-color: #fff;
}

.blog-item {
  margin-bottom: 2.5rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.blog-item-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.blog-item-excerpt {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.blog-item-link {
  color: var(--color-primary-3);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-item-link:hover {
  color: var(--color-primary-3-dark);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.5);
}

/* Decorative Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 62px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

/* Additional Helpers */
.bg-light {
  background-color: var(--color-primary-4-light);
}

.bg-primary {
  background-color: var(--color-primary-3);
}

.text-primary {
  color: var(--color-primary-3);
}

.mb-lg {
  margin-bottom: 5rem;
}

/* Space Template Specific */
#space {
  min-height: calc(100vh - 200px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-4-light);
} 