/* =================================
   SPECTER HORSE - NATURE ORGANIC DESIGN
   CSS Reset & Base Styles
   ================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background: #FAF7F2;
  overflow-x: hidden;
}
.cookie-banner p,footer p {
  color: white;
}
/* =================================
   NATURE ORGANIC COLOR PALETTE
   ================================= */

:root {
  --primary-dark: #2C3E50;
  --secondary-brown: #8B4513;
  --accent-gold: #D4AF37;
  --earth-cream: #FAF7F2;
  --moss-green: #6B8E23;
  --bark-brown: #5D4E37;
  --leaf-green: #8FBC8F;
  --stone-gray: #708090;
  --sand-beige: #E8DCC4;
  --forest-dark: #1A2F1A;
  --white: #FFFFFF;
}

/* =================================
   TYPOGRAPHY - ORGANIC HIERARCHY
   ================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 700;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--primary-dark);
}

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

a:hover {
  color: var(--moss-green);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

/* =================================
   CONTAINER & LAYOUT
   ================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* =================================
   HEADER - ORGANIC NAVIGATION
   ================================= */

header {
  background: linear-gradient(135deg, var(--earth-cream) 0%, var(--sand-beige) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  border-bottom: 2px solid var(--leaf-green);
}

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

.logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-dark);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--moss-green);
  transition: width 0.3s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

/* =================================
   MOBILE MENU - HAMBURGER
   ================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--moss-green);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--bark-brown);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, var(--earth-cream) 0%, var(--sand-beige) 100%);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  padding: 80px 30px 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-brown);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--moss-green);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-dark);
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(107, 142, 35, 0.1);
  border-left-color: var(--moss-green);
  padding-left: 24px;
}

/* =================================
   HERO SECTIONS - ORGANIC SHAPES
   ================================= */

.hero,
.page-hero,
.hero-404,
.hero-thankyou {
  background: linear-gradient(135deg, var(--leaf-green) 0%, var(--moss-green) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero h1,
.page-hero h1,
.hero-404 h1,
.hero-thankyou h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subheadline,
.section-subheadline {
  font-size: 18px;
  color: var(--earth-cream);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.page-hero .subheadline {
  color: var(--earth-cream);
}

.literary-quote {
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  margin-top: 24px;
}

/* =================================
   BUTTONS - ORGANIC STYLE
   ================================= */

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--moss-green);
  transform: translateY(-2px);
}

/* =================================
   SECTIONS - ORGANIC SPACING
   ================================= */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--moss-green), var(--leaf-green));
  border-radius: 2px;
}

/* =================================
   CARDS - ORGANIC DESIGN
   ================================= */

.service-grid,
.review-cards,
.collection-cards,
.tip-cards,
.benefits-grid,
.features-list,
.testimonial-grid,
.category-grid,
.option-cards,
.links-grid,
.content-suggestions,
.team-grid,
.tier-cards,
.event-cards,
.location-grid,
.rights-grid,
.curator-grid,
.advice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.review-card,
.collection-card,
.tip-card,
.benefit,
.feature,
.testimonial-card,
.category-card,
.option-card,
.link-card,
.suggestion-card,
.team-member,
.tier-card,
.event-card,
.location-info,
.right-card,
.curator-card,
.advice-card,
.service-card-detailed {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 300px;
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid var(--sand-beige);
  margin-bottom: 20px;
}

.service-card:hover,
.review-card:hover,
.collection-card:hover,
.tip-card:hover,
.category-card:hover,
.option-card:hover,
.link-card:hover,
.suggestion-card:hover,
.tier-card:hover,
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 142, 35, 0.15);
  border-color: var(--moss-green);
}

.service-card h3,
.review-card h3,
.collection-card h3,
.tip-card h3 {
  color: var(--moss-green);
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 16px 0;
}

/* =================================
   FEATURES & BENEFITS
   ================================= */

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature {
  flex: 1 1 220px;
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--leaf-green);
  margin-bottom: 20px;
}

.feature h3 {
  color: var(--moss-green);
  margin-bottom: 12px;
  font-size: 20px;
}

/* =================================
   TESTIMONIALS - NATURAL CARDS
   ================================= */

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--sand-beige);
  border-left: 4px solid var(--moss-green);
  font-style: italic;
}

.testimonial-card p {
  color: var(--primary-dark);
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: var(--secondary-brown);
  margin-top: 12px;
}

.rating {
  color: var(--accent-gold);
  font-size: 18px;
  letter-spacing: 2px;
}

/* =================================
   BREADCRUMB NAVIGATION
   ================================= */

.breadcrumb {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: underline;
}

/* =================================
   BADGES & LABELS
   ================================= */

.badge,
.badge-popular,
.members-badge,
.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--moss-green);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-popular {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.service-tag {
  position: static;
  display: inline-block;
  margin-top: 12px;
  background: var(--leaf-green);
}

/* =================================
   FORMS & INPUTS
   ================================= */

.features {
  list-style: none;
  margin-left: 0;
  margin-top: 16px;
}

.features li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--moss-green);
  font-weight: 700;
}

