/* ========================================
   EMBER TRACTION - GEOMETRIC STRUCTURED DESIGN
   Modern Culinary Platform
   ======================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   GEOMETRIC TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A1A1A;
  letter-spacing: -0.5px;
}

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

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

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

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

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

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

/* ========================================
   HEADER & NAVIGATION - GEOMETRIC STRUCTURE
   ======================================== */
header {
  background: #FFFFFF;
  border-bottom: 3px solid #1A1A1A;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: #B63D2A;
  z-index: 1001;
}

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

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

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

.nav-menu li a:hover {
  color: #B63D2A;
  border-bottom: 2px solid #B63D2A;
  transform: translateY(-2px);
}

/* ========================================
   MOBILE MENU - GEOMETRIC OVERLAY
   ======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1002;
  background: #1A1A1A;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 0;
  border: 3px solid #1A1A1A;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #B63D2A;
  border-color: #B63D2A;
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: #1A1A1A;
  z-index: 1001;
  padding: 80px 40px 40px;
  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);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #B63D2A;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  font-size: 28px;
  border-radius: 0;
  border: 3px solid #B63D2A;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  padding: 20px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.mobile-nav a:hover {
  color: #B63D2A;
  padding-left: 20px;
  border-left: 4px solid #B63D2A;
}

/* ========================================
   BUTTONS - GEOMETRIC STRONG SHAPES
   ======================================== */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #B63D2A;
  color: #FFFFFF;
  border-color: #B63D2A;
}

.btn-primary:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.btn-secondary:hover {
  background: #B63D2A;
  border-color: #B63D2A;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}

.btn-outline:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-link {
  background: transparent;
  color: #B63D2A;
  border-color: #B63D2A;
  padding: 12px 24px;
  font-size: 14px;
}

.btn-link:hover {
  background: #B63D2A;
  color: #FFFFFF;
}

/* ========================================
   HERO SECTION - GEOMETRIC FOCAL POINT
   ======================================== */
.hero {
  background: linear-gradient(135deg, #FEFBF7 0%, #F4E8D8 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 6px solid #1A1A1A;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: #B63D2A;
  opacity: 0.05;
  transform: rotate(45deg);
}

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

.hero h1 {
  font-size: 56px;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   PAGE HERO - GEOMETRIC HEADER
   ======================================== */
.page-hero {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px solid #B63D2A;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ========================================
   SECTIONS - STRUCTURED SPACING
   ======================================== */
section {
  padding: 80px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 40px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #B63D2A;
}

/* ========================================
   GRID LAYOUTS - GEOMETRIC STRUCTURE
   ======================================== */
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.recipe-grid,
.courses-grid,
.blog-grid,
.links-grid,
.values-grid,
.stats-grid,
.faq-grid,
.content-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

/* ========================================
   CARDS - GEOMETRIC BLOCKS
   ======================================== */
.benefit-card,
.service-card,
.step,
.testimonial-card,
.recipe-card,
.course-card,
.blog-card,
.link-card,
.value-card,
.stat-card,
.faq-item,
.suggestion-card,
.info-card,
.right-card,
.cookie-type-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  padding: 32px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.recipe-card:hover,
.course-card:hover,
.blog-card:hover,
.link-card:hover,
.value-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: #B63D2A;
}

.benefit-card h3,
.service-card h3,
.step h3,
.recipe-card h3,
.course-card h3,
.blog-card h3,
.link-card h3,
.value-card h3 {
  color: #B63D2A;
  margin-bottom: 16px;
  font-size: 22px;
}

/* ========================================
   PRICING CARDS - GEOMETRIC EMPHASIS
   ======================================== */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  padding: 40px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 300px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: #B63D2A;
  border-width: 4px;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #B63D2A;
  color: #FFFFFF;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: #B63D2A;
  margin: 24px 0;
  font-family: 'Playfair Display', Georgia, serif;
}

.price span {
  font-size: 18px;
  color: #666666;
  font-weight: 400;
}

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

.features li {
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
  padding-left: 30px;
}

.features li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #B63D2A;
  font-size: 20px;
}

/* ========================================
   TESTIMONIALS - READABLE CONTRAST
   ======================================== */
.testimonial-card {
  background: #FEFBF7;
  border: 3px solid #1A1A1A;
  padding: 32px;
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #1A1A1A;
}

.testimonial-author strong {
  color: #B63D2A;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: #666666;
  font-size: 14px;
}

/* ========================================
   STEP NUMBERS - GEOMETRIC MARKERS
   ======================================== */
.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #B63D2A;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
}

