body {
  font-family: "Helvetica Neue", sans-serif;
  background: linear-gradient(to bottom, #fdfaf6 0%, #f8f4ec 100%);
  color: #3e3e3e;
}

.section-divider {
  background: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
}

/* Extracted from main home page  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --warm-gold: #d4a574;
  --soft-sage: #a8b5a0;
  --pastel-blue: #b8d4e3;
  --earth-brown: #8b7355;
  --cream: #f7f5f2;
  --soft-white: #fefefe;
  --charcoal: #3a3a3a;
  --light-gray: #f0f0f0;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
}

.serif {
  font-family: "Crimson Text", serif;
}

/* Navigation */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--earth-brown);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 300;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--warm-gold);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--charcoal);
  margin: 3px 0;
  transition: 0.3s;
}

/* Dropdown Navigation Styles */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--soft-white);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 4px;
  padding: 0.5rem 0;
  top: 100%;
  left: 0;
  list-style: none;
}

.nav-links .dropdown-content li {
  padding: 0;
}

.nav-links .dropdown-content a {
  color: var(--charcoal);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight: 300;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links .dropdown-content a:hover {
  background-color: var(--light-gray);
  color: var(--warm-gold);
}

/* Show the dropdown menu on hover */
.nav-links .dropdown:hover .dropdown-content {
  display: block;
}

/* Adjust main nav link hover for dropdown parent */
.nav-links .dropdown > a:hover {
  color: var(
    --warm-gold
  ); /* Ensure the parent 'About' link still changes color on hover */
}

/* Mobile responsiveness for dropdown (optional, but good practice) */
@media (max-width: 768px) {
  .nav-links .dropdown-content {
    position: static; /* Stack vertically in mobile */
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    min-width: auto;
    border-radius: 0;
  }

  .nav-links .dropdown-content a {
    padding-left: 3rem; /* Indent dropdown items in mobile */
  }
}

/* Hero Section */
.hero {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23b8d4e3;stop-opacity:1" /><stop offset="50%" style="stop-color:%23a8b5a0;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%23d4a574;stop-opacity:0.6" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/><path d="M0,400 Q300,350 600,400 T1200,400 L1200,800 L0,800 Z" fill="%23f7f5f2" opacity="0.3"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding-top: 60px;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-quote {
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 3rem;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.kate-photo {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pastel-blue), var(--soft-sage));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-text {
  padding: 2rem 0;
}

.intro-text h2 {
  font-size: 2.5rem;
  color: var(--earth-brown);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.intro-text .highlight {
  font-weight: 500;
  color: var(--warm-gold);
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--pastel-blue), var(--soft-sage));
  padding: 4rem 2rem;
  margin: 6rem 0;
  border-radius: 12px;
  text-align: center;
  color: white;
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-button {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--soft-white);
  margin: 4rem -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-quote {
  font-size: 2rem;
  color: var(--earth-brown);
  margin-bottom: 3rem;
  font-style: italic;
  font-weight: 400;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
}

.about-text:first-of-type {
  font-size: 1.2rem;
  color: var(--earth-brown);
  font-weight: 500;
}

/* Timeline */
.timeline-section {
  margin: 4rem 0;
}

.timeline-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--earth-brown);
  margin-bottom: 3rem;
}

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

.timeline-item {
  background: var(--cream);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--warm-gold);
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-3px);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: var(--warm-gold);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.timeline-item h4 {
  color: var(--earth-brown);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.timeline-item p {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Page Sections */
.page-section {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  background: var(--soft-white);
}

.page-section:nth-child(even) {
  background: var(--cream);
}

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

.section-title {
  font-size: 3rem;
  color: var(--earth-brown);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--charcoal);
  font-style: italic;
  font-weight: 300;
}

.section-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Coming Soon Overlay for Writings Section */
.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    255,
    255,
    255,
    0.05
  ); /* Semi-transparent white background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10; /* Ensure it's above other content */
  backdrop-filter: blur(
    5px
  ); /* Optional: adds a blur effect to content underneath */
  text-align: center;
  border-radius: 8px; /* Match parent container's border-radius if applicable */
}

