/* Estate Mediation Retreats - Main Styles */

:root {
  /* Primary Harmonious Pastel Color Palette */
  --primary-sage: #a8c69f;
  --primary-dusty-rose: #d4a59a;
  --primary-warm-cream: #f5f0e8;
  --primary-soft-lavender: #c7b8d8;
  --primary-muted-teal: #7fb3b3;
  
  /* Light/Dark Shades */
  --sage-light: #c4d4bd;
  --sage-dark: #8ba682;
  --rose-light: #e2bcb3;
  --rose-dark: #c08771;
  --cream-light: #faf7f1;
  --cream-dark: #e8ddd1;
  --lavender-light: #ddd0e6;
  --lavender-dark: #b099c8;
  --teal-light: #9cc4c4;
  --teal-dark: #669999;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Georgia', serif;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #444;
  background-color: var(--primary-warm-cream);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--sage-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-warm-cream) !important;
  background-color: rgba(255,255,255,0.1);
  border-radius: 0.25rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-soft-lavender), var(--lavender-light));
  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('../RET_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  z-index: 1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--sage-dark);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-dusty-rose);
  font-style: italic;
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: white;
}

.about-feature {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--cream-light), white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.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(--primary-warm-cream));
}

.services-item {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.services-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.services-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-sage);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: white;
}

.features-item {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary-soft-lavender), var(--lavender-light));
  color: white;
  margin-bottom: 2rem;
}

.features-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--primary-muted-teal), var(--teal-light));
}

.priceplan-item {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.priceplan-item:hover {
  transform: scale(1.05);
}

.priceplan-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-sage);
  margin: 1rem 0;
}

.priceplan-features {
  list-style: none;
  padding: 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Team Section */
.team-section {
  background-color: var(--cream-light);
}

.team-member {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-sage);
}

.team-member-name {
  font-weight: bold;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-dusty-rose);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-dusty-rose), var(--rose-light));
}

.swiper-slide {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: bold;
  color: var(--sage-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.coreinfo-item {
  background: linear-gradient(135deg, var(--cream-light), white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-muted-teal);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
  color: white;
}

.contact-form {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-control {
  border: 2px solid #eee;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(168, 198, 159, 0.25);
}

.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background-color: var(--cream-light);
}

.blog-item {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--sage-dark);
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--cream-light);
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--sage-dark);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-warm-cream);
}

.faq-answer {
  padding: 1rem;
  background: white;
  color: #666;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--primary-soft-lavender), var(--lavender-light));
  padding: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--sage-dark), var(--primary-sage));
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  text-align: center;
}

.footer-policies {
  margin: 2rem 0;
}

.footer-policies a {
  color: var(--cream-light);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: white;
}

.site-copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: var(--cream-light);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 1rem 0;
  background: var(--cream-light);
}

.breadcrumb-img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 