/* ============================================
   LUNAR NODE - INDUSTRIAL MODERN DESIGN
   CSS Reset & Base Styles
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #ECEFF1;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* ============================================
   INDUSTRIAL MODERN COLOR PALETTE
   ============================================ */
:root {
  --primary-dark: #1A1A1A;
  --secondary-dark: #2C2C2C;
  --accent-metal: #B0B0B0;
  --accent-copper: #CD7F32;
  --accent-steel: #4A5568;
  --text-light: #ECEFF1;
  --text-muted: #B0BEC5;
  --border-color: #3A3A3A;
  --shadow-dark: rgba(0, 0, 0, 0.5);
}

/* ============================================
   TYPOGRAPHY - INDUSTRIAL FONTS
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ECEFF1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #CD7F32 0%, #B0B0B0 100%);
}

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

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

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

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

a:hover {
  color: #B0B0B0;
}

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

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

strong {
  color: #ECEFF1;
  font-weight: 600;
}

/* ============================================
   LAYOUT - FLEXBOX CONTAINERS
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

/* Flexbox Grid Patterns */
.benefits-grid,
.services-grid,
.testimonials-grid,
.values-grid,
.workshop-grid,
.blog-grid,
.contact-grid,
.stats-grid,
.resources-grid,
.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 30px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background-color: #2C2C2C;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #3A3A3A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

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

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

.main-nav a {
  color: #ECEFF1;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #CD7F32;
  border-bottom: 1px solid #CD7F32;
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2C2C2C;
  color: #ECEFF1;
  border: 2px solid #CD7F32;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #CD7F32;
  color: #1A1A1A;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #2C2C2C;
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.6);
  border-left: 2px solid #CD7F32;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #CD7F32;
  color: #ECEFF1;
  font-size: 28px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #CD7F32;
  color: #1A1A1A;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ECEFF1;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: #CD7F32;
  background-color: #3A3A3A;
  padding-left: 24px;
}

/* ============================================
   BUTTONS - INDUSTRIAL STYLE
   ============================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #CD7F32;
  color: #1A1A1A;
  border-color: #CD7F32;
}

.btn-primary:hover {
  background-color: transparent;
  color: #CD7F32;
  box-shadow: 0 0 20px rgba(205, 127, 50, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #B0B0B0;
  border-color: #B0B0B0;
}

.btn-secondary:hover {
  background-color: #B0B0B0;
  color: #1A1A1A;
  box-shadow: 0 0 20px rgba(176, 176, 176, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  border-bottom: 3px solid #CD7F32;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(176, 176, 176, 0.03) 10px, rgba(176, 176, 176, 0.03) 20px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.subheadline {
  font-size: 20px;
  color: #B0BEC5;
  margin-bottom: 32px;
  max-width: 700px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #B0BEC5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #CD7F32;
}

.trust-badge {
  color: #B0B0B0;
  font-size: 14px;
  font-style: italic;
  margin-top: 20px;
}

/* ============================================
   CARDS - INDUSTRIAL DESIGN
   ============================================ */
.service-card,
.benefit,
.testimonial-card,
.workshop-card,
.blog-card,
.project-card,
.value,
.contact-card,
.stat,
.resource-card,
.explore-card {
  background-color: #2C2C2C;
  border: 1px solid #3A3A3A;
  padding: 24px;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-card::before,
.workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #CD7F32 0%, #B0B0B0 100%);
}

.service-card:hover,
.workshop-card:hover,
.blog-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(205, 127, 50, 0.3);
  border-color: #CD7F32;
}

.service-card img,
.benefit img,
.value img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0.8) contrast(1.2);
}

.service-card h3,
.workshop-card h3,
.blog-card h3 {
  margin-bottom: 12px;
  color: #ECEFF1;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #CD7F32;
  margin-top: 16px;
  margin-bottom: 8px;
}

