/*
Theme Name: Kathy Koenig
Theme URI: https://kathykoenig.com
Author: Custom Development
Author URI: https://kathykoenig.com
Description: Custom WordPress theme for Kathy Koenig - RELEASE Program & Caregiver Support. Features warm, therapeutic design with Option 7 Minimal Spacious aesthetic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kathy-koenig
Tags: custom, coaching, therapy, minimal, elegant
*/

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.7;
  color: #3d3d3d;
  background-color: #FAF8F6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #C85A7C;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #a04861;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  background-color: #FAF8F6;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e4df;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #C85A7C;
  margin: 0;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #5d5d5d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: #C85A7C;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #5d5d5d;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  padding: 8rem 0;
  text-align: center;
  background-color: #FAF8F6;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #2d2d2d;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #5d5d5d;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #C85A7C;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #a04861;
  color: #ffffff;
}

.btn-secondary {
  background-color: #1E8DB8;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #166d8f;
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid #C85A7C;
  color: #C85A7C;
}

.btn-outline:hover {
  background-color: #C85A7C;
  color: #ffffff;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 6rem 0;
}

.section-light {
  background-color: #ffffff;
}

.section-dark {
  background-color: #f5f2ee;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

/* ============================================
   CARDS & GRID
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: #fef3f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #C85A7C;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-description {
  color: #5d5d5d;
  line-height: 1.7;
}

/* ============================================
   ABOUT SECTION (with photo)
   ============================================ */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-content h2 {
  color: #C85A7C;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #5d5d5d;
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #C85A7C;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: #3d3d3d;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 500;
  color: #5d5d5d;
  font-size: 1rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #2d2d2d;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 1.5px solid #d4cfc7;
  border-radius: 4px;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #C85A7C;
}

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

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: #2d2d2d;
  color: #d4cfc7;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: #d4cfc7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C85A7C;
}

.footer-bottom {
  border-top: 1px solid #4d4d4d;
  padding-top: 2rem;
  text-align: center;
  color: #9d9d9d;
  font-size: 0.875rem;
}

/* ============================================
   RELEASE FRAMEWORK (Acronym)
   ============================================ */

.release-framework {
  margin: 4rem 0;
}

.framework-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.framework-letter {
  width: 80px;
  height: 80px;
  background-color: #C85A7C;
  color: #ffffff;
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.framework-content h3 {
  margin-bottom: 0.5rem;
  color: #2d2d2d;
}

.framework-content p {
  color: #5d5d5d;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: #ffffff;
  border: none;
  text-align: left;
  font-family: 'Lora', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2d2d;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f2ee;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #C85A7C;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #5d5d5d;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: #1E8DB8;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 600;
  color: #C85A7C;
  margin-bottom: 1rem;
}

.pricing-description {
  color: #5d5d5d;
  margin-bottom: 2rem;
}

/* ============================================
   FEATURES PAGE (Press & Appearances)
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content {
  padding: 2rem;
}

.feature-category {
  display: inline-block;
  background-color: #fef3f7;
  color: #C85A7C;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.feature-date {
  color: #9d9d9d;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: #5d5d5d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-link {
  color: #C85A7C;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-link:hover {
  color: #a04861;
}

/* ============================================
   RESOURCES PAGE
   ============================================ */

.resources-section {
  margin-bottom: 5rem;
}

.resource-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.resource-info h3 {
  margin-bottom: 0.5rem;
}

.resource-description {
  color: #5d5d5d;
}

.resource-category-badge {
  display: inline-block;
  background-color: #e8f5f9;
  color: #1E8DB8;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FAF8F6;
    border-top: 1px solid #e8e4df;
    display: none;
  }
  
  .main-navigation.active {
    display: block;
  }
  
  .main-navigation ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }
  
  .main-navigation li {
    border-bottom: 1px solid #e8e4df;
  }
  
  .main-navigation a {
    display: block;
    padding: 1rem 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  .framework-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .framework-letter {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.text-rose {
  color: #C85A7C;
}

.text-teal {
  color: #1E8DB8;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
