/*
Theme Name: Essen Sie Sich Gesund
Theme URI: https://essen-sie-sich-gesund.de
Author: Irina Göttmann
Author URI: https://essen-sie-sich-gesund.de
Description: Ganzheitliche Ernährungsberatung - Ein elegantes Theme für Ernährungsberater
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: essen-sie-sich-gesund
Tags: one-column, custom-colors, custom-menu, featured-images, theme-options
*/

/* ===== CSS Variables ===== */
:root {
  --background: #FAF8F5;
  --foreground: #3D4A3F;
  --card: #FFFDF9;
  --card-foreground: #3D4A3F;
  --primary: #6B8E6B;
  --primary-foreground: #FFFFFF;
  --secondary: #F3EDE4;
  --secondary-foreground: #3D4A3F;
  --muted: #EBE5DB;
  --muted-foreground: #5D6B5D;
  --accent: #D4B896;
  --accent-foreground: #3D4A3F;
  --border: #C5D3C5;
  --input: #F3EDE4;
  --ring: #6B8E6B;
  --radius: 0.625rem;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: #FAF8F5;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  min-width: 100%;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

p {
  margin-bottom: 0;
  line-height: 1.7;
}

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

a:hover {
  color: var(--accent);
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mobile-menu-svg {
	color: #000 !important;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.logo-image-hero {
	width: 100%;
}

.main-nav .btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #5a7d5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 142, 107, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

/* ===== Logo ===== */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-hero {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 15px;
}

.logo-line {
  width: 2rem;
  height: 1px;
  background-color: var(--primary);
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.logo-large .logo-text {
  font-size: 1.5rem;
}

/* Logo Image Styles */
.logo-image {
  height: 20px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 480px) {
  .logo-image {
    height: 15px;
  }
}

@media (min-width: 768px) {
  .logo-image {
    height: 20px;
  }
  .logo-large .logo-text {
    font-size: 2rem;
  }
  .logo-large .logo-line {
    width: 4rem;
  }
}

@media (min-width: 1024px) {
  .logo-large .logo-text {
    font-size: 2.5rem;
  }
  .logo-large .logo-line {
    width: 5rem;
  }
}

.logo-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  letter-spacing: 0.15em;
}

.logo-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* ===== Navigation ===== */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-nav a {
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background);
  z-index: 999;
  padding: 6rem 2rem 2rem;
}

.mobile-menu.active {
  display: contents;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  font-size: 1.25rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
}

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

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
	display: grid;
  }
}

.hero-content {
  text-align: center;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
    order: 1;
  }
  .hero-image {
    order: 2;
  }
}

.hero-tagline {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--secondary);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-author {
  margin-top: 3rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--muted-foreground);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 9999px;
  border: 4px solid var(--card);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.scroll-indicator svg:last-child {
  margin-top: -0.5rem;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--secondary);
}

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

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Cards ===== */
.card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--primary);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--muted-foreground);
}

/* ===== Grid Layouts ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Problems Section ===== */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.problem-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.about-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ===== Process Section ===== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-content h4 {
  margin-bottom: 0.5rem;
}

.process-content p {
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== Pricing Section ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(107, 142, 107, 0.2);
}

.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

.pricing-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (max-width: 767px) {
	.contact-grid > .contact-image {
    	grid-column-start: 1;
    	grid-row-start: 1;
	}
	
	.footer-links {	
		justify-content: center;
	}
	
	.hero-title {
    	font-size: 1.2rem;
	}
	
	.logo-image {
     	height: 15px;
	}
	
	.quote-icon svg {
    	width: 1.5rem;
    	height: 1.5rem;
	}
	
	.logo-image-hero {
    	width: 90%;
    	margin: 0 auto;
	}
	
	.scroll-indicator {
		display: none
	}
	
	#kennen-sie-das {
		margin-top: 5rem !important;	
	}
}


@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
	align-items: center;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border-radius: 50%;
  color: var(--primary);
}

.contact-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h4 {
  color: var(--background);
  margin-bottom: 1rem;
}

