nav {
  background-color: #a069af;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Išvalo sąrašo numatytus taškus ir tarpus */
nav ul {
  list-style: none;                   /* Pašalinami bullet'ai */
  margin: 0;                          /* Nėra išorinių tarpų */
  padding: 10px 0;                    /* Pridėtas vertikalus padding */
  display: flex;                      /* Išdėsto visus elementus eilutėje */
  justify-content: left;              /* Kairėje išdėsto elementus */
}

/* Nuorodų stilius */
nav ul li a {
  color: white;                       /* Nuorodos tekstas – baltas */
  padding: 8px 30px;                 /* Erdvė aplink tekstą */
  text-decoration: none;              /* Pašalinamas pabraukimas */
  transition: all 0.3s ease;          /* Sklandus perėjimas visiems efektams */
  position: relative;                 /* Reikalinga transformacijai */
  display: inline-block;             /* Reikalinga transformacijai */
}

/* Nuorodos hover efektas */
nav ul li a:hover {
  background-color: #ce80e3;
  border-radius: 10px;
  transform: translateY(-3px);        /* Pakelia elementą aukštyn */
}

/* Aktyvaus puslapio stilius */
nav ul li a.active {
  background-color: #ce80e3;
  border-radius: 10px;
  border-bottom: 2px solid white;
}

.gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

header img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(90deg, #ff0080, #7928ca, #00ff9f);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s linear infinite;
  margin: 0;
  padding: 0;
  letter-spacing: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  color: #222;
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin: 40px 0;
}

body {
  background-image: url("8.jpg");
  background-color: #cccccc;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

/* Wrapper for content to ensure proper spacing */
main, footer {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  margin: 20px 0;
}
