/* Base */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.navbar .logo {
  color: #ff007f;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 1px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #ff007f;
}

/* SLIDESHOW */
.swiper {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
}

/* Floating images */
.floating-img {
  position: absolute;
  width: 200px;
  transform: rotate(-20deg);
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.img-1 {
  top: 20%;
  left: 10%;
  animation: appearLeft 1.5s forwards 0.5s;
}

.img-2 {
  bottom: 10%;
  right: 10%;
  animation: appearRight 1.5s forwards 0.8s;
}

@keyframes appearLeft {
  from { opacity: 0; transform: translateX(-50%) rotate(-20deg); }
  to   { opacity: 1; transform: translateX(0) rotate(-20deg); }
}

@keyframes appearRight {
  from { opacity: 0; transform: translateX(50%) rotate(-20deg); }
  to   { opacity: 1; transform: translateX(0) rotate(-20deg); }
}
