/* ===================================
   MEADOWLARK GLADE - ELEGANT CLASSIC CSS
   Design Style: Timeless Elegant Classic
   =================================== */

/* 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;
  font-size: 16px;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #f8f6f3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2D5F3F;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

a {
  color: #2D5F3F;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8B7355;
}

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

li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

strong {
  font-weight: 700;
  color: #2c2c2c;
}

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

/* Header Styles */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8d5b7;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 500;
  color: #2D5F3F;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #8B7355;
  border-bottom-color: #8B7355;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  background-color: #2D5F3F;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 199;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2D5F3F;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #8B7355;
}

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2D5F3F;
  padding: 12px 0;
  border-bottom: 1px solid #e8d5b7;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #8B7355;
  padding-left: 8px;
}

/* CTA Button */
.cta-button,
.btn-primary {
  display: inline-block;
  background-color: #2D5F3F;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #2D5F3F;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button:hover,
.btn-primary:hover {
  background-color: transparent;
  color: #2D5F3F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.2);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #8B7355;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #8B7355;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #8B7355;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2D5F3F 0%, #1a3a27 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 0l30 30-30 30L0 30z" fill="%23ffffff" opacity="0.03"/%3E%3C/svg%3E');
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  font-size: 24px;
  font-style: italic;
  color: #E8D5B7;
  margin-bottom: 24px;
}

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

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

/* Hero Internal (Subpages) */
.hero-internal {
  background-color: #2D5F3F;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.hero-internal h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

.last-updated {
  font-size: 14px;
  font-style: italic;
  color: #E8D5B7;
}

/* Section Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  font-size: 18px;
  font-style: italic;
  color: #8B7355;
  text-align: center;
  margin-bottom: 40px;
}

/* Value Proposition Section */
.value-proposition {
  background-color: #ffffff;
  text-align: center;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 240px;
  max-width: 300px;
  background-color: #f8f6f3;
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid #e8d5b7;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.1);
  border-color: #8B7355;
}

.feature-card h3 {
  color: #2D5F3F;
  margin-bottom: 16px;
}

.feature-card p {
  color: #4a4a4a;
}

/* Services Preview Section */
.services-preview {
  background-color: #f8f6f3;
  text-align: center;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8d5b7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 95, 63, 0.15);
}

.service-card h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #8B7355;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}

.service-card .duration {
  font-size: 14px;
  font-weight: 600;
  color: #2D5F3F;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-card p {
  color: #4a4a4a;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .highlights {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.service-card .highlights li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #4a4a4a;
  font-size: 14px;
}

.service-card .highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5F3F;
  font-weight: bold;
}

/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 480px;
  background-color: #f8f6f3;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #8B7355;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
}

