/*
 * Laura Moosmüller - Custom CSS for WordPress (Astra Theme)
 * v3 - Full-width layout, offering cards, centered columns, custom footer
 *
 * INSTRUCTIONS:
 * 1. Go to Appearance > Customize > Additional CSS
 * 2. Select all (Ctrl+A) and delete existing CSS
 * 3. Paste this entire file
 * 4. Click "Publish"
 */

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --lm-coral: #F7896B;
  --lm-coral-hover: #e5775b;
  --lm-dark-green: #233C32;
  --lm-medium-green: #52785F;
  --lm-cream: #F9F8F5;
  --lm-light-sage: #EEF1EE;
  --lm-white: #FFFFFF;
  --lm-text-dark: #3E3E3D;
  --lm-text-body: #1a1a1a;
  --lm-text-muted: #7D7C7B;
  --lm-font-heading: 'Cormorant Garamond', serif;
  --lm-font-body: 'Inter', sans-serif;
}

/* ============================================
   GLOBAL / BODY
   ============================================ */
body,
body.flavor-flavor {
  font-family: var(--lm-font-body) !important;
  color: var(--lm-text-body);
  background-color: var(--lm-cream) !important;
  line-height: 1.7;
  font-size: 16px;
}

/* ============================================
   FULL WIDTH LAYOUT
   ============================================ */
.ast-container,
.site-content .ast-container {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single .entry-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ast-separate-container .ast-article-post {
  padding: 0 !important;
}

#primary {
  max-width: none !important;
  padding: 0 !important;
}

.entry-content {
  max-width: none !important;
  padding: 0 !important;
}

/* Alignfull blocks span full viewport */
.alignfull,
.wp-block-group.alignfull {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
}

/* Inner content constrained and centered */
.alignfull > *,
.wp-block-group.alignfull > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Non-full-width content also centered */
.entry-content > *:not(.alignfull) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.entry-content > .alignfull {
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Group block padding */
.wp-block-group.alignfull.has-background {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Remove Astra page title and top spacing */
.ast-the-title,
.entry-title,
.page-title {
  display: none !important;
}

.entry-content > *:first-child {
  margin-top: 0 !important;
}

.ast-separate-container .ast-article-single,
.ast-separate-container .entry-content > *:first-child.alignfull {
  margin-top: -2em !important;
}

/* ============================================
   CENTERED COLUMN LAYOUTS (Hero + About)
   ============================================ */
.hero-section > .wp-block-columns,
.about-section > .wp-block-columns {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: stretch;
}

.hero-section .wp-block-column,
.about-section .wp-block-column {
  padding-left: 20px !important;
  padding-right: 20px !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section .wp-block-column:hover,
.about-section .wp-block-column:hover {
  transform: none !important;
}

/* Hero image fills column height */
.hero-section .wp-block-image,
.hero-section .wp-block-image figure,
.about-section .wp-block-image,
.about-section .wp-block-image figure {
  height: 100%;
  margin: 0;
}

.hero-section .wp-block-image img,
.about-section .wp-block-image img {
  height: 100% !important;
  object-fit: cover;
  border-radius: 16px;
}

/* ============================================
   HERO TAGS (white pill boxes with icons)
   ============================================ */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5em 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--lm-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lm-text-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-tag:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}

.hero-tag svg {
  flex-shrink: 0;
}

/* Offerings section columns centered */
.offerings-section > .wp-block-columns {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* General column gap */
.wp-block-columns {
  gap: 2em;
}

/* Section headings centered and constrained */
.alignfull .has-text-align-center {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3,
.wp-block-heading,
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: var(--lm-font-heading) !important;
  color: var(--lm-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1, .entry-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.5em;
}

h2, .entry-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.5em;
}

h3, .entry-content h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 0.5em;
}

h4, .entry-content h4 {
  font-family: var(--lm-font-body) !important;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lm-text-muted);
  margin-bottom: 0.3em;
}

h5, .entry-content h5 {
  font-family: var(--lm-font-body) !important;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lm-coral);
  margin-bottom: 0.3em;
}

p, .entry-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}

/* ============================================
   BUTTONS
   ============================================ */
