/* style.css - voor Tailwind builds met custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: 'Cherry Bomb One', cursive;
}

body {
  margin: 0;
  padding: 0;
  background-image: url('/assets/images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: white;
}

/* Donkere overlay voor betere leesbaarheid */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: -1;
}

/* Algemene layout fixes voor inhoud */
.container {
  position: relative;
  z-index: 1;
  padding: 20px;
}