.coming-soon-overlay p {
  font-size: 3rem; /* Large font size for visibility */
  font-weight: bold;
  color: var(--earth-brown); /* Use a color from your theme */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for the overlay text */
@media (max-width: 768px) {
  .coming-soon-overlay p {
    font-size: 2rem;
  }
}

/* Release Process Styles */
.release-intro {
  background: linear-gradient(135deg, var(--soft-sage), var(--pastel-blue));
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin-bottom: 4rem;
  text-align: center;
}

.release-intro h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

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

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--warm-gold);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.audio-download {
  background: var(--warm-gold);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.download-button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.download-button:hover {
  background: white;
  color: var(--warm-gold);
}

/* Retreat Styles */
.retreat-featured {
  background: linear-gradient(135deg, var(--earth-brown), var(--warm-gold));
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.retreat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.detail-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.retreat-register {
  background: var(--pastel-blue);
  color: white;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.retreat-register:hover {
  background: var(--soft-sage);
  transform: translateY(-2px);
}

/* Writings Styles */
.writings-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.category-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-header {
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, var(--pastel-blue), var(--soft-sage));
  color: white;
  text-align: center;
}

.category-content {
  padding: 1.5rem 2rem 2rem;
}

.article-list {
  list-style: none;
  padding: 0;
}

.article-list li {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.article-list a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-list a:hover {
  color: var(--warm-gold);
}

/* Work with Me Styles */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.offering-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--warm-gold);
  transition: transform 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-5px);
}

.offering-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--warm-gold), var(--earth-brown));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.price {
  color: var(--earth-brown);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1rem 0;
}

.book-button {
  background: var(--warm-gold);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.book-button:hover {
  background: var(--earth-brown);
  transform: translateY(-2px);
}

/* Mailing List Signup */
.mailing-signup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--warm-gold), var(--earth-brown));
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  z-index: 1000;
  transform: translateX(320px);
  transition: transform 0.3s ease;
}

.mailing-signup.visible {
  transform: translateX(0);
}

.signup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signup-input {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

.signup-submit {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid white;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-submit:hover {
  background: white;
  color: var(--warm-gold);
}

/* Photo Block */
.photo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

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

.photo-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.photo-lester {
  background: linear-gradient(135deg, var(--warm-gold), var(--earth-brown));
}

.photo-nature {
  background: linear-gradient(135deg, var(--soft-sage), var(--pastel-blue));
}

.photo-caption {
  font-style: italic;
  color: var(--earth-brown);
  font-size: 1rem;
}

.lester-kate-photo {
    text-align: center; /* Centers the image within its container */
    margin: 3rem auto; /* Adds vertical spacing and centers the container itself */
    max-width: 300px; /* Limits the width of the image container, adjust as needed */
}

.lester-kate-photo img {
    max-width: 100%; /* Ensures the image is responsive and fits its container */
    height: auto; /* Maintains the image's aspect ratio */
    display: block; /* Removes extra space below the image */
    border-radius: 8px; /* Softens the corners of the image */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-quote {
    font-size: 1.2rem;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 2rem;
  }

  .intro-text p {
    font-size: 1.1rem;
  }

  .photo-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .main-content {
    padding: 2rem 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 200px;
  }

  .about-quote {
    font-size: 1.5rem;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    margin: 4rem -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-section {
    padding: 6rem 1rem 2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .retreat-grid {
    grid-template-columns: 1fr;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .mailing-signup {
    position: static;
    margin: 2rem auto;
    max-width: 100%;
    transform: none;
  }

  .mailing-signup.visible {
    transform: none;
  }
}

/* Subtle animations */
.hero-content {
  animation: fadeInUp 1.5s ease;
}

.nav-container {
  animation: slideDown 0.8s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Hover effects */
.photo-placeholder {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Contact Section Styles */
.contact-section {
  padding: 8rem 2rem 4rem;
  background: var(--cream);
  /* Or soft-white, depending on desired alternation */
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--earth-brown);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

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

.submit-button {
  background: var(--warm-gold);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 1rem;
}

.submit-button:hover {
  background: var(--earth-brown);
  transform: translateY(-2px);
}

.contact-links {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-links a {
  color: var(--warm-gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-links a:hover {
  color: var(--earth-brown);
}

/* Footer Styles */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 4rem;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--soft-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--warm-gold);
}
