/* ============================================
   KÜCHENZAUBER - MODERN BOLD DESIGN SYSTEM
   Mobile-First Responsive CSS
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD & MODERN */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #C33D13;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

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

li {
  margin-bottom: 8px;
}

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

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

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

/* HEADER - BOLD & PROMINENT */
header {
  background: linear-gradient(135deg, #D84315 0%, #C33D13 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.logo img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.logo span {
  font-family: 'Merriweather', serif;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.main-nav {
  display: none;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.header-cta {
  display: none;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  color: #D84315;
  border: 3px solid #D84315;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #D84315 0%, #C33D13 100%);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 8px;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #D84315;
  transform: rotate(90deg) scale(1.1);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 8px;
}

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background-color: #ffffff;
  color: #D84315;
  border-color: #ffffff;
  transform: translateX(8px);
}

/* BUTTONS - BOLD & ENERGETIC */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #D84315 0%, #C33D13 100%);
  color: #ffffff;
  border-color: #D84315;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C33D13 0%, #8B2E0D 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.4);
}

.btn-secondary {
  background-color: #ffffff;
  color: #D84315;
  border-color: #D84315;
}

.btn-secondary:hover {
  background-color: #D84315;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.3);
}

/* HERO SECTION - BOLD & IMPACTFUL */
.hero,
.page-hero,
.error-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-bottom: 6px solid #D84315;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(216, 67, 21, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content,
.error-content,
.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1,
.page-hero h1,
.error-hero h1,
.thank-you-hero h1 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subheadline {
  font-size: 20px;
  color: #333333;
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.trust-badge {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #558B2F;
  background-color: rgba(85, 139, 47, 0.1);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #558B2F;
  display: inline-block;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
  font-weight: 600;
}

.breadcrumb a {
  color: #D84315;
  font-weight: 700;
}

/* VALUE PROPOSITION - BOLD CARDS */
.value-grid,
.services-grid,
.cuisines-grid,
.categories-grid,
.recipes-grid,
.tips-grid,
.workshops-grid,
.links-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-card,
.service-card,
.cuisine-card,
.category-card,
.recipe-card,
.tip-card,
.workshop-card,
.link-card,
.contact-method {
  flex: 1 1 100%;
  background: linear-gradient(135deg, #ffffff 0%, #FFF3E0 100%);
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #D84315;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #D84315 0%, #558B2F 100%);
  border-radius: 12px 12px 0 0;
}

.value-card:hover,
.service-card:hover,
.cuisine-card:hover,
.category-card:hover,
.recipe-card:hover,
.tip-card:hover,
.workshop-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(216, 67, 21, 0.25);
  border-color: #558B2F;
}

.value-card h3,
.service-card h3,
.cuisine-card h3,
.category-card h3,
.recipe-card h3,
.tip-card h3,
.workshop-card h3 {
  color: #D84315;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 900;
}

.value-card p,
.service-card p,
.cuisine-card p,
.category-card p,
.recipe-card p,
.tip-card p,
.workshop-card p {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.price {
  font-size: 28px;
  font-weight: 900;
  color: #D84315;
  margin-top: 20px;
  display: block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* SECTION INTROS */
.section-intro {
  text-align: center;
  font-size: 18px;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
  font-weight: 500;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 16px;
  border: 4px solid #D84315;
}

.testimonials h2 {
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 40px;
}

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

.testimonial-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #558B2F;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  font-weight: 900;
  color: #D84315;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 500;
}

.author {
  font-weight: 700;
  color: #D84315;
  font-size: 16px;
  margin-top: 16px;
}

.rating {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #558B2F;
  margin-top: 24px;
}

/* CTA SECTIONS - BOLD CALLS TO ACTION */
.cta-banner,
.cta-membership,
.cta-workshops,
.cta-consultation,
.cta-booking,
.cta-join,
.cta-connect {
  background: linear-gradient(135deg, #D84315 0%, #C33D13 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.cta-membership h2,
.cta-workshops h2,
.cta-consultation h2,
.cta-booking h2,
.cta-join h2,
.cta-connect h2 {
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-banner p,
.cta-membership p,
.cta-workshops p,
.cta-consultation p,
.cta-booking p,
.cta-join p,
.cta-connect p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 32px auto;
  max-width: 600px;
}

.benefits li {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  text-align: left;
  padding-left: 32px;
  position: relative;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: 24px;
  font-weight: 900;
  color: #558B2F;
}

/* STEPS & MILESTONES */
.steps-grid,
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.step,
.milestones p {
  flex: 1 1 100%;
  background-color: #FFF3E0;
  padding: 24px;
  border-radius: 12px;
  border: 3px solid #D84315;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.step h3 {
  color: #D84315;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 900;
}

.step::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: #558B2F;
  border-radius: 50%;
  border: 4px solid #ffffff;
}

/* CONTACT INFO */
.contact-info,
.location-details,
.support-section {
  background-color: #FFF3E0;
  padding: 40px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
  border: 3px solid #D84315;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  font-weight: 500;
}

/* EXPLORER GRID */
.explorer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.cuisine-item {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 3px solid #D84315;
  font-weight: 600;
  color: #333333;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.cuisine-item:hover {
  background-color: #D84315;
  color: #ffffff;
  transform: translateX(8px);
}

/* ERROR PAGE */
.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #D84315;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

/* SUCCESS ICON */
.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #558B2F 0%, #689F38 100%);
  color: #ffffff;
  font-size: 60px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(85, 139, 47, 0.3);
  border: 6px solid #ffffff;
}

/* SUGGESTIONS */
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.suggestion-card {
  flex: 1 1 100%;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 24px;
  border-radius: 12px;
  border: 3px solid #D84315;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  background: linear-gradient(135deg, #D84315 0%, #C33D13 100%);
  color: #ffffff;
  transform: scale(1.05);
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #D84315;
  margin-bottom: 32px;
  border-bottom: 4px solid #D84315;
  padding-bottom: 16px;
}

.legal-page h2 {
  color: #558B2F;
  margin-top: 32px;
  margin-bottom: 16px;
}

/* FOOTER - BOLD & STRUCTURED */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 6px solid #D84315;
}

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

.footer-section {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section h3 {
  color: #D84315;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-section a:hover {
  color: #D84315;
  transform: translateX(4px);
}

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

.footer-bottom {
  border-top: 2px solid #444444;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #999999;
  font-weight: 600;
}

/* COOKIE CONSENT BANNER - BOLD DESIGN */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  border-top: 4px solid #D84315;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cookie-content p {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  margin: 0;
  font-weight: 600;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 3px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #558B2F 0%, #689F38 100%);
  color: #ffffff;
  border-color: #558B2F;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #689F38 0%, #7CB342 100%);
  transform: scale(1.05);
}

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

.cookie-reject:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

.cookie-settings {
  background-color: transparent;
  color: #D84315;
  border-color: #D84315;
}

.cookie-settings:hover {
  background-color: #D84315;
  color: #ffffff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #FFF3E0 100%);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 4px solid #D84315;
}

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

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

.cookie-category h3 {
  color: #558B2F;
  margin-bottom: 12px;
  font-size: 18px;
}

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

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background-color: #cccccc;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch.active {
  background-color: #558B2F;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.toggle-switch.active::before {
  left: 33px;
}

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

/* TABLET STYLES */
@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  
  .mobile-menu-toggle { display: none; }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  .header-cta { display: block; }
  
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .value-card,
  .service-card,
  .cuisine-card,
  .category-card,
  .recipe-card,
  .tip-card,
  .workshop-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-section {
    flex: 1 1 calc(25% - 24px);
  }
  
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cuisine-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .suggestion-card {
    flex: 1 1 calc(33.333% - 20px);
  }
}

/* DESKTOP STYLES */
@media (min-width: 1024px) {
  h1 { font-size: 64px; }
  h2 { font-size: 48px; }
  
  .value-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .cuisine-card,
  .category-card,
  .recipe-card,
  .tip-card,
  .workshop-card {
    flex: 1 1 calc(25% - 24px);
  }
  
  .step {
    flex: 1 1 calc(25% - 24px);
  }
  
  .cuisine-item {
    flex: 1 1 calc(33.333% - 16px);
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #D84315;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
}