.testimonial-card p {
  font-style: italic;
  color: #2c2c2c;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-author,
.author {
  font-weight: 700;
  color: #2D5F3F;
  font-style: normal;
  font-size: 14px;
  text-align: right;
}

.testimonial-count {
  font-size: 18px;
  font-weight: 600;
  color: #8B7355;
  margin-top: 32px;
}

/* Trust Indicators Section */
.trust-indicators {
  background-color: #2D5F3F;
  color: #ffffff;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 240px;
  padding: 24px;
  text-align: center;
}

.stat-card h3 {
  font-size: 48px;
  color: #E8D5B7;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 16px;
  color: #ffffff;
}

/* Story Section */
.story {
  background-color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.highlight-quote {
  font-size: 24px;
  font-style: italic;
  color: #8B7355;
  text-align: center;
  padding: 32px;
  border-left: 4px solid #2D5F3F;
  background-color: #f8f6f3;
  margin: 40px 0;
}

/* Mission & Values Section */
.mission-values {
  background-color: #f8f6f3;
}

.mission-values h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 400px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-top: 3px solid #2D5F3F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.value-card h3 {
  color: #2D5F3F;
  margin-bottom: 16px;
}

/* Team Section */
.team {
  background-color: #ffffff;
}

.team h2 {
  text-align: center;
  margin-bottom: 48px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 360px;
  background-color: #f8f6f3;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e8d5b7;
}

.team-member h3 {
  margin-bottom: 8px;
}

.team-member .role {
  font-weight: 600;
  color: #8B7355;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* Achievements Section */
.achievements {
  background-color: #f8f6f3;
}

.achievements h2 {
  text-align: center;
  margin-bottom: 32px;
}

.achievements-list {
  max-width: 700px;
  margin: 0 auto;
}

.achievements-list li {
  padding: 16px 0;
  border-bottom: 1px solid #e8d5b7;
  font-size: 18px;
}

/* Service Grid (Wycieczki Page) */
.service-grid {
  background-color: #ffffff;
}

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

/* Service Features */
.service-features {
  background-color: #f8f6f3;
  text-align: center;
}

.service-features h2 {
  margin-bottom: 32px;
}

.features-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.features-list li {
  padding: 16px 24px;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 4px solid #2D5F3F;
  font-size: 16px;
}

/* Gallery Sections */
.content-description {
  background-color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.content-description h2 {
  text-align: center;
  margin-bottom: 32px;
}

.hashtag {
  text-align: center;
  font-weight: 600;
  color: #8B7355;
  font-size: 18px;
  margin-top: 32px;
}

.gallery-highlights {
  background-color: #f8f6f3;
}

.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.highlight-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8d5b7;
  text-align: center;
}

.highlight-card h3 {
  margin-bottom: 12px;
  color: #2D5F3F;
}

/* User Generated Content */
.user-generated-content {
  background-color: #ffffff;
}

.ugc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.ugc-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 400px;
  background-color: #f8f6f3;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #8B7355;
}

.ugc-card .author {
  font-size: 14px;
  color: #2D5F3F;
  font-weight: 600;
  text-align: right;
}

.hashtag-prompt {
  text-align: center;
  font-style: italic;
  color: #8B7355;
  margin-top: 24px;
}

/* Blog Sections */
.featured-post {
  background-color: #ffffff;
  padding: 48px 20px;
  border-left: 6px solid #2D5F3F;
  margin-bottom: 60px;
  position: relative;
}

.featured-badge {
  display: inline-block;
  background-color: #8B7355;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.post-meta {
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
  margin-top: 16px;
}

.blog-grid {
  background-color: #f8f6f3;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.post-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 480px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8d5b7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.1);
}

.post-card h3 {
  margin-bottom: 12px;
}

.post-card .post-meta {
  margin-top: 16px;
}

/* Newsletter Signup */
.newsletter-signup {
  background-color: #2D5F3F;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.newsletter-signup h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter-signup p {
  color: #E8D5B7;
  margin-bottom: 32px;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.benefits {
  font-size: 14px;
  color: #E8D5B7;
  font-style: italic;
}

/* Contact Sections */
.contact-options {
  background-color: #ffffff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 400px;
  background-color: #f8f6f3;
  padding: 32px;
  border-radius: 8px;
  border-top: 3px solid #2D5F3F;
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-info-detailed {
  background-color: #f8f6f3;
}

.info-block {
  margin-bottom: 32px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #8B7355;
}

.info-block h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
}

/* FAQ Section */
.faq-contact {
  background-color: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  background-color: #f8f6f3;
  border-radius: 8px;
  border-left: 4px solid #2D5F3F;
}

.faq-item h3 {
  margin-bottom: 12px;
  color: #2D5F3F;
}

/* Legal Content */
.legal-content {
  background-color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #2D5F3F;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid #e8d5b7;
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

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

.legal-content li {
  margin-bottom: 12px;
}

/* Rights Details */
.rights-details {
  background-color: #f8f6f3;
}

.rights-details h2 {
  text-align: center;
  margin-bottom: 32px;
}

.rights-details ul {
  max-width: 700px;
  margin: 0 auto;
}

.rights-details li {
  padding: 12px 0;
  border-bottom: 1px solid #e8d5b7;
}

/* Cookie Settings */
.cookie-settings {
  background-color: #ffffff;
}

.settings-list {
  max-width: 600px;
  margin: 0 auto;
}

.settings-list p {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #f8f6f3;
  border-radius: 4px;
  border-left: 4px solid #2D5F3F;
}

/* CTA Section */
.cta-section,
.booking-cta {
  background-color: #8B7355;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2,
.booking-cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p,
.booking-cta p {
  color: #f8f6f3;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary,
.booking-cta .btn-primary {
  background-color: #ffffff;
  color: #8B7355;
  border-color: #ffffff;
}

.cta-section .btn-primary:hover,
.booking-cta .btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* Confirmation & Thank You Pages */
.confirmation-message {
  background-color: #ffffff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.confirmation-message h2 {
  margin-bottom: 24px;
}

.confirmation-message h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.next-steps {
  background-color: #f8f6f3;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  max-width: 320px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-top: 3px solid #2D5F3F;
  text-align: center;
}

.action-card h3 {
  margin-bottom: 16px;
}

.action-card a {
  display: inline-block;
  margin-top: 16px;
  color: #2D5F3F;
  font-weight: 600;
  border-bottom: 2px solid #2D5F3F;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.action-card a:hover {
  color: #8B7355;
  border-bottom-color: #8B7355;
}

.featured-trips {
  background-color: #ffffff;
}

.featured-trips h2 {
  text-align: center;
  margin-bottom: 32px;
}

.featured-trips ul {
  max-width: 600px;
  margin: 0 auto 32px;
}

.featured-trips li {
  padding: 12px 0;
  border-bottom: 1px solid #e8d5b7;
  font-size: 16px;
}

.featured-trips a {
  display: block;
  text-align: center;
  margin-top: 32px;
}

.social-proof {
  background-color: #f8f6f3;
  text-align: center;
}

.social-proof .testimonial {
  font-size: 20px;
  font-style: italic;
  color: #2c2c2c;
  max-width: 700px;
  margin: 0 auto 24px;
}

.social-proof .rating {
  font-size: 18px;
  font-weight: 600;
  color: #8B7355;
}

.contact-info {
  background-color: #ffffff;
  text-align: center;
}

/* Footer */
footer {
  background-color: #2D5F3F;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

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

.footer-column h4 {
  color: #E8D5B7;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 14px;
  color: #f8f6f3;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-column a {
  display: block;
  color: #f8f6f3;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #E8D5B7;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 213, 183, 0.3);
}

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

/* Cookie Consent Banner */
#cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2D5F3F;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-top: 2px solid #8B7355;
}

#cookie-consent.show {
  display: block;
}

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-text p {
  color: #f8f6f3;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Georgia', serif;
}

.cookie-accept {
  background-color: #E8D5B7;
  color: #2D5F3F;
}

.cookie-accept:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings-btn {
  background-color: transparent;
  color: #E8D5B7;
  border: 2px solid #E8D5B7;
}

.cookie-settings-btn:hover {
  background-color: rgba(232, 213, 183, 0.1);
}

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #2D5F3F;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8f6f3;
  border-radius: 4px;
  border-left: 4px solid #2D5F3F;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Hero Buttons */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Grid Layouts */
  .features-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .values-grid,
  .team-grid,
  .contact-grid,
  .highlights-grid,
  .ugc-grid,
  .posts-grid,
  .actions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .value-card,
  .team-member,
  .contact-card,
  .highlight-card,
  .ugc-card,
  .post-card,
  .action-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
    text-align: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
  }
  
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .btn-primary,
  .btn-secondary,
  .cta-button {
    padding: 12px 24px;
    font-size: 12px;
  }
  
  .service-card .price {
    font-size: 24px;
  }
  
  .stat-card h3 {
    font-size: 36px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero {
    background: #2D5F3F;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}