/* =================================
   FOOTER - ORGANIC BASE
   ================================= */

footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--forest-dark) 100%);
  color: var(--earth-cream);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-brand,
.footer-nav,
.footer-legal,
.footer-contact {
  flex: 1 1 220px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

footer h4 {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 18px;
}

footer a {
  color: var(--earth-cream);
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  padding-left: 0;
}

footer a:hover {
  color: var(--accent-gold);
  padding-left: 8px;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 220, 196, 0.2);
  color: var(--sand-beige);
  font-size: 14px;
}

/* =================================
   COOKIE CONSENT BANNER
   ================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bark-brown) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--moss-green);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.cookie-accept:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-reject:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.cookie-settings {
  background: var(--moss-green);
  color: var(--white);
}

.cookie-settings:hover {
  background: var(--leaf-green);
}

/* =================================
   COOKIE MODAL
   ================================= */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary-brown);
  color: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--sand-beige);
  border-radius: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

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

.featured-review,
.featured-collection,
.featured-tip,
.featured-collection {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(107, 142, 35, 0.12);
  border: 3px solid var(--leaf-green);
  margin-bottom: 60px;
}

.review-featured h3,
.featured-collection h2,
.tip-featured h2 {
  color: var(--moss-green);
  margin-bottom: 16px;
}

.author,
.meta,
.curator {
  font-size: 14px;
  color: var(--stone-gray);
  margin-bottom: 12px;
  font-style: italic;
}

.read-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--moss-green);
  font-weight: 600;
  text-decoration: underline;
}

/* =================================
   LOCATION & CONTACT INFO
   ================================= */

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.address,
.hours,
.contact {
  flex: 1 1 250px;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--moss-green);
}

/* =================================
   TIMELINES & STEPS
   ================================= */

.steps,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.step,
.timeline-step {
  flex: 1 1 200px;
  text-align: center;
  position: relative;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.1);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--moss-green);
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* =================================
   404 & THANK YOU PAGES
   ================================= */

.error-message,
.confirmation-message,
.confirmation {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--moss-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.page-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* =================================
   LEGAL PAGES
   ================================= */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
}

.content-wrapper h2 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h2::after {
  display: none;
}

.last-updated {
  font-size: 14px;
  color: var(--stone-gray);
  font-style: italic;
}

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

.cta-banner,
.subscription-offer,
.cta-consultation,
.booking-cta,
.help-cta,
.contact-cta {
  background: linear-gradient(135deg, var(--leaf-green) 0%, var(--moss-green) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 0;
}

.cta-banner h2,
.subscription-offer h2,
.cta-consultation h2,
.booking-cta h2,
.help-cta h2,
.contact-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p,
.subscription-offer p,
.cta-consultation p,
.booking-cta p,
.help-cta p,
.contact-cta p {
  color: var(--earth-cream);
  margin-bottom: 24px;
  font-size: 18px;
}

.benefits,
.highlights {
  list-style: none;
  margin: 24px auto;
  max-width: 500px;
  text-align: left;
}

.benefits li,
.highlights li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--white);
}

.benefits li::before,
.highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 20px;
}

/* =================================
   SPECIAL ELEMENTS
   ================================= */

.member-stat,
.pricing,
.trial-info {
  font-size: 16px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 16px;
}

.note {
  font-size: 14px;
  color: var(--stone-gray);
  font-style: italic;
  margin-top: 8px;
}

.specialization,
.credentials,
.role {
  font-size: 14px;
  color: var(--moss-green);
  font-weight: 600;
  margin-bottom: 8px;
}

.book-count,
.duration,
.time,
.date {
  font-size: 14px;
  color: var(--stone-gray);
  font-weight: 600;
  margin-top: 8px;
}

.date {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  font-size: 12px;
  margin-bottom: 12px;
}

.difficulty {
  display: inline-block;
  padding: 4px 12px;
  background: var(--leaf-green);
  color: var(--white);
  border-radius: 12px;
  font-size: 12px;
  margin-top: 8px;
}

/* =================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================= */

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1,
  .page-hero h1 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .service-grid,
  .review-cards,
  .collection-cards,
  .testimonial-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .service-card,
  .review-card,
  .collection-card,
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .featured-review,
  .featured-collection,
  .legal-content {
    padding: 24px;
  }
  
  .steps,
  .timeline {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero,
  .page-hero {
    padding: 60px 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* =================================
   ANIMATIONS & TRANSITIONS
   ================================= */

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

.service-card,
.review-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* =================================
   ACCESSIBILITY
   ================================= */

:focus-visible {
  outline: 3px solid var(--moss-green);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-gold);
}

/* =================================
   PRINT STYLES
   ================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  header,
  footer,
  .cta-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* =================================
   END OF STYLES
   ================================= */