/* ========================================
   RECIPES PAGE - STRUCTURED LAYOUT
   ======================================== */
.recipes-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.filter-sidebar {
  flex: 0 0 250px;
  background: #FEFBF7;
  padding: 32px;
  border: 3px solid #1A1A1A;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-sidebar h3 {
  color: #B63D2A;
  margin-bottom: 16px;
  margin-top: 24px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-sidebar h3:first-child {
  margin-top: 0;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-list li a {
  display: block;
  padding: 10px 16px;
  color: #1A1A1A;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.filter-list li a:hover {
  background: #FFFFFF;
  border-left-color: #B63D2A;
  padding-left: 24px;
}

.recipes-main {
  flex: 1;
}

.recipe-meta,
.course-details,
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.recipe-meta span,
.course-details span,
.blog-meta span {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-meta .category {
  background: #B63D2A;
}

/* ========================================
   CONTACT PAGE - STRUCTURED FORMS
   ======================================== */
.contact-layout {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 0 0 300px;
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 32px;
}

.contact-info h2::after {
  left: 0;
  transform: none;
}

.info-card {
  margin-bottom: 32px;
  border: 3px solid #1A1A1A;
  padding: 24px;
}

.info-card h3 {
  color: #B63D2A;
  margin-bottom: 12px;
  font-size: 18px;
}

.info-card p,
.info-card a {
  color: #1A1A1A;
  line-height: 1.8;
}

.contact-form-section {
  flex: 1;
  min-width: 400px;
}

.form-wrapper {
  background: #FEFBF7;
  padding: 40px;
  border: 3px solid #1A1A1A;
}

.form-intro {
  margin-bottom: 32px;
  font-size: 16px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 700;
  color: #1A1A1A;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  padding: 14px 16px;
  border: 2px solid #1A1A1A;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.form-input:focus {
  outline: none;
  border-color: #B63D2A;
  box-shadow: 0 0 0 3px rgba(182, 61, 42, 0.1);
}

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

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

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}

/* ========================================
   BLOG PAGE
   ======================================== */
.category-filter {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-filter a {
  padding: 10px 20px;
  border: 2px solid #1A1A1A;
  color: #1A1A1A;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.category-filter a:hover,
.category-filter a.active {
  background: #1A1A1A;
  color: #FFFFFF;
}

.read-more {
  display: inline-block;
  margin-top: 16px;
  color: #B63D2A;
  font-weight: 700;
  border-bottom: 2px solid #B63D2A;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.read-more:hover {
  color: #1A1A1A;
  border-color: #1A1A1A;
}

/* ========================================
   NEWSLETTER - GEOMETRIC FORM
   ======================================== */
.newsletter-signup {
  background: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-top: 6px solid #B63D2A;
}

.newsletter-signup h2 {
  color: #FFFFFF;
}

.newsletter-signup h2::after {
  background: #B63D2A;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  border: 3px solid #FFFFFF;
  font-size: 16px;
  background: #FFFFFF;
  color: #1A1A1A;
}

.email-input:focus {
  outline: none;
  border-color: #B63D2A;
}

.privacy-notice {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 16px;
}

.privacy-notice a {
  color: #B63D2A;
  text-decoration: underline;
}

/* ========================================
   CTA SECTIONS - GEOMETRIC BLOCKS
   ======================================== */
.cta-banner,
.cta-membership,
.contact-cta,
.guarantee {
  background: #B63D2A;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-top: 6px solid #1A1A1A;
  border-bottom: 6px solid #1A1A1A;
}

.cta-banner h2,
.cta-membership h2,
.contact-cta h2,
.guarantee h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-banner h2::after,
.cta-membership h2::after,
.contact-cta h2::after,
.guarantee h2::after {
  background: #FFFFFF;
}

.cta-banner p,
.cta-membership p,
.contact-cta p,
.guarantee p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.trust-text {
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.85;
}

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

/* ========================================
   LEGAL PAGES - STRUCTURED CONTENT
   ======================================== */
.legal-page {
  padding: 80px 20px;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 3px solid #1A1A1A;
}

.legal-header h1 {
  margin-bottom: 16px;
}

.last-updated {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.legal-content h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #B63D2A;
}

.legal-content h2::after {
  left: 0;
  transform: none;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content ul li {
  list-style: square;
  margin-bottom: 12px;
  padding-left: 8px;
}

.legal-content a {
  color: #B63D2A;
  text-decoration: underline;
}

.rights-grid,
.cookie-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

/* ========================================
   ERROR PAGE - GEOMETRIC 404
   ======================================== */
.error-hero {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #B63D2A;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Playfair Display', Georgia, serif;
}

.error-content h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.error-content p {
  font-size: 18px;
  opacity: 0.9;
}

.helpful-links {
  padding: 80px 20px;
}

/* ========================================
   THANK YOU PAGE - GEOMETRIC SUCCESS
   ======================================== */
.confirmation-hero {
  background: linear-gradient(135deg, #FEFBF7 0%, #F4E8D8 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #2C5F4F;
  color: #FFFFFF;
  font-size: 60px;
  line-height: 100px;
  margin: 0 auto 32px;
  font-weight: 700;
  border: 5px solid #1A1A1A;
}

.next-steps,
.featured-content {
  padding: 80px 20px;
}

.steps-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #FEFBF7;
  border: 3px solid #1A1A1A;
}

.step-item .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  margin: 0;
}

/* ========================================
   STATS - GEOMETRIC NUMBERS
   ======================================== */
.stat-card {
  text-align: center;
  padding: 40px;
  background: #1A1A1A;
  color: #FFFFFF;
  border: 3px solid #1A1A1A;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #B63D2A;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}

.stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ========================================
   FOOTER - GEOMETRIC STRUCTURE
   ======================================== */
footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-top: 6px solid #B63D2A;
}

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

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex: 2;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

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

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

.footer-column ul li a {
  opacity: 0.8;
  transition: all 0.3s ease;
  display: block;
  padding-left: 0;
  border-left: 2px solid transparent;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: #B63D2A;
  padding-left: 12px;
  border-left-color: #B63D2A;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  opacity: 0.7;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  opacity: 0.7;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.legal-links a:hover {
  opacity: 1;
  color: #B63D2A;
  border-bottom-color: #B63D2A;
}

/* ========================================
   COOKIE CONSENT BANNER - GEOMETRIC FIXED
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 24px 20px;
  z-index: 1000;
  border-top: 4px solid #B63D2A;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accept-all {
  background: #B63D2A;
  color: #FFFFFF;
  border-color: #B63D2A;
}

.accept-all:hover {
  background: #FFFFFF;
  color: #B63D2A;
}

.reject-all {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.reject-all:hover {
  background: #FFFFFF;
  color: #1A1A1A;
}

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

.cookie-settings:hover {
  border-color: #FFFFFF;
}

/* ========================================
   RESPONSIVE DESIGN - GEOMETRIC ADAPTATION
   ======================================== */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Layouts */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  .hero-cta a,
  .cta-buttons a {
    width: 100%;
  }
  
  .recipes-layout {
    flex-direction: column;
  }
  
  .filter-sidebar {
    position: static;
    flex: 1 0 auto;
  }
  
  .contact-layout {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form-section {
    flex: 1 0 auto;
    min-width: 100%;
  }
  
  /* Grid Cards */
  .benefits-grid > *,
  .services-grid > *,
  .pricing-grid > *,
  .testimonials-grid > *,
  .recipe-grid > *,
  .courses-grid > *,
  .blog-grid > *,
  .links-grid > *,
  .values-grid > *,
  .stats-grid > *,
  .content-suggestions > * {
    flex: 1 1 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .price {
    font-size: 36px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 calc(50% - 6px);
  }
  
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* Steps */
  .step-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .page-hero h1 {
    font-size: 26px;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
}

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

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

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

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

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

/* Apply animations */
.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease;
}

.mobile-menu.active {
  animation: slideIn 0.4s ease;
}

.success-icon {
  animation: scaleIn 0.5s ease;
}