@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Fraunces:wght@400;500;600;700&display=swap');

:root {
  --purethrive-white: #FFFFFF;
  --purethrive-cream: #eaf1d2;
  --purethrive-light: #f1f1f1;
  --purethrive-peach: #d7cec9;
  --purethrive-rose: #bac595;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--purethrive-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.08);
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--purethrive-rose);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--purethrive-peach);
}

.purethrive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

/* Header Styles */
.purethrive-header {
  background: var(--purethrive-white);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.purethrive-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.purethrive-logo {
  z-index: 101;
}

.purethrive-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.purethrive-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--purethrive-rose);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.purethrive-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.purethrive-menu li a {
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.purethrive-menu li a:hover {
  background: var(--purethrive-cream);
}

/* Hero Section */
.purethrive-hero {
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--purethrive-light) 0%, var(--purethrive-cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.purethrive-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  color: #666;
}

.purethrive-btn-primary {
  display: inline-block;
  background: var(--purethrive-rose);
  color: var(--purethrive-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.purethrive-btn-primary:hover {
  background: var(--purethrive-peach);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 164, 180, 0.3);
  color: var(--purethrive-white);
}

.purethrive-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--purethrive-rose);
  padding: var(--space-xs) var(--space-md);
  border: 2px solid var(--purethrive-rose);
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.purethrive-btn-secondary:hover {
  background: var(--purethrive-rose);
  color: var(--purethrive-white);
}

.purethrive-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--purethrive-rose);
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--purethrive-rose);
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.purethrive-btn-outline:hover {
  background: var(--purethrive-rose);
  color: var(--purethrive-white);
}

/* Hero Image Slider */
.purethrive-hero-image-slider {
  position: relative;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.purethrive-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.purethrive-slide.active {
  opacity: 1;
}

.purethrive-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services Section */
.purethrive-services {
  padding: var(--space-3xl) 0;
  background: var(--purethrive-white);
}

.purethrive-services h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.purethrive-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.purethrive-service-card {
  background: var(--purethrive-light);
  padding: var(--space-lg);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.purethrive-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.purethrive-service-icon {
  margin-bottom: var(--space-md);
}

.purethrive-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purethrive-rose);
  margin: var(--space-sm) 0;
}

/* Community Section */
.purethrive-community {
  padding: var(--space-3xl) 0;
  background: var(--purethrive-cream);
}

.purethrive-community h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.purethrive-community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.purethrive-community-text h3 {
  margin-bottom: var(--space-md);
}

.purethrive-community-features {
  list-style: none;
  margin-top: var(--space-md);
}

.purethrive-community-features li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
}

.purethrive-community-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purethrive-rose);
  font-weight: bold;
}

.purethrive-community-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stories Section */
.purethrive-stories {
  padding: var(--space-3xl) 0;
  background: var(--purethrive-white);
}

.purethrive-stories h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.purethrive-stories-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.purethrive-story-card {
  background: var(--purethrive-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.purethrive-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.purethrive-story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.purethrive-story-card h3 {
  padding: var(--space-md) var(--space-md) 0;
}

.purethrive-story-card p {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  font-style: italic;
  color: #666;
}

/* Values Section */
.purethrive-values {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--purethrive-light) 0%, var(--purethrive-cream) 100%);
}

.purethrive-values h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.purethrive-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.purethrive-value-item {
  text-align: center;
  padding: var(--space-lg);
}

.purethrive-value-icon {
  margin-bottom: var(--space-md);
}

/* Resources Section */
.purethrive-resources {
  padding: var(--space-3xl) 0;
  background: var(--purethrive-white);
}

.purethrive-resources h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.purethrive-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.purethrive-resource-card {
  background: var(--purethrive-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.purethrive-resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.purethrive-resource-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.purethrive-resource-card h3 {
  padding: var(--space-md) var(--space-md) 0;
}

.purethrive-resource-card p {
  padding: var(--space-sm) var(--space-md);
}

.purethrive-resource-card .purethrive-btn-outline {
  margin: 0 var(--space-sm) var(--space-sm);
}

/* Contact Section */
.purethrive-contact {
  padding: var(--space-3xl) 0;
  background: var(--purethrive-cream);
}

.purethrive-contact h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.purethrive-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.purethrive-form-group {
  margin-bottom: var(--space-md);
}

.purethrive-form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: #333;
}

.purethrive-form-group input,
.purethrive-form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--purethrive-peach);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.purethrive-form-group input:focus,
.purethrive-form-group textarea:focus {
  outline: none;
  border-color: var(--purethrive-rose);
}

.purethrive-form-group textarea {
  height: 150px;
  resize: vertical;
}

.purethrive-contact-info h3 {
  margin-bottom: var(--space-md);
}

.purethrive-contact-info ul {
  list-style: none;
}

.purethrive-contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.purethrive-contact-icon {
  margin-right: var(--space-sm);
}

/* Footer */
.purethrive-footer {
  background: var(--purethrive-rose);
  color: var(--purethrive-white);
  padding: var(--space-xl) 0;
}

.purethrive-footer-content {
  text-align: center;
}

.purethrive-footer-logo {
  margin-bottom: var(--space-md);
}

