/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Clean, minimalist styling inspired by Brownie Rewards */
:root {
  --primary-pink: #E9206D;
  --text-dark: #2C2C2C;
  --text-medium: #6C757D;
  --text-light: #B0B0B0;
}

/* Image styling */
img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.01);
}

/* Custom animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Section spacing */
section {
  scroll-margin-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  p {
    font-size: 1rem;
  }
}