.wp-block-button__link,
.wp-block-button .wp-block-button__link,
.wp-element-button,
.entry-content .wp-block-button__link {
  background-color: var(--lm-coral) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 14px 32px !important;
  font-family: var(--lm-font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  display: inline-block;
  letter-spacing: 0.02em;
}

.wp-block-button__link:hover,
.wp-element-button:hover,
.entry-content .wp-block-button__link:hover {
  background-color: var(--lm-dark-green) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.wp-block-buttons {
  margin: 1.5em 0;
}

/* ============================================
   IMAGES
   ============================================ */
.wp-block-image img,
.entry-content figure img,
figure.wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* ============================================
   OFFERING CARDS (3-column section)
   ============================================ */
.offerings-section .wp-block-column {
  background: var(--lm-white) !important;
  border-radius: 16px !important;
  padding: 2.2em 2em !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  cursor: pointer;
}

.offerings-section .wp-block-column:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(35, 60, 50, 0.15) !important;
  border-color: rgba(247, 137, 107, 0.3) !important;
}

/* Offering card buttons: full-width within card */
.offerings-section .wp-block-button {
  margin-top: auto;
}

.offerings-section .wp-block-button__link {
  width: 100% !important;
  text-align: center !important;
  padding: 12px 20px !important;
}

/* ============================================
   OFFERING ICONS
   ============================================ */
.offering-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background-color: var(--lm-light-sage) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.2em !important;
  transition: background-color 0.3s ease !important;
}

.offering-icon svg {
  transition: stroke 0.3s ease !important;
}

/* Icon hover: coral background, white icon */
.offerings-section .wp-block-column:hover .offering-icon {
  background-color: var(--lm-coral) !important;
}

.offerings-section .wp-block-column:hover .offering-icon svg {
  stroke: #FFFFFF !important;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.wp-block-quote {
  background: var(--lm-light-sage);
  border-left: 4px solid var(--lm-coral) !important;
  border-radius: 12px;
  padding: 1.8em;
  font-style: normal !important;
}

.wp-block-quote p {
  font-style: normal !important;
}

.wp-block-quote cite {
  display: block;
  margin-top: 1em;
  font-size: 0.85rem;
  font-style: normal !important;
  color: var(--lm-text-muted);
  font-weight: 500;
}

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.testimonial-carousel {
  max-width: 750px;
  margin: 2em auto 0;
  position: relative;
  min-height: 200px;
}

.testimonial-slides {
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: testimonialFadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes testimonialFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-slide blockquote {
  background: var(--lm-light-sage);
  border-left: 4px solid var(--lm-coral) !important;
  border-radius: 12px;
  padding: 2em 2.5em;
  margin: 0;
  font-style: normal !important;
}

.testimonial-slide blockquote p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--lm-text-dark);
  font-style: normal !important;
  margin-bottom: 0;
}

.testimonial-slide blockquote cite {
  display: block;
  margin-top: 1.2em;
  font-size: 0.85rem;
  font-style: normal !important;
  color: var(--lm-text-muted);
  font-weight: 500;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5em;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--lm-medium-green);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.testimonial-dot.active {
  background: var(--lm-medium-green);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: var(--lm-medium-green);
}

.testimonial-arrows {
  position: absolute;
  top: 50%;
  left: -20px;
  right: -20px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--lm-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lm-text-dark);
  transition: all 0.2s ease;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-arrow:hover {
  background: var(--lm-coral);
  color: #FFFFFF;
  border-color: var(--lm-coral);
}

/* ============================================
   SEPARATORS
   ============================================ */
.wp-block-separator,
hr {
  display: none !important;
}

/* ============================================
   HEADER (Astra)
   ============================================ */
.ast-primary-header,
.site-header,
.main-header-bar {
  background-color: var(--lm-cream) !important;
  border-bottom: 1px solid var(--lm-light-sage) !important;
  box-shadow: none !important;
}

.main-header-bar .site-title a,
.ast-site-title-wrap a,
.site-title a,
.ast-site-identity .site-title a {
  font-family: var(--lm-font-heading) !important;
  color: var(--lm-dark-green) !important;
  font-weight: 700;
  font-size: 1.4rem !important;
}

