/* === Monra Support Main Styles === */

/* CSS Variables */
:root {
  --monra-green: #3CB138;       /* hoofd-groen */
  --monra-green-600: #2a8a2a;   /* donkerder groen */
  --monra-light: #b9ff82;       /* lichtgroen accent */
  --monra-mint: #e9ffe0;        /* zachte achtergrondtint */
  --surface: #ffffff;
  --text-dark: #0c0c0c;
  --text-light: #f7fff2;
}

/* Base Styles */
html { 
  scroll-behavior: smooth; 
}

html, body { 
  height: 100%; 
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--monra-mint);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Animation utility classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-pulse-slow {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce-slow {
  animation: bounce 2s ease-in-out infinite;
}

/* Smooth transitions for interactive elements only */
button, a, input, textarea, select, .hover-lift, .hover-scale, .hover-glow {
  transition: all 0.3s ease;
}

/* Stable sticky positioning */
.sticky {
  position: sticky;
  will-change: transform;
}

/* Prevent unwanted movement during scroll */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Enhanced hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(60, 177, 56, 0.3);
}

a { 
  color: var(--monra-green-600); 
}

a:hover { 
  filter: brightness(0.9); 
}

/* Header Styles */
header#monra-top {
  background: var(--monra-green-600);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-bottom: 4px solid var(--monra-green);
}

header#monra-top img { 
  height: 70px; 
  width: auto; 
}

/* Button/CTA Styles */
.cta, .btn, button, input[type=submit] {
  background: var(--monra-green);
  color: var(--text-light);
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta.small { 
  padding: 8px 14px; 
  font-size: 0.95rem; 
}

.cta:hover, .btn:hover, button:hover, input[type=submit]:hover { 
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(60, 177, 56, 0.3);
  filter: brightness(1.1);
}

.cta:active, .btn:active, button:active, input[type=submit]:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

/* Card/Section Styles */
section, .section, .card {
  backdrop-filter: saturate(120%);
}

.card {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Service Card Styles */
.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-card h3 { 
  margin: 0 0 8px 0; 
}

.service-card .cta.small {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--monra-green);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.service-card .cta.small:hover { 
  filter: brightness(0.9); 
}

/* Brandwachten Section Styles */
section#brandwachten {
  padding: 48px 16px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

#brandwachten h2 { 
  margin-top: 0; 
  font-size: 2rem; 
}

#brandwachten .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

#brandwachten .card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

#brandwachten ul { 
  padding-left: 18px; 
  margin: 6px 0 0 0; 
}

#brandwachten .cta {
  margin-top: 18px;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--monra-green);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
}

#brandwachten .cta:hover { 
  filter: brightness(0.9); 
}

/* Services Grid - Force 3 columns on large screens */
@media (min-width: 1024px) {
  #diensten .grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
