/* Theme */
:root {
  --bg-color: #0c0c0e;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans Arabic", sans-serif;
  color: #f4f4f5;
}

body {
  background-image:
    radial-gradient(
      circle at 50% -10%,
      rgba(168, 85, 247, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(168, 85, 247, 0.05) 0%,
      transparent 30%
    );
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.logo-container {
  position: relative;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.5),
    rgba(168, 85, 247, 0.2)
  );
  border-radius: 2.2rem;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.2);
  animation: float 6s ease-in-out infinite;
}

.avatar-container {
  position: relative;
  border-radius: 2.22rem;
  padding: 3px;
  background: linear-gradient(135deg, #a855f720, #a855f705);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (hover: hover) {
  .glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow:
      0 20px 40px -10px rgba(0, 0, 0, 0.6),
      0 0 20px rgba(168, 85, 247, 0.15);
  }
}

.glass-card:active {
  transform: scale(0.96);
}

.icon-box {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover .icon-box {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(255, 255, 255, 0.1);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #a855f7;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
  animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(0.8); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  display: none;
}

main {
  touch-action: pan-y;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-booking {
  background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
  box-shadow: 0 8px 20px -5px rgba(147, 51, 234, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-booking:hover {
  box-shadow: 0 12px 25px -5px rgba(147, 51, 234, 0.6);
  filter: brightness(1.1);
}

.map-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-container {
  position: relative;
  padding: 4px;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  border-radius: 2.5rem;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
  animation: avatar-float 6s ease-in-out infinite;
}

@keyframes avatar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
