:root {
  --purple-main: #7c3aed;
  --purple-light: #a78bfa;
  --purple-soft: #ede9fe;
}

body {
  margin: 0;
  background: white;
  color: black;
  font-family: Arial, sans-serif;
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* PAGE */
#page {
  opacity: 0;
  transition: opacity 1s ease;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero {
  font-size: 3.5rem;
  font-weight: bold;
}

.hero span {
  color: var(--purple-main);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.subtitle {
  margin-top: 20px;
  color: #444;
}

/* MGŁY */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.85;
  animation: float 30s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translate(0,0); }
  50% { transform: translate(40px,-30px); }
  100% { transform: translate(0,0); }
}

.shape-1 {
  width: 400px;
  height: 250px;
  background: var(--purple-main);
  top: 5%;
  left: -150px;
}

.shape-2 {
  width: 350px;
  height: 220px;
  background: var(--purple-light);
  top: 10%;
  right: -150px;
}

.shape-3 {
  width: 500px;
  height: 300px;
  background: var(--purple-soft);
  bottom: -180px;
  left: 10%;
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  color: black;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 10000;
  max-width: 360px;
}

#cookie-banner img {
  width: 42px;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
}

#cookie-banner button {
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

#accept-cookies {
  background: var(--purple-main);
  color: white;
}

#reject-cookies {
  background: transparent;
  color: #555;
  border: 1px solid #ccc;
}