.purethrive-footer-links {
  margin-bottom: var(--space-md);
}

.purethrive-footer-links a {
  color: var(--purethrive-white);
  margin: 0 var(--space-sm);
  padding: var(--space-xs);
  opacity: 0.9;
}

.purethrive-footer-links a:hover {
  opacity: 1;
  color: var(--purethrive-peach);
}

.purethrive-footer-copyright {
  opacity: 0.8;
}



/* Policy Pages */
.purethrive-policy-page {
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl);
  background: var(--purethrive-light);
}

.purethrive-policy-page h1 {
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--purethrive-rose);
}

.purethrive-policy-date {
  text-align: center;
  color: #666;
  margin-bottom: var(--space-3xl);
}

.purethrive-policy-section {
  background: var(--purethrive-white);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.purethrive-policy-section h2 {
  color: var(--purethrive-rose);
  margin-bottom: var(--space-md);
}

.purethrive-policy-section h3 {
  color: var(--purethrive-peach);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.purethrive-policy-section ul {
  margin-left: var(--space-lg);
  margin-top: var(--space-sm);
}

.purethrive-policy-section li {
  margin-bottom: var(--space-xs);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.purethrive-hero,
.purethrive-service-card,
.purethrive-story-card,
.purethrive-value-item,
.purethrive-resource-card {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Smooth scroll sections animation */
section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Responsive Design */
@media (max-width: 991px) {
  :root {
    --space-xs: 0.75rem;
    --space-sm: 1.25rem;
    --space-md: 2rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
    --space-3xl: 7rem;
  }

  body {
    font-size: 18px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .purethrive-container {
    padding: var(--space-sm);
  }

  .purethrive-menu-toggle {
    display: block;
  }

  .purethrive-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--purethrive-white);
    flex-direction: column;
    padding: var(--space-md) 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .purethrive-menu.active {
    display: flex;
    gap: 20px;
  }

  .purethrive-menu li {
    margin: var(--space-xs) 0;
  }

  .purethrive-hero {
    padding: calc(var(--space-3xl) + 100px) 0 var(--space-3xl);
  }

  .purethrive-hero-image-slider {
    height: 350px;
  }

  .purethrive-community-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .purethrive-contact-content {
    grid-template-columns: 1fr;
  }

  .purethrive-services-grid,
  .purethrive-stories-carousel,
  .purethrive-values-grid,
  .purethrive-resources-grid {
    gap: var(--space-xl);
  }

  .purethrive-service-card,
  .purethrive-story-card,
  .purethrive-value-item,
  .purethrive-resource-card {
    padding: var(--space-xl);
  }

  .purethrive-btn-primary {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
  }

  .purethrive-btn-secondary,
  .purethrive-btn-outline {
    padding: var(--space-sm) var(--space-sm);
    font-size: 1rem;
  }
  .purethrive-policy-section {
    padding: var(--space-md);

  }
  .purethrive-policy-section ul {
    margin-left: var(--space-sm)
  }
  .purethrive-community, .purethrive-values, .purethrive-resources, .purethrive-contact{
    padding: var(--space-xl) 0;
  }
  .purethrive-stories {
    padding: var(--space-xl) 0;
  }
  .purethrive-services-grid, .purethrive-stories-carousel, .purethrive-values-grid, .purethrive-resources-grid {
    gap: var(--space-sm);
  }
  .purethrive-policy-page {
    padding: calc(var(--space-xl) + 80px) 0 var(--space-xl);
  }
  .purethrive-policy-date {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .purethrive-services-grid,
  .purethrive-stories-carousel,
  .purethrive-values-grid,
  .purethrive-resources-grid {
    grid-template-columns: 1fr;
  }
  .purethrive-service-card, .purethrive-story-card, .purethrive-value-item, .purethrive-resource-card {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .purethrive-hero {
    padding: calc(var(--space-2xl) + 80px) 0 var(--space-2xl);
  }

  .purethrive-hero-image-slider {
    height: 250px;
  }

  .purethrive-btn-primary {
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
  }
  .purethrive-resource-card p {
    padding: 15px 0;
  }
  .purethrive-resource-card .purethrive-btn-outline {
    margin: unset;
    width: 100%;
    text-align: center;
  }
      .purethrive-service-card, .purethrive-story-card, .purethrive-value-item, .purethrive-resource-card {
        padding: var(--space-sm);
    }
    .purethrive-container {
        padding: 0 16px;
    }
    .purethrive-footer-links {
    display: flex
;
    flex-direction: column;
}
.purethrive-policy-section {
        padding: var(--space-sm);
        margin-bottom: var(--space-md);
    }
.purethrive-success-container {
    padding: var(--space-sm) !important;
}
}

@media (max-width: 360px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
    word-break: break-word;
  }

  h3 {
    font-size: 1.375rem;
  }



  .purethrive-hero {
    padding: calc(var(--space-xl) + 80px) 0 var(--space-xl);
  }

  .purethrive-hero-image-slider {
    height: 200px;
  }

  .purethrive-service-card,
  .purethrive-story-card,
  .purethrive-value-item,
  .purethrive-resource-card {
    padding: var(--space-lg);
  }
}