.main-header-menu a,
.ast-header-sections-navigation a,
.main-navigation a {
  font-family: var(--lm-font-body) !important;
  font-size: 0.9rem !important;
  color: var(--lm-text-dark) !important;
  text-decoration: none !important;
  letter-spacing: 0.02em;
}

.main-header-menu a:hover,
.main-navigation a:hover {
  color: var(--lm-coral) !important;
}

/* ============================================
   TIMELINE (Werdegang section)
   ============================================ */
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background-color: var(--lm-coral);
  margin-top: 6px;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline-content strong {
  font-family: var(--lm-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lm-text-dark);
}

.timeline-content span {
  font-family: var(--lm-font-body);
  font-size: 0.85rem;
  color: var(--lm-text-muted);
  line-height: 1.5;
}

/* ============================================
   FOOTER - Hide Astra default, use custom
   ============================================ */
footer.site-footer,
.site-footer {
  display: none !important;
}

/* Custom in-page footer */
.site-custom-footer {
  margin-top: 0 !important;
  background-color: #52785F !important;
}

.site-custom-footer .wp-block-columns {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.site-custom-footer .wp-block-column {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

.site-custom-footer .wp-block-column:hover {
  transform: none !important;
  box-shadow: none !important;
}

.site-custom-footer a {
  color: #b0b8b3 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.site-custom-footer a:hover {
  color: var(--lm-coral) !important;
}

.site-custom-footer .wp-block-button__link {
  background-color: var(--lm-coral) !important;
  color: #FFFFFF !important;
  padding: 10px 22px !important;
  width: auto !important;
}

.site-custom-footer .wp-block-button__link:hover {
  background-color: var(--lm-coral-hover) !important;
}

.site-custom-footer .wp-block-separator {
  display: block !important;
  border: none !important;
  height: 1px !important;
  margin: 2em auto !important;
  max-width: 1200px !important;
}

/* ============================================
   LINK STYLES
   ============================================ */
.entry-content a:not(.wp-block-button__link) {
  color: var(--lm-coral);
  text-decoration: none;
}

.entry-content a:not(.wp-block-button__link):hover {
  text-decoration: underline;
}

/* ============================================
   LISTS
   ============================================ */
.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.entry-content li {
  margin-bottom: 0.5em;
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================
   CHECK CARDS (Für wen section - ADHS page)
   ============================================ */
.check-card {
  background: var(--lm-white);
  border-radius: 16px;
  padding: 2em;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.check-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(35,60,50,0.12);
}

.check-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(247,137,107,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}

.check-card h3 {
  font-family: var(--lm-font-heading) !important;
  font-size: 1.3rem;
  margin-bottom: 0.5em;
}

.check-card p {
  color: var(--lm-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   PRICE TAG (Pricing cards - ADHS page)
   ============================================ */
.price-tag {
  font-family: var(--lm-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lm-text-dark);
  margin: 0.5em 0 1em;
  line-height: 1.2;
}

.price-tag span {
  font-family: var(--lm-font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--lm-text-muted);
}

/* ============================================
   POPULAR BADGE (Pricing - ADHS page)
   ============================================ */
.popular-badge {
  display: inline-block;
  background: var(--lm-coral);
  color: #FFFFFF;
  font-family: var(--lm-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 0.5em;
}

/* ============================================
   RESULTS GRID (Ergebnisse - ADHS page)
   ============================================ */
.results-grid {
  max-width: 800px;
  margin: 2em auto 0;
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1em 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.result-item:last-child {
  border-bottom: none;
}

.result-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.result-item span {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lm-text-dark);
}

/* ============================================
   STEP NUMBER (Process section - ADHS page)
   ============================================ */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lm-coral);
  color: #FFFFFF;
  font-family: var(--lm-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
  transition: transform 0.3s ease;
}

.offerings-section .wp-block-column:hover .step-number {
  transform: scale(1.1);
}

/* ============================================
   DISCLAIMER BOX
   ============================================ */
.disclaimer-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.2em 1.8em;
  background: var(--lm-white);
  border-left: 4px solid var(--lm-medium-green);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.disclaimer-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-box p {
  font-size: 0.9rem;
  color: var(--lm-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.wp-block-video,
figure.wp-block-video,
.entry-content .wp-block-video,
.entry-content figure.wp-block-video {
  max-width: 400px !important;
  width: 400px !important;
  margin: 2em auto 0 !important;
}

.wp-block-video video,
figure.wp-block-video video,
.entry-content .wp-block-video video {
  width: 100% !important;
  max-width: 400px !important;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* ============================================
   PARTNER LOGOS (Für Unternehmen)
   ============================================ */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 2em auto 0;
}

.partner-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: opacity 0.3s ease, filter 0.3s ease;
  border-radius: 0 !important;
}

.partner-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   MIND & MICROBIOME SECTION (dark green)
   ============================================ */
.mm-section .wp-block-column {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}

.mm-section .wp-block-column:hover {
  transform: none !important;
}

.mm-feature-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2em;
  text-align: center;
  transition: background 0.3s ease;
}

.mm-feature-card:hover {
  background: rgba(255,255,255,0.12);
}

.mm-feature-card svg {
  margin-bottom: 1em;
}

.mm-feature-card h4 {
  font-family: var(--lm-font-heading) !important;
  font-size: 1.3rem !important;
  color: #F9F8F5 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 0.3em;
}

.mm-feature-card p {
  color: #b0b8b3;
  font-size: 0.9rem;
  margin: 0;
}

.mm-details {
  display: flex;
  justify-content: center;
  gap: 3em;
  margin-top: 2.5em;
  flex-wrap: wrap;
}

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

.mm-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a9b90;
  margin-bottom: 0.3em;
}

.mm-value {
  display: block;
  font-family: var(--lm-font-heading);
  font-size: 1.1rem;
  color: #F9F8F5;
  font-weight: 600;
}

.mm-expert-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2em;
  text-align: center;
}

.mm-expert-card h4 {
  font-family: var(--lm-font-heading) !important;
  font-size: 1.4rem !important;
  color: #F9F8F5 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 0.2em;
}

.mm-expert-role {
  font-size: 0.8rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lm-coral) !important;
  margin-bottom: 0.8em !important;
}

.mm-expert-card p {
  color: #b0b8b3;
  font-size: 0.9rem;
}

.mm-expert-card a {
  color: var(--lm-coral) !important;
  text-decoration: none;
  font-weight: 500;
}

.mm-expert-card a:hover {
  text-decoration: underline;
}

.mm-pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2em;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mm-pricing-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.mm-recommended {
  border-color: var(--lm-coral);
  background: rgba(247,137,107,0.08);
}

.mm-pricing-card h5 {
  font-size: 0.75rem !important;
  color: var(--lm-coral) !important;
}

.mm-pricing-card h3 {
  font-family: var(--lm-font-heading) !important;
  font-size: 1.3rem;
  color: #F9F8F5 !important;
  margin-bottom: 0.5em;
}

.mm-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  text-align: left;
}

.mm-pricing-card li {
  color: #b0b8b3;
  font-size: 0.9rem;
  padding: 0.4em 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.mm-btn {
  display: inline-block;
  background: var(--lm-coral);
  color: #FFFFFF !important;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none !important;
  font-family: var(--lm-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
  margin-top: 1em;
}

.mm-btn:hover {
  background: var(--lm-dark-green);
  transform: translateY(-1px);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-card {
  background: var(--lm-white);
  border-radius: 16px;
  padding: 2.5em 2em;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lm-light-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2em;
}

.contact-card h3 {
  font-family: var(--lm-font-heading) !important;
  font-size: 1.5rem;
  margin-bottom: 1.2em;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin-bottom: 1.5em;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--lm-text-dark);
}

.contact-detail-item svg {
  flex-shrink: 0;
}

.contact-booking-btn {
  display: inline-block;
  background: var(--lm-coral);
  color: #FFFFFF !important;
  padding: 14px 32px;
  border-radius: 5px;
  text-decoration: none !important;
  font-family: var(--lm-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
  margin-top: auto;
}

.contact-booking-btn:hover {
  background: var(--lm-dark-green);
  transform: translateY(-1px);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  margin-bottom: 1.5em;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lm-text-muted);
}

.contact-info-item a,
.contact-info-item span {
  font-size: 0.95rem;
  color: var(--lm-text-dark);
}

.contact-info-item a {
  color: var(--lm-coral) !important;
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-response-note {
  font-size: 0.85rem !important;
  color: var(--lm-text-muted) !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  font-style: italic;
}

/* Contact Form 7 styling */
.contact-form-wrapper {
  max-width: 650px;
  margin: 2em auto 0;
}

.wpcf7 label {
  display: block;
  font-family: var(--lm-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lm-text-dark);
  margin-bottom: 0.3em;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: var(--lm-font-body);
  font-size: 0.95rem;
  background: var(--lm-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1.2em;
  box-sizing: border-box;
}

.wpcf7 select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: var(--lm-font-body);
  font-size: 0.95rem;
  background: var(--lm-white);
  color: var(--lm-text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1.2em;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237D7C7B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.wpcf7 select:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--lm-medium-green);
  box-shadow: 0 0 0 3px rgba(82,120,95,0.1);
}

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

.wpcf7 input[type="submit"] {
  background: var(--lm-coral);
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  padding: 14px 32px;
  font-family: var(--lm-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--lm-dark-green);
  transform: translateY(-1px);
}

.wpcf7-response-output {
  border-radius: 8px !important;
  font-family: var(--lm-font-body) !important;
  font-size: 0.9rem !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 782px) {
  .wp-block-columns {
    flex-direction: column !important;
  }

  .wp-block-button__link,
  .wp-element-button {
    width: 100% !important;
    text-align: center !important;
  }

  .wp-block-group.alignfull.has-background {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .hero-section > .wp-block-columns,
  .about-section > .wp-block-columns {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-custom-footer .wp-block-columns {
    flex-direction: column !important;
    gap: 2em !important;
  }

  h1, .entry-content h1 { font-size: 1.8rem; }
  h2, .entry-content h2 { font-size: 1.5rem; }
  h3, .entry-content h3 { font-size: 1.2rem; }

  .partner-logos { gap: 1.5em; }
  .partner-logos img { max-height: 40px; }

  .mm-details { gap: 1.5em; }

  .contact-card { padding: 2em 1.5em; }

  .blog-hero h1 { font-size: 2rem; }
}

/* ============================================
   BLOG ARCHIVE / LISTING PAGE
   ============================================ */

/* Force full-width layout on blog */
.blog #primary {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 auto !important;
}

.blog .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
  display: block !important;
}

/* Blog page hero header */
.blog .ast-archive-description,
.blog .page-header {
  background-color: #F9F8F5 !important;
  padding: 60px 5% 40px !important;
  text-align: center !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
  max-width: 100% !important;
}

.blog .ast-archive-description .page-title,
.blog .page-header .page-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2.8rem !important;
  font-weight: 600 !important;
  color: #233C32 !important;
  margin-bottom: 0.3em !important;
}

/* Override Astra grid layout to 2-col card grid */
.blog #primary.ast-grid-3,
.blog #primary.ast-grid-2,
.blog #primary.ast-grid-4 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2em !important;
  padding: 40px 5% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Post card styling */
.blog article.post {
  background: #ffffff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #EEF1EE !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.blog article.post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

/* Post inner wrapper */
.blog .ast-article-inner {
  padding: 0 !important;
}

.blog .post-content.ast-grid-common-col {
  padding: 0 !important;
}

/* Post thumbnail */
.blog .ast-blog-featured-section,
.blog .post-thumb-img-content {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

.blog .ast-blog-featured-section img,
.blog .post-thumb-img-content img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease;
}

.blog article.post:hover .ast-blog-featured-section img,
.blog article.post:hover .post-thumb-img-content img {
  transform: scale(1.05);
}

/* No-thumb placeholder */
.blog .ast-no-thumb .ast-blog-featured-section {
  height: 180px !important;
  background: linear-gradient(135deg, #EEF1EE, #F9F8F5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Category label */
.blog .ast-taxonomy-container {
  padding: 1.2em 1.5em 0 !important;
  margin: 0 !important;
}

.blog .ast-taxonomy-container a {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #52785F !important;
  text-decoration: none !important;
}

/* Post title */
.blog article .entry-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: #233C32 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  padding: 0.5em 1.1em !important;
}

.blog article .entry-title a {
  color: #233C32 !important;
  text-decoration: none !important;
}

.blog article .entry-title a:hover {
  color: #52785F !important;
}

/* Post meta (date, author) */
.blog article .entry-header.ast-blog-meta-container {
  padding: 0 1.5em !important;
  margin: 0 0 0.5em !important;
}

.blog article .entry-meta,
.blog article .entry-meta * {
  font-size: 0.82rem !important;
  color: #6b7f72 !important;
}

.blog article .entry-meta a {
  color: #52785F !important;
  text-decoration: none !important;
}

/* Post excerpt */
.blog .ast-excerpt-container {
  padding: 0 1.5em 1.5em !important;
}

.blog .ast-excerpt-container p {
  font-size: 0.95rem !important;
  color: #555 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Read more link */
.blog article .read-more a,
.blog article .ast-read-more-container a {
  display: inline-block !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #52785F !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  text-decoration: none !important;
  padding: 0 1.5em 1.5em !important;
  transition: color 0.2s ease;
}

.blog article .read-more a:hover,
.blog article .ast-read-more-container a:hover {
  color: #F7896B !important;
}

/* Hide default Astra footer on blog */
.blog .ast-row .site-custom-footer {
  display: none !important;
}

/* Pagination */
.blog .ast-pagination,
.blog .pagination {
  grid-column: 1 / -1 !important;
  text-align: center !important;
  padding: 2em 0 3em !important;
}

.blog .ast-pagination .page-numbers,
.blog .pagination .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin: 0 4px;
  font-size: 0.9rem;
  color: #233C32;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog .ast-pagination .page-numbers.current,
.blog .pagination .page-numbers.current {
  background: #52785F;
  color: #fff;
}

.blog .ast-pagination .page-numbers:hover:not(.current),
.blog .pagination .page-numbers:hover:not(.current) {
  background: #EEF1EE;
}

/* ============================================
   SINGLE BLOG POST
   ============================================ */
.single-post .entry-header {
  text-align: center;
  padding: 60px 5% 20px;
  background-color: #F9F8F5;
}

.single-post .entry-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2.6rem !important;
  font-weight: 600 !important;
  color: #233C32 !important;
  line-height: 1.2 !important;
  max-width: 720px;
  margin: 0 auto 0.5em;
}

.single-post .entry-meta {
  font-size: 0.88rem;
  color: #6b7f72;
  margin-bottom: 1em;
}

.single-post .entry-meta a {
  color: #52785F;
  text-decoration: none;
}

.single-post .entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2em 5% 3em;
}

.single-post .entry-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2em;
}

.single-post .entry-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #233C32;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.single-post .entry-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #233C32;
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.single-post .entry-content img {
  border-radius: 12px;
  margin: 1.5em 0;
}

.single-post .entry-content blockquote {
  border-left: 3px solid #52785F;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background: #F9F8F5;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #233C32;
}

/* Post navigation (prev/next) */
.single-post .post-navigation {
  max-width: 720px;
  margin: 0 auto;
  padding: 2em 5%;
  border-top: 1px solid #EEF1EE;
}

.single-post .post-navigation a {
  color: #52785F;
  text-decoration: none;
  font-weight: 500;
}

.single-post .post-navigation a:hover {
  color: #F7896B;
}

/* ============================================
   BLOG RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .blog #primary.ast-grid-3,
  .blog #primary.ast-grid-2,
  .blog #primary.ast-grid-4 {
    grid-template-columns: 1fr !important;
    padding: 20px 4% !important;
  }

  .blog .ast-archive-description,
  .blog .page-header {
    padding: 40px 4% 30px !important;
  }

  .blog .ast-archive-description .page-title,
  .blog .page-header .page-title {
    font-size: 2rem !important;
  }

  .single-post .entry-title {
    font-size: 2rem !important;
  }

  .single-post .entry-header {
    padding: 40px 4% 15px;
  }

  .single-post .entry-content {
    padding: 1.5em 4% 2em;
  }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #EEF1EE;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #52785F;
}

.faq-question:hover h3 {
  color: #52785F;
}

.faq-question h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #233C32;
  margin: 0;
  flex: 1;
  padding-right: 1em;
  transition: color 0.2s ease;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #52785F;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-open .faq-answer {
  max-height: 300px;
  padding: 0 0 1.5em 0;
}

.faq-answer p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 1.1rem;
  }
}