.footer-section a {
  display: block;
  color: rgba(250, 248, 245, 0.7);
  padding: 0.25rem 0;
}

.footer-section a:hover {
  color: var(--background);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(250, 248, 245, 0.7);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(250, 248, 245, 0.7);
}

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

/* ===== Animations ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Section Divider ===== */
.section-divider {
  width: 6rem;
  height: 2px;
  background-color: var(--primary);
  margin: 0 auto 1.5rem;
}

/* ===== Solutions Grid ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.solution-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  border-radius: 50%;
  color: var(--accent-foreground);
}

.solutions-cta {
  background-color: rgba(107, 142, 107, 0.1);
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.solutions-cta-small {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.solutions-cta-large {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

@media (min-width: 768px) {
  .solutions-cta-small {
    font-size: 1.5rem;
  }
  .solutions-cta-large {
    font-size: 2rem;
  }
}

/* ===== About Section Styles ===== */
.about-subtitle {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  text-align: center;
  margin: 0;
}

/* ===== Target Grid ===== */
.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .target-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.target-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.target-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.target-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.125rem;
}

.target-card p {
  color: var(--foreground);
  margin: 0;
  line-height: 1.5;
}

/* ===== Contact Section Styles ===== */
.contact-info-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .contact-info-card {
    padding: 2.5rem;
  }
}

.contact-info-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-benefits {
  margin-bottom: 2rem;
}

.contact-benefits p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-benefits .checkmark {
  color: var(--accent);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--secondary);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-item:hover {
  background-color: rgba(107, 142, 107, 0.1);
  transform: translateX(-4px);
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-value {
  display: block;
  font-weight: 500;
  color: var(--foreground);
}

.contact-cta {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.125rem;
  background-color: var(--accent);
}

.contact-cta:hover {
  background-color: #c4a87f;
}

/* ===== Hero Author Styles ===== */
.hero-author-name {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.hero-author-title {
  color: var(--muted-foreground);
  margin: 0;
}

/* ===== Menu Open State ===== */
body.menu-open {
  overflow: hidden;
}

/* ===== Featured Pricing Card ===== */
.pricing-card.featured {
  background-color: rgba(212, 184, 150, 0.1);
}

/* ===== Quote Section ===== */
.section-quote {
  padding: 4rem 0;
}

.quote-box {
  max-width: 56rem;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  color: rgba(107, 142, 107, 0.2);
}

.quote-icon svg {
  width: 3rem;
  height: 3rem;
}

.quote-icon-open {
  top: 1.5rem;
  left: 1.5rem;
}

.quote-icon-close {
  bottom: 1.5rem;
  right: 1.5rem;
  transform: rotate(180deg);
}

.quote-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.quote-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--foreground);
  margin: 0 0 1.5rem 0;
  padding: 0 1rem;
}

.quote-divider {
  width: 4rem;
  height: 2px;
  background-color: var(--primary);
  margin: 0 auto 1.5rem;
}

.quote-author {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;	
  font-size: 1.7rem;
  color: var(--muted-foreground);
  margin: 0 0 0.25rem 0;
}

.quote-role {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: rgba(93, 107, 93, 0.7);
  margin: 0;
}

/* Tablet */
@media (min-width: 768px) {
  .section-quote {
    padding: 5rem 0;
  }
  
  .quote-box {
    padding: 3rem;
  }
  
  .quote-icon svg {
    width: 4rem;
    height: 4rem;
  }
  
  .quote-icon-open {
    top: 2rem;
    left: 2rem;
  }
  
  .quote-icon-close {
    bottom: 2rem;
    right: 2rem;
  }
  
  .quote-text {
    font-size: 1.75rem;
    padding: 0 2rem;
  }
  
  .quote-author {
    font-size: 1.25rem;
  }
  
  .quote-role {
    font-size: 1rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .section-quote {
    padding: 6rem 0;
  }
  
  .quote-box {
    padding: 4rem;
  }
  
  .quote-text {
    font-size: 2rem;
    padding: 0 3rem;
  }
}
