:root {
  /* Primary Colors - Harmonious Pastels */
  --primary-navy: #2c3e50;
  --primary-sage: #7f9f93;
  --primary-cream: #f8f5f0;
  --primary-coral: #e8a598;
  --primary-gold: #d4af37;
  
  /* Light & Dark Shades */
  --navy-light: #34495e;
  --navy-dark: #1a252f;
  --sage-light: #a8c4b8;
  --sage-dark: #5c7a6e;
  --cream-light: #fefcf8;
  --cream-dark: #f0ebe6;
  --coral-light: #f2c4b8;
  --coral-dark: #d88a7a;
  --gold-light: #e6c759;
  --gold-dark: #b8922e;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(44, 62, 80, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--navy-dark);
  background-color: var(--cream-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-navy), var(--navy-light));
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--box-shadow);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sitename {
  color: var(--primary-cream);
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--primary-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-gold);
}

/* Main Content */
main {
  margin-top: 80px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-sage) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../CHR_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  color: var(--primary-cream);
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-coral);
  top: 10%;
  right: 10%;
}

.shape-blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-gold);
  bottom: 20%;
  left: 5%;
}

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.section-header h3 {
  font-size: 1.3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--navy-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background-color: var(--primary-cream);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--cream-light), var(--sage-light));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 2rem;
}

.service-card h4 {
  font-size: 1.3rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--navy-light);
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--primary-sage);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-coral);
}

/* Features Section */
.features-section {
  background-color: var(--primary-cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
}

.priceplan-card.featured {
  border: 3px solid var(--primary-gold);
  transform: scale(1.05);
}

.priceplan-card h4 {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-coral);
  margin-bottom: 1.5rem;
}

.priceplan-features {
  text-align: left;
  margin-bottom: 2rem;
}

.priceplan-features li {
  list-style: none;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.priceplan-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-sage);
}

/* Team Section */
.team-section {
  background-color: var(--primary-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-sage);
}

.team-member h4 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-sage);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--navy-light), var(--primary-navy));
  color: var(--primary-cream);
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  backdrop-filter: blur(10px);
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.review-author {
  font-weight: bold;
  color: var(--primary-gold);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-cream);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.coreinfo-item h4 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.coreinfo-item p {
  color: var(--navy-light);
}

/* Contact Form Section */
.contact-section {
  background: linear-gradient(135deg, var(--sage-light), var(--primary-sage));
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 600px;
  margin: 2rem auto 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--sage-light);
  border-radius: var(--border-radius);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-sage);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

#site_submit_btn {
  background: linear-gradient(135deg, var(--primary-coral), var(--coral-dark));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

#site_submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 165, 152, 0.3);
}

/* Blog Section */
.blog-section {
  background-color: var(--primary-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-item h4 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.blog-item p {
  color: var(--navy-light);
  margin-bottom: 1.5rem;
}

.blog-item a {
  color: var(--primary-coral);
  text-decoration: none;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--cream-light), var(--sage-light));
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  background: var(--primary-sage);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: var(--sage-dark);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--navy-light);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-navy), var(--navy-dark));
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--primary-cream);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--navy-light);
  padding-top: 1rem;
  text-align: center;
}

#site-copyright {
  color: var(--sage-light);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
  margin: 0;
}

.breadcrumb img {
  height: 20px;
  opacity: 0.6;
}

/* Space Page Specific */
#space {
  min-height: calc(100vh - 160px);
  background: linear-gradient(135deg, var(--primary-cream), var(--cream-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } 