body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #f0f0f0;
  padding-top: 0;
}

header {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  min-height: 80px;
}

.hamburger {
  display: none !important;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 10000;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a.cta {
  background: linear-gradient(to right, #ff00cc, #3333ff);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #fff;
}

.logo img {
  animation: laserGlow 2.5s infinite ease-in-out;
  max-height: 180px;
  height: auto;
  width: auto;
}

@keyframes laserGlow {
  0% {
    filter: drop-shadow(0 0 5px #ff00cc) drop-shadow(0 0 10px #3333ff);
  }
  50% {
    filter: drop-shadow(0 0 15px #ff00cc) drop-shadow(0 0 25px #3333ff);
  }
  100% {
    filter: drop-shadow(0 0 5px #ff00cc) drop-shadow(0 0 10px #3333ff);
  }
}

.logo img:hover {
  animation: bounceLogo 0.6s ease;
}

@keyframes bounceLogo {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  50%  { transform: translateY(5px); }
  70%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  color: white;
  margin-top: 220px;
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 204, 0.3);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .caption {
  transform: translateY(0);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .logo img {
    max-height: 120px !important;
  }

  .hamburger {
    display: flex !important;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #000;
    transition: right 0.3s ease;
    padding-top: 140px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 2rem;
  }

  nav li {
    border-bottom: 1px solid #333;
    padding: 1rem 0;
  }

  nav a {
    display: block;
    font-size: 1.2rem;
  }

  nav a.cta {
    margin-top: 1rem;
    text-align: center;
  }

  .hero {
    margin-top: 160px;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }
}
