/*
Theme Name: Pokémon FireRed/LeafGreen
Theme URI: https://insidebalance.nl
Description: Een thema geïnspireerd door Pokémon FireRed en LeafGreen
Version: 1.0
Author: InsideBalance
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 255, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Pokéball decoratie achtergrond */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="rgba(255,0,0,0.08)" stroke-width="2"/><circle cx="50" cy="50" r="35" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="50" cy="20" r="15" fill="rgba(255,0,0,0.05)"/><circle cx="50" cy="80" r="15" fill="rgba(0,0,255,0.05)"/><circle cx="50" cy="50" r="8" fill="rgba(0,0,0,0.05)"/></svg>');
  background-size: 200px 200px;
  background-position: 0 0, 50px 50px, 100px 100px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #ff0000 0%, #0066ff 100%);
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  text-align: center;
  font-size: 2.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main container */
main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  min-height: 500px;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

nav a:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Pokémon gallery */
.pokemon-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
}

.pokemon-item {
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  border: 2px solid #ff0000;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pokemon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
  border-color: #0066ff;
}

.pokemon-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.pokemon-item h3 {
  color: #ff0000;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.pokemon-item p {
  color: #0066ff;
  font-weight: bold;
  font-size: 0.9em;
}

/* Headings */
h1, h2, h3 {
  color: #ff0000;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Paragraphs */
p {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Links */
a {
  color: #0066ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff0000;
  text-decoration: underline;
}