.duration,
.level,
.category {
  font-size: 14px;
  color: #B0B0B0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.meta {
  font-size: 13px;
  color: #B0B0B0;
  margin-top: 12px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonial-card {
  background-color: #3A3A3A;
  border-left: 4px solid #CD7F32;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  color: #ECEFF1;
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  color: #CD7F32;
  font-weight: 600;
  font-style: normal;
  margin-top: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #2C2C2C;
  padding: 24px;
  border: 1px solid #3A3A3A;
  border-radius: 2px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background-color: #CD7F32;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #2C2C2C;
}

.step h3 {
  color: #CD7F32;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #B0BEC5;
  font-size: 14px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.faq-item {
  background-color: #2C2C2C;
  border-left: 3px solid #CD7F32;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 2px;
}

.faq-item h3 {
  color: #ECEFF1;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #B0BEC5;
  line-height: 1.8;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  background-color: #2C2C2C;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 3px solid #CD7F32;
  border-bottom: 3px solid #CD7F32;
}

.stats-grid {
  justify-content: center;
}

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 150px;
  padding: 20px;
}

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

.stat p {
  color: #B0BEC5;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border: 2px solid #CD7F32;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(205, 127, 50, 0.05) 10px, rgba(205, 127, 50, 0.05) 20px);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #B0BEC5;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: #1A1A1A;
  padding: 60px 20px 30px;
  border-top: 3px solid #CD7F32;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

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

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #B0BEC5;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 2px solid transparent;
  padding-left: 8px;
}

.footer-nav a:hover {
  color: #CD7F32;
  border-left-color: #CD7F32;
  padding-left: 16px;
}

.copyright {
  text-align: center;
  color: #B0B0B0;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid #3A3A3A;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C2C2C;
  border-top: 2px solid #CD7F32;
  padding: 20px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  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;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner p {
  color: #B0BEC5;
  font-size: 14px;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  border-radius: 2px;
}

.cookie-accept {
  background-color: #CD7F32;
  color: #1A1A1A;
  border-color: #CD7F32;
}

.cookie-accept:hover {
  background-color: transparent;
  color: #CD7F32;
}

.cookie-reject,
.cookie-settings {
  color: #B0B0B0;
  border-color: #B0B0B0;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background-color: #B0B0B0;
  color: #1A1A1A;
}

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

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

.cookie-modal-content {
  background-color: #2C2C2C;
  padding: 40px;
  border: 2px solid #CD7F32;
  border-radius: 2px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #CD7F32;
  color: #ECEFF1;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #CD7F32;
  color: #1A1A1A;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #3A3A3A;
  border-left: 3px solid #CD7F32;
}

.cookie-category h4 {
  color: #ECEFF1;
  margin-bottom: 8px;
}

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

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

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

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

/* ============================================
   THANK YOU PAGE SPECIAL STYLES
   ============================================ */
.hero.thank-you {
  text-align: center;
  padding: 100px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #27AE60;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 0 30px rgba(39, 174, 96, 0.4);
}

/* ============================================
   LEGAL CONTENT PAGES
   ============================================ */
.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: #CD7F32;
}

.legal-content ul,
.legal-content ol {
  margin-left: 32px;
  margin-bottom: 20px;
}

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

.last-updated {
  font-size: 14px;
  color: #B0B0B0;
  font-style: italic;
  margin-top: 8px;
}

/* ============================================
   TOPIC TAGS
   ============================================ */
.topics-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.topic-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: #2C2C2C;
  border: 1px solid #CD7F32;
  color: #CD7F32;
  font-size: 14px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.topic-tag:hover {
  background-color: #CD7F32;
  color: #1A1A1A;
}

/* ============================================
   FORM NOTICE
   ============================================ */
.form-notice {
  background-color: #2C2C2C;
  border: 1px solid #3A3A3A;
  border-left: 4px solid #CD7F32;
  padding: 24px;
  margin: 32px 0;
  border-radius: 2px;
}

.form-notice p {
  color: #B0BEC5;
  margin-bottom: 16px;
}

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

/* Tablets and below */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .container {
    justify-content: center;
  }
  
  /* Grid layouts */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .workshop-grid,
  .blog-grid,
  .values-grid,
  .contact-grid,
  .resources-grid,
  .explore-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit,
  .testimonial-card,
  .workshop-card,
  .blog-card,
  .project-card,
  .value,
  .contact-card,
  .resource-card,
  .explore-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .process-steps,
  .steps-grid {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Spacing adjustments */
  .section {
    padding: 30px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .stat h3 {
    font-size: 36px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

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

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

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

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.workshop-card,
.blog-card,
.project-card {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling for all links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #CD7F32;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
}