/* ===================================
   BLISSFUL COVE - VINTAGE RETRO CSS
   Design Style: Vintage & Retro-Inspired
   =================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #3a3a3a;
  background-color: #f9f6f0;
  overflow-x: hidden;
}

/* Vintage Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Palatino', 'Book Antiqua', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F4F;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

a {
  color: #8B6F47;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2C5F4F;
  text-decoration: underline;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container & Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Vintage Decorative Elements */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #8B6F47,
    #8B6F47 10px,
    transparent 10px,
    transparent 20px
  );
}

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

header {
  background-color: #E8DCC4;
  border-bottom: 3px solid #8B6F47;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

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

.logo {
  height: 60px;
  width: auto;
  filter: sepia(30%);
}

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

.main-nav a {
  font-family: 'Palatino', serif;
  font-size: 16px;
  font-weight: 600;
  color: #2C5F4F;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #8B6F47;
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #8B6F47;
  background-color: rgba(139, 111, 71, 0.1);
  text-decoration: none;
}

.header-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #8B6F47;
  color: #E8DCC4;
  border: 2px solid #2C5F4F;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2C5F4F;
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #E8DCC4;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139,111,71,0.05) 10px, rgba(139,111,71,0.05) 20px);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 16px rgba(0,0,0,0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  border-left: 4px solid #8B6F47;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #8B6F47;
  color: #E8DCC4;
  border: 2px solid #2C5F4F;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: #2C5F4F;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Palatino', serif;
  font-size: 18px;
  font-weight: 600;
  color: #2C5F4F;
  padding: 14px 20px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-nav a:hover {
  background-color: #8B6F47;
  color: #E8DCC4;
  border-color: #2C5F4F;
  transform: translateX(-5px);
  text-decoration: none;
}

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

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Palatino', serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: 3px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #8B6F47;
  color: #E8DCC4;
  border-color: #2C5F4F;
}

.btn-primary:hover {
  background-color: #2C5F4F;
  color: #E8DCC4;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
  text-decoration: none;
}

.btn-secondary {
  background-color: #E8DCC4;
  color: #2C5F4F;
  border-color: #8B6F47;
}

.btn-secondary:hover {
  background-color: #8B6F47;
  color: #E8DCC4;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
  text-decoration: none;
}

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

.hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #8B6F47 100%);
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(232,220,196,0.1) 50px, rgba(232,220,196,0.1) 100px),
    linear-gradient(135deg, #2C5F4F 0%, #8B6F47 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  border-bottom: 6px solid #8B6F47;
  box-shadow: inset 0 -10px 20px rgba(0,0,0,0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    #E8DCC4,
    #E8DCC4 20px,
    #8B6F47 20px,
    #8B6F47 40px
  );
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #E8DCC4;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

.tagline {
  font-family: 'Palatino', serif;
  font-size: 24px;
  color: #E8DCC4;
  font-style: italic;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-description {
  font-size: 18px;
  color: #E8DCC4;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

/* ===================================
   PAGE HERO (Subpages)
   =================================== */

.page-hero {
  background-color: #8B6F47;
  background-image: radial-gradient(circle, rgba(232,220,196,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #2C5F4F;
}

.page-hero h1 {
  color: #E8DCC4;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle,
.section-subtitle {
  font-family: 'Palatino', serif;
  font-size: 20px;
  color: #E8DCC4;
  font-style: italic;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E8DCC4;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 16px;
}

/* ===================================
   CARDS & GRIDS
   =================================== */

.values-grid,
.services-grid,
.testimonials-grid,
.benefits-grid,
.mood-grid,
.events-grid,
.contact-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card,
.service-card,
.testimonial-card,
.benefit-card,
.mood-card,
.event-card,
.contact-card,
.book-card,
.resource-card {
  flex: 1 1 300px;
  background-color: #fff;
  background-image: linear-gradient(135deg, #fff 0%, #f9f6f0 100%);
  padding: 32px 24px;
  border-radius: 12px;
  border: 3px solid #8B6F47;
  box-shadow: 6px 6px 0px rgba(139,111,71,0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    #8B6F47,
    #8B6F47 10px,
    #2C5F4F 10px,
    #2C5F4F 20px
  );
  border-radius: 12px 12px 0 0;
}

.value-card:hover,
.service-card:hover,
.benefit-card:hover,
.mood-card:hover,
.event-card:hover,
.contact-card:hover,
.book-card:hover,
.resource-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px rgba(139,111,71,0.4);
}

.value-card img,
.service-card img,
.benefit-card img,
.mood-card img,
.contact-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: sepia(40%) hue-rotate(150deg);
}

.value-card h3,
.service-card h3,
.benefit-card h3,
.mood-card h3,
.event-card h3,
.contact-card h3,
.book-card h3,
.resource-card h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
  font-size: 22px;
}

.value-card p,
.service-card p,
.benefit-card p,
.mood-card p,
.event-card p,
.resource-card p {
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.6;
}

/* Testimonial Cards - Dark text on light background */
.testimonial-card {
  background: linear-gradient(135deg, #E8DCC4 0%, #f9f6f0 100%);
  border: 3px solid #8B6F47;
  padding: 32px;
  font-style: italic;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  color: #2C5F4F;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-author {
  font-family: 'Palatino', serif;
  font-weight: 700;
  color: #8B6F47;
  font-style: normal;
  margin-top: 16px;
  text-align: right;
}

.testimonial-author::before {
  content: '— ';
}

/* Price Display */
.price,
.price-highlight,
.price-large {
  font-family: 'Palatino', serif;
  font-weight: 700;
  color: #8B6F47;
  font-size: 20px;
  margin-top: 12px;
  display: block;
}

.price-large {
  font-size: 42px;
  color: #2C5F4F;
  text-align: center;
  margin: 24px 0;
}

/* Tags */
.tag,
.event-tag {
  display: inline-block;
  background-color: #8B6F47;
  color: #E8DCC4;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

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

.featured-services,
.leseclub-highlight,
.testimonials,
.contact-cta,
.value-proposition {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.featured-services {
  background-color: #f9f6f0;
}

.leseclub-highlight {
  background: linear-gradient(135deg, #2C5F4F 0%, #8B6F47 100%);
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(232,220,196,0.05) 20px, rgba(232,220,196,0.05) 40px),
    linear-gradient(135deg, #2C5F4F 0%, #8B6F47 100%);
  text-align: center;
  padding: 80px 20px;
  border-top: 6px solid #8B6F47;
  border-bottom: 6px solid #8B6F47;
}

.leseclub-highlight h2,
.leseclub-highlight p {
  color: #E8DCC4;
}

.leseclub-highlight h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */

.service-detail {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  border: 3px solid #8B6F47;
  box-shadow: 6px 6px 0px rgba(139,111,71,0.2);
}

.service-detail:nth-child(even) {
  flex-direction: row-reverse;
}

.service-detail img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  filter: sepia(30%);
}

.service-content {
  flex: 1;
  min-width: 280px;
}

.service-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

/* ===================================
   FILTER NAVIGATION
   =================================== */

.filter-navigation {
  padding: 32px 20px;
  background-color: #E8DCC4;
  border-bottom: 3px solid #8B6F47;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  background-color: #fff;
  color: #2C5F4F;
  border: 2px solid #8B6F47;
  border-radius: 25px;
  font-family: 'Palatino', serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #8B6F47;
  color: #E8DCC4;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===================================
   FEATURED BOOK
   =================================== */

.featured-book {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8DCC4 0%, #f9f6f0 100%);
}

.featured-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background-color: #fff;
  border-radius: 16px;
  border: 4px solid #8B6F47;
  box-shadow: 8px 8px 0px rgba(139,111,71,0.3);
}

.book-content h3 {
  font-size: 32px;
  color: #2C5F4F;
  margin-bottom: 8px;
}

.author {
  font-family: 'Palatino', serif;
  font-style: italic;
  color: #8B6F47;
  font-size: 18px;
  margin-bottom: 20px;
}

.book-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.expert-note {
  background-color: #E8DCC4;
  padding: 20px;
  border-left: 4px solid #8B6F47;
  border-radius: 4px;
  font-style: italic;
}

.expert-note strong {
  color: #2C5F4F;
}

/* ===================================
   BOOKS GRID
   =================================== */

.books-grid {
  padding: 60px 20px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.book-card {
  flex: 1 1 280px;
  background: linear-gradient(135deg, #fff 0%, #E8DCC4 100%);
  padding: 28px;
  border-radius: 12px;
  border: 3px solid #8B6F47;
  box-shadow: 5px 5px 0px rgba(139,111,71,0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.book-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #8B6F47,
    #8B6F47 10px,
    #2C5F4F 10px,
    #2C5F4F 20px
  );
  border-radius: 0 0 8px 8px;
}

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

.pricing {
  padding: 60px 20px;
  background-color: #f9f6f0;
  text-align: center;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 48px 36px;
  background-color: #fff;
  border-radius: 16px;
  border: 4px solid #8B6F47;
  box-shadow: 8px 8px 0px rgba(139,111,71,0.3);
}

.pricing-card h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.features-list {
  text-align: left;
  margin: 32px 0;
  padding: 0 20px;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 2px dotted #8B6F47;
  color: #3a3a3a;
  font-size: 16px;
}

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

.features-list li::before {
  content: '✓ ';
  color: #2C5F4F;
  font-weight: 700;
  margin-right: 8px;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-form-section {
  padding: 60px 20px;
  background-color: #f9f6f0;
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  border: 3px solid #8B6F47;
  box-shadow: 6px 6px 0px rgba(139,111,71,0.2);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-family: 'Palatino', serif;
  font-weight: 700;
  color: #2C5F4F;
  margin-bottom: 8px;
  font-size: 16px;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  font-family: Georgia, serif;
  font-size: 16px;
  color: #3a3a3a;
  background-color: #f9f6f0;
  border: 2px solid #8B6F47;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #2C5F4F;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(44,95,79,0.1);
}

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

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-field.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  flex: 1;
}

/* ===================================
   VENUE & LOCATION
   =================================== */

.venue-info,
.location-details {
  padding: 60px 20px;
  background-color: #E8DCC4;
}

.location-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.location-info {
  flex: 1;
  min-width: 280px;
}

.location-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.location-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #2C5F4F 0%, #8B6F47 100%);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #E8DCC4;
  color: #2C5F4F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  border: 4px solid #8B6F47;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.thank-you-hero h1 {
  color: #E8DCC4;
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  color: #E8DCC4;
  font-size: 22px;
}

.confirmation-details,
.confirmation-message,
.additional-resources,
.next-steps {
  padding: 60px 20px;
}

.steps-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 12px;
  border: 3px solid #8B6F47;
  box-shadow: 4px 4px 0px rgba(139,111,71,0.2);
}

.step h3 {
  font-size: 24px;
  color: #2C5F4F;
  margin-bottom: 16px;
}

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

.link-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px 24px;
  background: linear-gradient(135deg, #E8DCC4 0%, #f9f6f0 100%);
  border-radius: 12px;
  border: 3px solid #8B6F47;
  box-shadow: 4px 4px 0px rgba(139,111,71,0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.link-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px rgba(139,111,71,0.3);
  text-decoration: none;
}

.link-card h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.link-card p {
  color: #3a3a3a;
}

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

.legal-page {
  padding: 60px 20px;
  background-color: #f9f6f0;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #2C5F4F;
}

.last-updated {
  color: #8B6F47;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 48px;
  background-color: #fff;
  border-radius: 12px;
  border: 3px solid #8B6F47;
  box-shadow: 6px 6px 0px rgba(139,111,71,0.2);
}

.legal-content h2 {
  font-size: 28px;
  color: #2C5F4F;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E8DCC4;
}

.legal-content h3 {
  font-size: 22px;
  color: #8B6F47;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
}

.legal-content strong {
  color: #2C5F4F;
}

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

footer {
  background-color: #2C5F4F;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(139,111,71,0.1) 20px,
    rgba(139,111,71,0.1) 40px
  );
  color: #E8DCC4;
  padding: 60px 20px 20px;
  border-top: 6px solid #8B6F47;
}

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

.footer-section {
  flex: 1 1 200px;
}

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

.footer-section h4 {
  color: #E8DCC4;
  font-size: 20px;
  margin-bottom: 16px;
  font-family: 'Palatino', serif;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #E8DCC4;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-section a:hover {
  color: #8B6F47;
  padding-left: 5px;
  text-decoration: none;
}

.footer-section p {
  color: #E8DCC4;
  font-size: 14px;
  line-height: 1.8;
}

.footer-section .tagline {
  font-style: italic;
  color: #8B6F47;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #8B6F47;
}

.footer-bottom p {
  color: #E8DCC4;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F4F;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    rgba(139,111,71,0.1) 10px,
    rgba(139,111,71,0.1) 20px
  );
  color: #E8DCC4;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  z-index: 998;
  border-top: 4px solid #8B6F47;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Palatino', serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn.accept {
  background-color: #8B6F47;
  color: #E8DCC4;
  border-color: #E8DCC4;
}

.cookie-btn.accept:hover {
  background-color: #E8DCC4;
  color: #2C5F4F;
}

.cookie-btn.reject,
.cookie-btn.settings {
  background-color: transparent;
  color: #E8DCC4;
  border-color: #8B6F47;
}

.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
  background-color: #8B6F47;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #E8DCC4;
  padding: 40px;
  border-radius: 16px;
  border: 4px solid #8B6F47;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #2C5F4F;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #8B6F47;
}

.cookie-category h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #3a3a3a;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-toggle label {
  font-size: 14px;
  color: #2C5F4F;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  /* Mobile Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  header {
    padding: 16px 0;
  }
  
  header .container {
    justify-content: center;
  }
  
  .logo {
    height: 50px;
  }
  
  /* Mobile sections */
  .hero {
    padding: 60px 20px;
  }
  
  .page-hero {
    padding: 50px 20px;
  }
  
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* Mobile grids - stack vertically */
  .values-grid,
  .services-grid,
  .testimonials-grid,
  .benefits-grid,
  .mood-grid,
  .events-grid,
  .contact-grid,
  .grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .testimonial-card,
  .benefit-card,
  .mood-card,
  .event-card,
  .contact-card,
  .book-card,
  .resource-card {
    flex: 1 1 100%;
  }
  
  /* Mobile service details */
  .service-detail {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .service-detail:nth-child(even) {
    flex-direction: column;
  }
  
  .service-detail img {
    margin: 0 auto;
  }
  
  /* Mobile buttons */
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Mobile forms */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Mobile cookie banner */
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Mobile footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  /* Mobile legal content */
  .legal-content {
    padding: 24px;
  }
  
  /* Mobile location content */
  .location-content {
    flex-direction: column;
  }
  
  /* Mobile featured card */
  .featured-card {
    padding: 24px;
  }
  
  /* Mobile pricing card */
  .pricing-card {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .mobile-menu {
    width: 90%;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content,
.page-hero {
  animation: fadeInUp 0.8s ease;
}

.value-card,
.service-card,
.book-card {
  animation: slideInRight 0.6s ease;
}

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

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

/* Highlight text */
.highlight {
  background-color: #E8DCC4;
  padding: 4px 12px;
  border-radius: 4px;
  color: #2C5F4F;
  font-weight: 700;
}

/* Note styling */
.note {
  font-size: 14px;
  font-style: italic;
  color: #8B6F47;
}

/* Event date styling */
.event-date {
  font-family: 'Palatino', serif;
  font-weight: 700;
  color: #8B6F47;
  font-size: 16px;
  margin-bottom: 12px;
}

.event-price {
  font-weight: 700;
  color: #2C5F4F;
  margin-top: 12px;
}

/* Contact info styling */
.contact-info {
  background-color: #E8DCC4;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #8B6F47;
  margin: 32px 0;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-info strong {
  color: #2C5F4F;
}

/* ===================================
   VINTAGE DECORATIVE ELEMENTS
   =================================== */

/* Add vintage corner decorations to main sections */
.featured-services::before,
.testimonials::before {
  content: '❦';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: #8B6F47;
  opacity: 0.5;
}

/* Print-style emphasis */
strong {
  color: #2C5F4F;
  font-weight: 700;
}

em {
  color: #8B6F47;
  font-style: italic;
}

/* Vintage link styling */
a[href^="mailto:"],
a[href^="tel:"] {
  color: #8B6F47;
  text-decoration: underline;
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
  color: #2C5F4F;
}

/* ===================================
   END OF VINTAGE RETRO CSS
   =================================== */