@import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Helvetica", sans-serif;
}

header {
  padding: 2rem;
  text-align: center;
}

.glitch {
  font-size: 3.5rem;
  position: relative;
  color: #fff;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% {
    text-shadow: 2px 2px 0 #0f0, -2px -2px 0 #f00;
  }
  25% {
    text-shadow: -2px -2px 0 #0f0, 2px 2px 0 #f00;
  }
  50% {
    text-shadow: 2px -2px 0 #0f0, -2px 2px 0 #f00;
  }
  75% {
    text-shadow: -2px 2px 0 #0f0, 2px -2px 0 #f00;
  }
  100% {
    text-shadow: 2px 2px 0 #0f0, -2px -2px 0 #f00;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.slogan {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: glitch 1s infinite;
}

.book-btn {
  background: linear-gradient(to bottom, #fff, #ccc);
  border: 1px solid #999;
  color: #000;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
  font-family: "Your Glitch Font", sans-serif;
  text-transform: uppercase;
}

.book-btn:hover {
  background-color: #0f0;
  background: linear-gradient(to bottom, #ccc, #fff);
}

.social-links {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  animation: glitch 1s infinite;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0f0;
}

footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  animation: glitch 1s infinite;
}

.book-icon {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s ease;
  animation: glitch 1s infinite;
}

.book-icon:hover {
  color: #0f0;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-pic > .glitch-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("profile.png") no-repeat center / cover;
  border-radius: 50%;
  overflow: hidden;
  opacity: 1;
  animation: glitch-anim 2s infinite linear alternate;
}

@keyframes glitch-anim {
  0% {
    transform: translate(0);
    opacity: 1;
  }
  20% {
    transform: translate(-5px, 5px);
    opacity: 0.8;
  }
  40% {
    transform: translate(-5px, -5px);
    opacity: 0.6;
  }
  60% {
    transform: translate(5px, 5px);
    opacity: 0.4;
  }
  80% {
    transform: translate(5px, -5px);
    opacity: 0.2;
  }
  100% {
    transform: translate(0);
    opacity: 0;
  }
}

.qr-code {
  text-align: center;
  margin-top: 1rem;
  position: relative;
}

.qr-code img {
  width: 100px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 255, 0, 0.8);
  transition: opacity 0.3s ease;
}

.qr-code:hover img {
  background-color: #000;
  opacity: 0;
}

.qr-code .whatsapp-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: glitch 1s infinite;  
}

.qr-code:hover .whatsapp-icon {
  opacity: 1;
  background-color: #000;
}