/* ===================================
   VIBRANT ENERGETIC DESIGN SYSTEM
   Sunlit Passage - Fresh, Dynamic, Bold
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  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', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fff8e7 0%, #ffffff 100%);
  overflow-x: hidden;
}

/* VIBRANT TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 56px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

h2 {
  font-size: 42px;
  color: #2c3e50;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #E67E22 0%, #27AE60 100%);
  border-radius: 3px;
}

h3 {
  font-size: 28px;
  color: #E67E22;
}

h4 {
  font-size: 22px;
  color: #27AE60;
}

p {
  margin-bottom: 20px;
  font-size: 18px;
}

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

a:hover {
  color: #D35400;
  transform: translateY(-2px);
}

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

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

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

header {
  background: linear-gradient(135deg, #ffffff 0%, #F8F3E8 100%);
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.15);
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #E67E22;
}

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

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

.logo:hover {
  transform: scale(1.1) rotate(3deg);
}

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

.main-nav a {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E67E22, #27AE60);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E67E22;
  background: rgba(230, 126, 34, 0.1);
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #F8F3E8 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-weight: 700;
  font-size: 18px;
  color: #2c3e50;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(230, 126, 34, 0.05);
  border-left: 4px solid #E67E22;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  transform: translateX(10px);
  border-left-color: #27AE60;
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  background: linear-gradient(135deg, #FFE5B4 0%, #F8F3E8 50%, #E8F8F5 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

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

.hero h1 {
  margin-bottom: 25px;
  animation: slideDown 0.8s ease-out;
}

.subheadline {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-out 0.2s both;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================================
   BUTTONS - VIBRANT & ENERGETIC
   =================================== */

.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(39, 174, 96, 0.6);
}

.btn-outline {
  background: transparent;
  color: #E67E22;
  border: 3px solid #E67E22;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

/* ===================================
   CARDS - DYNAMIC & ENERGETIC
   =================================== */

.benefits-grid,
.services-grid,
.recipe-grid,
.collections-grid,
.testimonial-grid,
.pricing-grid,
.team-grid,
.stats-grid,
.methods-grid,
.contacts-grid,
.approaches-grid,
.specializations-grid,
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  justify-content: center;
}

.benefit-card,
.service-card,
.recipe-card,
.collection-card,
.testimonial-card,
.pricing-card,
.team-member,
.stat,
.method-card,
.contact-card,
.approach-card,
.specialization,
.principle-card {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 380px;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.recipe-card::before,
.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #E67E22 0%, #27AE60 100%);
  border-radius: 20px 20px 0 0;
}

.benefit-card:hover,
.service-card:hover,
.recipe-card:hover,
.collection-card:hover,
.pricing-card:hover,
.team-member:hover,
.method-card:hover,
.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(230, 126, 34, 0.3);
  border-color: #E67E22;
}

.service-card.featured,
.pricing-card.featured {
  background: linear-gradient(135deg, #FFF8E7 0%, #ffffff 100%);
  border: 3px solid #E67E22;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.3);
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonial-card {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ffffff;
  padding: 40px;
  border-left: 6px solid #E67E22;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card .author {
  color: #E67E22;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  margin-top: 15px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 80px;
  color: rgba(230, 126, 34, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

/* PRICING CARDS */
.price {
  font-size: 36px;
  font-weight: 900;
  color: #E67E22;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.features {
  list-style: none;
  margin: 25px 0;
}

.features li {
  padding: 12px 0;
  border-bottom: 2px dashed #F8F3E8;
  position: relative;
  padding-left: 35px;
  color: #2c3e50;
  font-size: 16px;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: 900;
  font-size: 20px;
}

/* ===================================
   FLEXBOX LAYOUTS - NO GRID!
   =================================== */

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0;
}

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

.text-image-section > * {
  flex: 1 1 300px;
}

.plate-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-around;
  margin: 40px 0;
}

.plate-section {
  flex: 1 1 250px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 3px solid #E67E22;
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.2);
  transition: all 0.3s ease;
}

.plate-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.3);
}

.process-steps,
.steps-grid,
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  justify-content: center;
}

.step,
.milestone {
  flex: 1 1 250px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #27AE60;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover,
.milestone:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(39, 174, 96, 0.3);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* FILTER TAGS */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.filter-tag {
  background: white;
  color: #E67E22;
  padding: 12px 25px;
  border-radius: 30px;
  border: 3px solid #E67E22;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-tag:hover {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

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

footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #E67E22 0%, #27AE60 50%, #E67E22 100%);
}

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

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

.footer-section h4 {
  color: #E67E22;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-nav a {
  color: #ecf0f1;
  font-size: 16px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #E67E22;
}

.footer-nav a:hover {
  color: #E67E22;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(236, 240, 241, 0.2);
  color: #95a5a6;
  font-size: 14px;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #E67E22;
}

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

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

#cookie-banner p {
  color: white;
  margin: 0;
  flex: 1 1 300px;
  font-size: 16px;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

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

.cookie-btn-settings:hover {
  background: #E67E22;
  color: white;
  transform: scale(1.05);
}

/* COOKIE SETTINGS MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-category {
  margin: 25px 0;
  padding: 20px;
  background: #F8F3E8;
  border-radius: 12px;
  border-left: 4px solid #E67E22;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 18px;
  color: #2c3e50;
  cursor: pointer;
}

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

.cookie-category p {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
}

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

.trust-badge,
.trust-elements,
.trust-indicators {
  font-weight: 700;
  color: #27AE60;
  font-size: 16px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  margin-top: 50px;
  font-size: 32px;
}

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

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

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

@media (max-width: 768px) {
  /* TYPOGRAPHY */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  p { font-size: 16px; }
  
  .subheadline { font-size: 18px; }
  
  /* NAVIGATION */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* HERO */
  .hero {
    padding: 60px 20px;
  }
  
  /* BUTTONS */
  .btn {
    padding: 14px 30px;
    font-size: 16px;
    width: 100%;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  /* CARDS */
  .benefit-card,
  .service-card,
  .recipe-card,
  .collection-card,
  .testimonial-card,
  .pricing-card,
  .team-member,
  .method-card,
  .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .service-card.featured,
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* FLEXBOX LAYOUTS */
  .text-image-section {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  /* COOKIE BANNER */
  #cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* STATS */
  .stat {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  
  .benefit-card,
  .service-card,
  .recipe-card {
    flex: 1 1 45%;
  }
}

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

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

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

button:focus,
a:focus {
  outline: 3px solid #E67E22;
  outline-offset: 3px;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* SELECTION */
::selection {
  background: #E67E22;
  color: white;
}

::-moz-selection {
  background: #E67E22;
  color: white;
}