@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Anton&family=Bebas+Neue&display=swap');

/* Alternative: If you have the Matchday DEMO font file locally, use this instead: */

@font-face {
  font-family: 'Matchday DEMO';
  src: url('fonts/Matchday-DEMO.woff2') format('woff2'),
       url('fonts/Matchday-DEMO.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

 /* Using sports-style fonts as alternatives for Matchday */
.matchday-font {
  font-family: 'Matchday DEMO', 'Bebas Neue', 'Anton', 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Performance optimizations */
* {
  box-sizing: border-box;
}

/* Enhanced smooth scrolling with performance optimizations */
html {
  scroll-behavior: auto; /* Better performance than smooth */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #1937BF;
  overflow-x: hidden; /* Voorkomt horizontale scroll */
  width: 100%;
  box-sizing: border-box;
}

/* ABOUT Page Title */
.page-title {
  position: fixed;
  top: 50%;
  right: 60px;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 8px;
  z-index: 100;
  pointer-events: none;
  user-select: none;
}

.page-title.bold {
  background: linear-gradient(45deg, rgba(255, 255, 0, 0.4), rgba(255, 215, 0, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 255, 0, 0.3);
}

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

/* Simpele Image Optimization - Lazy Loading */
img[data-src] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: imageLoading 1.5s infinite;
}

@keyframes imageLoading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Hardware acceleration for smooth animations */
.post-card,
.logo-container,
#sideMenu {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Enhanced performance optimizations for ultra-smooth interactions */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  transform: translateZ(0);
  contain: layout style paint;
  will-change: scroll-position;
}

/* Optimize all interactive elements for smooth hover effects */
.post-card,
.nav-left,
.logo-container,
.cta-button,
.filter-btn,
.see-more-btn,
.footer-link,
.footer-social-link,
#sideMenu ul li a {
  contain: layout style paint;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

/* Ultra-smooth transition timing for all hover effects */
.post-card {
  transition: transform 0.12s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.12s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.post-image img {
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.post-overlay {
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.nav-left {
  transition: color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.12s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.logo-container {
  transition: transform 0.12s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Additional performance optimizations for ultra-smooth experience */
.feed,
.feed-content,
.posts-grid {
  contain: layout style paint;
  will-change: auto;
}

/* Optimize images for better performance */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Debounce scroll events for better performance */
body.scrolling * {
  pointer-events: none;
}

/* Disable hover effects during touch scrolling on mobile */
body.touch-scrolling *:hover {
  transition-duration: 0.01ms !important;
}

/* Optimize heavy animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile optimizations - Remove hovers and heavy animations on small screens (phones) */
@media screen and (max-width: 768px) {
  /* Mobile Page Title */
  .page-title {
    right: 20px;
    font-size: 4rem;
    letter-spacing: 4px;
  }
  
  .post-card:hover,
  .cta-button:hover,
  .filter-btn:hover,
  .see-more-btn:hover,
  .nav-right button:hover,
  .footer-link:hover,
  .footer-social-link:hover,
  .footer-list li:hover,
  .email-link:hover,
  #sideMenu ul li a:hover,
  #sideMenu #closeMenu:hover,
  .social-icon:hover,
  .timeline-content:hover,
  .work-card:hover,
  .logo-container:hover {
    transform: none !important;
    box-shadow: inherit !important;
    color: inherit !important;
    background: inherit !important;
    filter: none !important;
    opacity: inherit !important;
    border-color: inherit !important;
    text-shadow: none !important;
  }
  
  /* Disable hover animations */
  .post-card:hover .post-image img,
  .post-card:hover .post-overlay,
  .cta-button:hover::before,
  .filter-btn:hover::before {
    transform: none !important;
    opacity: inherit !important;
    left: inherit !important;
    width: inherit !important;
  }
  
  /* Remove transition delays for mobile */
  * {
    transition-duration: 0.2s !important;
  }
  
  /* Permanent styling for BOLD and LOSES on mobile */
  .bold-word {
    background: linear-gradient(45deg, #ffff00, #ffd700, #6ec512, #6fff0f);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    font-weight: 900;
    letter-spacing: 2px;
    transform: scale(1.05);
  }
  
  .loses-word {
    background: linear-gradient(45deg, #ff6b6b, #e74c3c, #c0392b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: redShift 3s ease infinite;
    position: relative;
    transform: scale(1.05);
  }
  
  .loses-word::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #fff200);
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(255,107,107,0.4);
  }
  
  /* Disable hover effects for BOLD and LOSES on mobile */
  .bold-word:hover,
  .loses-word:hover {
    transform: scale(1.05) !important;
    letter-spacing: 2px !important;
    filter: none !important;
    box-shadow: none !important;
    animation: inherit !important;
  }
  
  .bold-word:hover::before,
  .loses-word:hover::after {
    width: inherit !important;
    opacity: inherit !important;
  }
}

/* Navigatiebalk */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background-color: #1937BF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: none;
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-left {
  font-weight: bold;
  flex: 1;
  text-align: center;
  margin-right: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.8em;
  color: white;
  transition: color 0.5s ease, transform 0.3s ease;
}

.nav-left:hover {
  transform: scale3d(1.1, 1.1, 1); /* Hardware accelerated scaling */
}

.nav-about-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-about-link:hover {
  opacity: 0.8;
  transform: translate3d(0, -1px, 0) scale3d(1.05, 1.05, 1); /* Optimized transform */
}

.navbar.scrolled .nav-left {
  color: #132541;
}

.navbar.scrolled .nav-about-link {
  color: #132541;
}

.nav-center {
  flex: 0 0 auto;
}

.logo-container {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.logo-container:hover {
  transform: scale3d(1.1, 1.1, 1); /* Hardware accelerated scaling */
}

.nav-center .logo {
  height: 60px;
  width: auto;
  transition: opacity 0.5s ease;
}

.nav-center .logo-dark {
  height: 60px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.navbar.scrolled .logo {
  opacity: 0;
}

.navbar.scrolled .logo-dark {
  opacity: 1;
}

.logo-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-container:hover .logo {
  opacity: 0;
}

.logo-container:hover .logo-video {
  opacity: 1;
}

.nav-right {
  font-weight: bold;
  flex: 1;
  text-align: center;
  margin-left: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-right:hover {
  transform: scale(1.1);
}

.nav-right button {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  transition: color 0.5s ease;
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
}

.navbar.scrolled .nav-right button {
  color: #132541;
}

/* Hoofdinhoud */
.content {
  margin-top: 80px;
  padding: 0 60px;
  max-width: 100%;
  overflow-x: hidden;
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* About Content Container */
.about-content {
  padding-top: 80px;
  min-height: 100vh;
  overflow-x: hidden; /* voorkomt witte balk door 100vw/scrollbar */
}

/* About Hero Section */
.about-hero {
  padding: 60px 0 120px 0;
  background: #1937BF;
  width: 100% !important; /* forceer ipv 100vw */
  position: relative;
  margin-left: 0 !important; /* verwijder eventuele negatieve margins */
}

.about-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.about-hero .hero-text h1 {
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: white;
  line-height: 0.9;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.bold-accent {
  color: #ffff00;
  filter: drop-shadow(0 4px 15px rgba(255, 255, 0, 0.4));
}

.about-hero .hero-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: #ffff00;
  color: #1937BF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #ffff00;
}

.btn-primary:hover {
  background: transparent;
  color: #ffff00;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 0, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #1937BF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-image { position: relative; }

.profile-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

/* Philosophy Section */
.philosophy {
  padding: 120px 0;
  background: white;
  width: 100% !important;
  margin-left: 0 !important;
}

.philosophy-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.philosophy h2 {
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #1937BF;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.philosophy-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(25, 55, 191, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(25, 55, 191, 0.15);
  border-color: #1937BF;
}

.philosophy-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #1937BF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.philosophy-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Skills Section */
.skills {
  padding: 120px 0;
  background: #1937BF;
  width: 100% !important;
  margin-left: 0 !important;
}

.skills-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.skills h2 {
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.skill-chip {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.skill-chip:hover {
  background: rgba(255, 255, 0, 0.2);
  border-color: #ffff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 0, 0.3);
}

/* Timeline Section */
.timeline-section {
  padding: 120px 0;
  background: white;
  width: 100% !important;
  margin-left: 0 !important;
}

.timeline-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.timeline-section h2 {
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #1937BF;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.timeline-about {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.timeline-about-item {
  flex: 0 0 280px;
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(25, 55, 191, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-about-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(25, 55, 191, 0.15);
  border-color: #1937BF;
}

.timeline-about-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffff00;
  background: #1937BF;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.timeline-about-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1937BF;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-about-content p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Project Teasers Section */
.project-teasers {
  padding: 120px 0;
  background: white;
  width: 100% !important;
  margin-left: 0 !important;
}

.teasers-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.project-teasers h2 {
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #1937BF;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.teasers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.teaser-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(25, 55, 191, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.teaser-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(25, 55, 191, 0.15);
  border-color: #1937BF;
}

.teaser-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.teaser-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1937BF;
  margin: 20px 20px 8px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.teaser-card p {
  color: #666;
  margin: 0 20px 20px 20px;
  line-height: 1.5;
}

/* Personal Section */
.personal {
  padding: 120px 0;
  background: #ffff00;
  width: 100% !important;
  margin-left: 0 !important;
}

.personal-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.personal-text h2 {
  font-family: 'Bebas Nieuwe', 'Anton', 'Arial Black', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #1937BF;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.personal-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1937BF;
  max-width: 500px;
}

.monogram-accent {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 10px 25px rgba(25, 55, 191, 0.3));
}

/* CTA Banner */
.cta-banner {
  padding: 120px 0;
  background: #1937BF;
  text-align: center;
  width: 100% !important;
  margin-left: 0 !important;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
}

.cta-banner h2 {
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.cta-banner p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  background: #ffff00;
  color: #1937BF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 2px solid #ffff00;
}

.btn-primary-large:hover {
  background: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 0, 0.4);
}

/* About Footer */
.about-footer {
  background: white;
  padding: 60px 0 30px 0;
  width: 100% !important;
  margin-left: 0 !important;
  border-top: 1px solid rgba(25, 55, 191, 0.1);
}

.footer-about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.footer-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #1937BF;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-info p {
  color: #666;
  font-size: 1.1rem;
}

.footer-socials {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1937BF;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ffff00;
  transform: translateY(-2px);
}

.social-icon {
  width: 24px;
  height: 24px;
}

.footeropyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(25, 55, 191, 0.1);
  color: #666;
  margin-top: 30px;
}

/* About Page Mobile Responsive */
@media screen and (max-width: 768px) {
  .about-content { padding-top: 60px; }
  
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  
  .about-hero .hero-text h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .about-hero .hero-text p {
    text-align: center;
    margin: 0 auto 30px auto;
  }
  
  .hero-ctas { justify-content: center; }
  .hero-image { order: -1; }
  .profile-image { height: 300px; }
  
  .philosophy-content,
  .skills-content,
  .timeline-content,
  .teasers-content,
  .cta-banner-content {
    padding: 0 20px;
  }
  
  .philosophy h2,
  .skills h2,
  .timeline-section h2,
  .project-teasers h2,
  .cta-banner h2 { font-size: 2.5rem; }
  
  .timeline-about {
    flex-direction: column;
    gap: 20px;
  }
  
  .timeline-about-item { flex: none; }
  
  .personal-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }
  
  .personal-text h2 { font-size: 2.5rem; }
  
  .footer-about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 0 20px;
  }
  
  .footer-socials { justify-content: center; }
}

/* Footer Styles */
.main-footer {
  background: white;
  color: #1937BF;
  padding: 80px 0 40px 0;
  margin-top: 0;
  border-top: 3px solid #1937BF;
  border-radius: 40px 40px 0 0;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-section h4 {
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #1937BF;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.footer-brand h3 {
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #1937BF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 1.1rem;
  color: rgba(25,55,191,0.7);
  margin-bottom: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1937BF;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ffff00;
  transform: translateX(5px);
}

.footer-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(92%) saturate(1425%) hue-rotate(217deg) brightness(97%) contrast(94%);
}

.footer-text {
  color: rgba(25,55,191,0.7);
  font-size: 1rem;
  margin: 0;
  margin-left: 32px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1937BF;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  color: #ffff00;
  transform: translateX(5px);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  padding: 8px 0;
  color: rgba(25,55,191,0.7);
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-list li:hover {
  color: #ffff00;
  transform: translateX(5px);
}

.footer-bottom {
  background: rgba(25,55,191,0.1);
  border-top: 1px solid rgba(25,55,191,0.2);
  padding: 30px 0;
}

.footer-copyright {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(25,55,191,0.2);
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  color: rgba(25,55,191,0.6);
  font-size: 0.9rem;
  display: inline-block;
  margin-right: 30px;
}

.footer-copyright p:last-child {
  margin-right: 0;
}

.footer-tagline {
  font-style: italic;
}

.heart {
  color: #ffff00;
  font-size: 1.1rem;
  animation: heartbeat 2s ease infinite;
}

@keyframes heartbeat {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(1.1);
  }
}

/* Footer Responsive */
@media screen and (max-width: 768px) {
  .main-footer {
    padding: 60px 0 40px 0;
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }
  
  .footer-copyright {
    margin-top: 30px;
    padding: 0 30px;
  }
  
  .footer-copyright p {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .footer-copyright p:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  /* Small Mobile Page Title */
  .page-title {
    right: 15px;
    font-size: 3rem;
    letter-spacing: 2px;
  }
  
  .footer-content {
    padding: 0 20px;
  }
  
  .footer-copyright {
    padding: 0 20px;
  }
  
  .footer-brand h3 {
    font-size: 1.8rem;
  }
  
  .footer-section h4 {
    font-size: 1.3rem;
  }
}


/* ===== NETLIFY CMS INTEGRATION STYLING ===== */

/* Post source indicators */
.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.work-source {
  font-size: 14px;
  opacity: 0.7;
  background: rgba(255,255,255,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

.work-source[data-source="netlify-cms"] {
  background: rgba(72, 187, 120, 0.2);
  color: #48bb78;
}

.work-source[data-source="admin"] {
  background: rgba(66, 153, 225, 0.2); 
  color: #4299e1;
}

.work-source[data-source="hardcoded"] {
  background: rgba(237, 137, 54, 0.2);
  color: #ed8936;
}

/* Additional post metadata */
.work-client,
.work-tools {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin: 5px 0;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.work-date {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  text-align: right;
}

/* CMS post loading states */
.cms-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: rgba(255,255,255,0.7);
}

.cms-loading::before {
  content: '🌐';
  margin-right: 10px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* CMS post success indicator */
.cms-status {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(72, 187, 120, 0.9);
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  max-width: 300px;
  word-wrap: break-word;
}

.cms-status.show {
  transform: translateX(0);
}

.cms-status.success {
  background: rgba(72, 187, 120, 0.9);
}

.cms-status.loading {
  background: rgba(66, 153, 225, 0.9);
}

.cms-status.warning {
  background: rgba(237, 137, 54, 0.9);
}

.cms-status.error {
  background: rgba(245, 101, 101, 0.9);
}

.cms-status::before {
  margin-right: 8px;
}

.cms-status.success::before {
  content: '✅';
}

.cms-status.loading::before {
  content: '🔄';
  animation: spin 2s linear infinite;
}

.cms-status.warning::before {
  content: '⚠️';
}

.cms-status.error::before {
  content: '❌';
}

/* Enhanced post grid for mixed sources */
.feed-grid .work-item[data-source="netlify-cms"] {
  border-left: 3px solid #48bb78;
}

.feed-grid .work-item[data-source="admin"] {
  border-left: 3px solid #4299e1;
}

.feed-grid .work-item[data-source="hardcoded"] {
  border-left: 3px solid #ed8936;
}

/* Source filter buttons */
.source-filters {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.source-filter-btn {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.source-filter-btn:hover,
.source-filter-btn.active {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.sou6ce-filter-btn.netlify-cms.active {
  background: rgba(72, 187, 120, 0.3);
  border-color: #48bb78;
}

.source-filter-btn.admin.active {
  background: rgba(66, 153, 225, 0.3);
  border-color: #4299e1;
}

.source-filter-btn.hardcoded.active {
  background: rgba(237, 137, 54, 0.3);
  border-color: #ed8936;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .work-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .work-source {
    align-self: flex-end;
  }
  
  .source-filters {
    padding: 0 10px;
  }
  
  .source-filter-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .cms-status {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }
}


/* Side menu - nu dropdown menu */
#sideMenu {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  box-shadow: 0 8px 30px rgba(25, 55, 191, 0.4);
  z-index: 999;
  transition: top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 50px 200px 80px 200px;
  border-bottom: 3px solid #1937BF;
}

#sideMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#sideMenu ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  position: relative;
}

#sideMenu ul li a {
  text-decoration: none;
  color: #1937BF;
  font-size: 24px;
  font-weight: 900;
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

#sideMenu ul li a:hover {
  color: #ffff00;
  transform: translate3d(10px, 0, 0); /* Hardware accelerated translation */
  text-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
}

.menu-arrow {
  font-size: 20px;
  color: #1937BF;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Faster, smoother transition */
  opacity: 0;
  transform: translate3d(-10px, 0, 0); /* Hardware accelerated initial position */
}

#sideMenu ul li a:hover .menu-arrow {
  opacity: 1;
  transform: translate3d(0, 0, 0); /* Hardware accelerated reset */
  color: #ffff00;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.7);
}

#sideMenu #closeMenu {
  background: rgba(25,55,191, 0.1);
  border: 2px solid rgba(25,55,191, 0.2);
  font-size: 28px;
  position: absolute;
  top: 20px;
  right: 200px;
  cursor: pointer;
  z-index: 1000;
  color: #1937BF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

#sideMenu #closeMenu:hover {
  background: #1937BF;
  border-color: #1937BF;
  color: white;
  transform: rotate3d(0, 0, 1, 90deg); /* Hardware accelerated rotation */
  box-shadow: 0 4px 15px rgba(25,55,191, 0.4);
}

/* Social en contact sectie */
.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  padding: 30px;
  background: rgba(25,55,191, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(25,55,191, 0.2);
  gap: 30px;
}

.social-section {
  flex: 1;
  text-align: center;
}

.social-section .section-title {
  color: #1937BF;
  margin-bottom: 15px;
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-weight: 900;
}

.contact-section {
  flex: 1;
  text-align: center;
}

.contact-section .section-title {
  color: #1937BF;
  margin-bottom: 15px;
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  font-weight: 900;
}

.email-link {
  display: inline-block;
  color: #1937BF;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 12px 0;
}

.email-link:hover {
  transform: translateY(-2px);
  color: #ffff00;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.section-title {
  font-size: 16px;
  font-weight: 900;
  font-family: 'Bebas Neue', 'Anton', 'Arial Black', sans-serif;
  margin-bottom: 15px;
  color: #1937BF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon img {
  width: 32px;
  height: 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0) saturate(100%) invert(18%) sepia(92%) saturate(1425%) hue-rotate(217deg) brightness(97%) contrast(94%);
}

.social-icon:hover img {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(0) saturate(100%) invert(79%) sepia(98%) saturate(345%) hue-rotate(8deg) brightness(108%) contrast(108%);
}

.social-icon:hover img {
  transform: translateY(-3px) scale(1.1);
}

/* Actief menu */
#sideMenu.active {
  top: 89px;
}

#overlay.active {
  background: rgba(0, 0, 0, 0.3);
  visibility: visible;
  opacity: 1;
}

/* Responsive design - consistent behavior for all screen sizes */
@media screen and (max-width: 1200px) {
  #sideMenu {
    padding: 40px 150px 60px 150px;
  }
  
  #sideMenu #closeMenu {
    right: 150px;
  }
}

@media screen and (max-width: 768px) {
  /* Basic layout adjustments */
  .navbar {
    padding: 15px 40px;
  }
  
  .nav-left {
    margin-right: 20px;
  }
  
  .nav-right {
    margin-left: 20px;
  }
  
  /* Touch-friendly button sizing */
  .nav-right button {
    min-height: 48px; /* Grotere touch target */
    min-width: 48px;
    padding: 12px;
    font-size: 1.4rem; /* Iets kleiner voor betere balans */
  }
  
  #sideMenu {
    padding: 30px 100px 50px 100px;
  }
  
  #sideMenu #closeMenu {
    right: 100px;
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Touch-friendly menu items */
  #sideMenu ul li a {
    padding: 15px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .menu-footer {
    flex-direction: column;
    gap: 25px;
    padding: 20px;
  }
  
  .email-link {
    font-size: 16px;
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .social-icons {
    gap: 15px;
  }
  
  .social-icon {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-icon img {
    width: 28px;
    height: 28px;
  }
  
  .section-title {
    font-size: 14px;
  }
  
  /* Mobile Feed Section - Edge to Edge */
  .feed {
    padding: 50px 0;
    margin: 80px 0 0 -20px; /* Meer ruimte bovenaan op tablet */
    width: 100vw;
    position: relative;
    overflow-x: hidden;
  }
  
  .feed-header {
    padding: 0 20px;
    margin-bottom: 40px; /* Meer ruimte tussen header en content */
    text-align: center;
  }
  
  .feed-header h2 {
    font-size: 3.5rem; /* Iets groter voor betere leesbaarheid */
    letter-spacing: -1px; /* Meer ruimte tussen letters */
    color: #1937BF;
    margin-bottom: 30px;
    line-height: 0.9; /* Betere line-height */
  }
  
  /* Show mobile dropdown, hide desktop filters */
  .desktop-filters {
    display: none !important;
  }
  
  .mobile-filter-dropdown {
    display: block !important;
  }
  
  .feed-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    grid-auto-rows: 6px; /* Kleinere units voor meer controle */
    padding: 0 20px; /* Padding terug voor content centering */
    margin: 0;
    max-width: none;
  }
  
  /* Kleiner geoptimaliseerde card heights voor makkelijker scrollen */
  .post-card:nth-child(6n+1) { grid-row-end: span 30; } /* Kleiner dan 40 */
  .post-card:nth-child(6n+2) { grid-row-end: span 28; } /* Kleiner dan 35 */
  .post-card:nth-child(6n+3) { grid-row-end: span 32; } /* Kleiner dan 38 */
  .post-card:nth-child(6n+4) { grid-row-end: span 29; } /* Kleiner dan 36 */
  .post-card:nth-child(6n+5) { grid-row-end: span 26; } /* Kleiner dan 32 */
  .post-card:nth-child(6n+6) { grid-row-end: span 34; } /* Kleiner dan 42 */
  
  .post-image {
    min-height: 140px; /* Kleiner dan 180px */
  }
  
  .post-content {
    padding: 18px;
  }
  
  .post-title {
    font-size: 16px;
  }
  
  /* Touch-friendly CTA and See More buttons */
  .cta-button {
    min-height: 44px;
    min-width: 120px;
    padding: 12px 24px;
  }
  
  .see-more-btn {
    min-height: 44px;
    min-width: 120px;
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  /* Basic layout for small screens */
  .navbar {
    padding: 15px 20px;
  }
  
  .nav-left {
    margin-right: 15px;
    font-size: 1.4em;
  }
  
  .nav-right {
    margin-left: 15px;
  }
  
  .nav-right button {
    font-size: 14px;
    min-height: 48px; /* Grotere touch targets */
    min-width: 48px;
    padding: 12px;
  }
  
  #sideMenu {
    padding: 30px 50px 50px 50px;
  }
  
  #sideMenu #closeMenu {
    right: 50px;
    min-height: 44px;
    min-width: 44px;
  }
  
  #sideMenu ul li a {
    font-size: 20px;
    padding: 18px 0;
    min-height: 50px;
  }
  
  .menu-footer {
    margin-top: 30px;
    padding: 15px;
    gap: 20px;
    flex-direction: column;
  }
  
  .email-link {
    font-size: 15px;
    min-height: 44px;
    padding: 15px 0;
  }
  
  .social-icons {
    gap: 12px;
  }
  
  .social-icon {
    min-height: 44px;
    min-width: 44px;
    padding: 8px;
  }
  
  .social-icon img {
    width: 26px;
    height: 26px;
  }
  
  /* Content areas - Edge to edge on mobile */
  .feed {
    padding: 35px 0;
    margin: 60px 0 0 -20px; /* Meer ruimte bovenaan op mobile */
    width: 100vw;
    position: relative;
    overflow-x: hidden;
  }
  
  .feed-header {
    margin-bottom: 25px;
    padding: 0 15px; /* Padding terug voor content centering */
    text-align: center;
    width: 100%; /* Volledige breedte */
  }
  
  .feed-header h2 {
    font-size: 2.6rem;
    letter-spacing: 0px;
    color: #1937BF;
    margin-bottom: 20px; /* Iets minder ruimte onder header */
    line-height: 1;
    padding: 0 15px; /* Alleen padding voor de tekst zelf */
  }
  
  /* Mobile dropdown adjustments for small screens */
  .mobile-filter-dropdown {
    max-width: 280px;
    margin: 15px auto 0;
  }
  
  .mobile-filter-btn {
    padding: 14px 18px;
    font-size: 14px;
    min-height: 46px;
  }
  
  .mobile-filter-option {
    padding: 14px 18px;
    font-size: 14px;
    min-height: 46px;
  }
  
  /* Touch-friendly buttons for small screens */
  .filter-btn {
    padding: 14px 22px;
    font-size: 12px;
    min-height: 46px;
    min-width: 80px;
  }
  
  .cta-button {
    min-height: 46px;
    min-width: 140px;
    padding: 14px 26px;
    font-size: 0.9rem;
  }
  
  .see-more-btn {
    padding: 16px 32px;
    font-size: 0.95rem;
    gap: 10px;
    min-height: 48px;
    min-width: 160px;
  }
  
  .see-more-arrow {
    width: 18px;
    height: 18px;
  }
  
  .feed-grid {
    grid-template-columns: 1fr;
    gap: 10px; /* Kleinere gap tussen items */
    grid-auto-rows: 4px; /* Nog kleinere units */
    padding: 0 15px; /* Padding terug voor content centering */
    margin: 0;
    max-width: none;
  }
  
  /* Compacte card heights voor kleine telefoons - makkelijker scrollen */
  .post-card:nth-child(6n+1) { grid-row-end: span 40; } /* Kleiner dan 55 */
  .post-card:nth-child(6n+2) { grid-row-end: span 36; } /* Kleiner dan 50 */
  .post-card:nth-child(6n+3) { grid-row-end: span 38; } /* Kleiner dan 52 */
  .post-card:nth-child(6n+4) { grid-row-end: span 34; } /* Kleiner dan 48 */
  .post-card:nth-child(6n+5) { grid-row-end: span 32; } /* Kleiner dan 46 */
  .post-card:nth-child(6n+6) { grid-row-end: span 42; } /* Kleiner dan 58 */
  
  .post-image {
    min-height: 120px; /* Nog kleiner dan 160px voor compact scrollen */
    max-height: 150px; /* Maximum hoogte om grote afbeeldingen te beperken */
  }
  
  /* Post overlay ook compacter maken */
  .post-overlay {
    padding: 12px 15px; /* Iets minder padding */
  }
  
  .post-overlay h3 {
    font-size: 1rem; /* Iets kleinere titel voor compacter design */
    margin-bottom: 4px;
  }
  
  .post-category {
    font-size: 0.75rem; /* Kleinere categorie tekst */
  }
  
  .post-content {
    padding: 15px;
  }
  
  .post-title {
    font-size: 15px;
    line-height: 1.3;
  }
  
  .post-card.featured::before {
    font-size: 9px;
    padding: 6px 12px;
  }
  
  /* Timeline improvements for small screens */
  .experiences {
    padding: 60px 0;
    margin-left: -20px;
  }
  
  .experiences-content {
    padding: 0 20px;
  }
  
  .experiences h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  
  /* Mobile Timeline - Single Column with better touch targets */
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 50px !important;
    padding-right: 0 !important;
    text-align: left !important;
    margin-bottom: 30px;
  }
  
  .timeline-item::before {
    left: 10px !important;
    right: auto !important;
    width: 24px;
    height: 24px;
  }
  
  .timeline-content {
    padding: 20px;
    border-radius: 16px;
  }
  
  .timeline-content h3 {
    font-size: 1.3rem;
  }
  
  .timeline-date {
    font-size: 1rem;
  }
  
  /* Footer touch improvements */
  .footer-content {
    padding: 0 20px;
  }
  
  .footer-copyright {
    padding: 0 20px;
  }
  
  .footer-brand h3 {
    font-size: 1.8rem;
  }
  
  .footer-section h4 {
    font-size: 1.3rem;
  }
  
  .footer-link,
  .footer-social-link {
    min-height: 44px;
    padding: 8px 0;
    display: flex;
    align-items: center;
  }
  
  .footer-list li {
    min-height: 44px;
    padding: 12px 0;
    display: flex;
    align-items: center;
  }
}

/* ===== END MOBILE RESPONSIVE ===== */

/* ===== KEYFRAME ANIMATIONS ===== */

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects for better interactivity */
.post-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.post-card:hover::after {
  opacity: 1;
}