/* Legacy Planning Retreats - Main Styles */

:root {
  /* Sophisticated Pastel Color Palette */
  --primary-sage: #9CAF88;
  --primary-cream: #F5F1E8;
  --primary-lavender: #B8A9C9;
  --primary-rose: #D4A5A5;
  --primary-gold: #E6C48F;
  
  /* Light & Dark Variations */
  --sage-light: #B8D1A1;
  --sage-dark: #7A8F6B;
  --cream-light: #FEFCF7;
  --cream-dark: #E8E2D3;
  --lavender-light: #D2C6DD;
  --lavender-dark: #A190B5;
  --rose-light: #E4C0C0;
  --rose-dark: #C28B8B;
  --gold-light: #F2D6A8;
  --gold-dark: #D8B173;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 50%, var(--primary-sage) 100%);
  --gradient-section: linear-gradient(to right, var(--primary-lavender), var(--lavender-light));
  --gradient-accent: linear-gradient(45deg, var(--primary-rose), var(--primary-gold));
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Lato', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
  
  /* Shadows */
  --shadow-light: 0 4px 20px rgba(156, 175, 136, 0.1);
  --shadow-medium: 0 8px 30px rgba(156, 175, 136, 0.15);
  --shadow-dark: 0 15px 45px rgba(156, 175, 136, 0.2);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--sage-dark);
  background-color: var(--primary-cream);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.8rem; line-height: 1.3; }
h3 { font-size: 2.2rem; line-height: 1.4; }
h4 { font-size: 1.8rem; line-height: 1.4; }
h5 { font-size: 1.4rem; line-height: 1.5; }
h6 { font-size: 1.2rem; line-height: 1.5; }

p {
  margin-bottom: 1.5rem;
  color: var(--sage-dark);
}

/* Header */
header {
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage-dark) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--sage-dark) !important;
  margin: 0 15px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-lavender) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: rgba(184, 169, 201, 0.1);
  border-radius: 50%;
  transform: rotate(15deg);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 30%;
  height: 150%;
  background: rgba(212, 165, 165, 0.08);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  background: linear-gradient(45deg, var(--sage-dark), var(--primary-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--rose-dark);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--sage-dark);
  margin-bottom: 3rem;
  max-width: 600px;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--rose-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.section-desc {
  text-align: center;
  color: var(--sage-dark);
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.card-header {
  background: var(--gradient-section);
  border: none;
  padding: 2rem;
  text-align: center;
}

.card-body {
  padding: 2rem;
  text-align: center;
}

.card-title {
  color: var(--sage-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-rose);
  margin-bottom: 1rem;
}

.price-unit {
  font-size: 1rem;
  color: var(--rose-dark);
  font-weight: 400;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.team-info {
  padding: 2rem;
}

.team-name {
  font-size: 1.3rem;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--rose-dark);
  font-weight: 300;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-light);
  text-align: center;
  margin: 0 15px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-lavender);
  font-family: var(--font-primary);
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--sage-dark);
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--rose-dark);
}

/* Forms */
.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--cream-light);
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
  background: white;
}

.btn-primary {
  background: var(--gradient-accent);
  border: none;
  border-radius: 12px;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  filter: brightness(1.1);
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.accordion-header button {
  background: var(--gradient-section);
  border: none;
  color: var(--sage-dark);
  font-weight: 600;
  padding: 1.5rem;
  font-size: 1.1rem;
}

.accordion-body {
  background: white;
  color: var(--sage-dark);
  padding: 2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--sage-dark);
  color: var(--cream-light);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
footer p {

  color: var(--cream-light);

}
footer h5 {

  color: var(--cream-light);

}

.footer-content {
  text-align: center;
}

.footer-title {
  color: var(--cream-light);
  margin-bottom: 2rem;
}

.footer-links {
  margin: 2rem 0;
}

.footer-links a {
  color: var(--cream-light);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.contact-info {
  margin: 2rem 0;
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--cream-light);
}

#site-copyright {
  color: var(--cream-dark);
  border-top: 1px solid var(--primary-sage);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-section {
  background: var(--gradient-section);
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.shape-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-lavender);
  top: 10%;
  right: 10%;
}

.shape-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-rose);
  bottom: 20%;
  left: 5%;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 