/* ====== PILNEKRĀNA RESPONSIVE FONS ====== */

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;

  background-image: url("./nedali.png");
  background-size: cover;        /* aizpilda visu ekrānu */
  background-position: center;   /* centrēts fokuss */
  background-repeat: no-repeat;
  background-attachment: fixed;  /* parallax efekts desktopā */
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Viegls krāsas filtrs, lai teksts labi izceltos */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 1rem;
}

.overlay h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin: 0 0 0.5rem 0;
  text-shadow: 0 3px 6px rgba(0,0,0,0.5);
}

.overlay p {
  font-size: clamp(1rem, 1.8vw, 1.8rem);
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
