﻿/* =========================
   CONTACT OVERLAY – PREMIUM PRO
========================= */

.contact-overlay {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;

  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}

.contact-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =========================
   FLOATING GLASS CARD
========================= */

.contact-menu {
  position: relative;

  background: linear-gradient(
    145deg,
    rgba(30,30,30,0.9),
    rgba(10,10,10,0.85)
  );

  backdrop-filter: blur(18px);

  padding: 32px;
  border-radius: 20px;

  border: 1px solid rgba(255,215,0,0.45);

  /* 💎 MULTI LAYER SHADOW */
  box-shadow:
    0 25px 70px rgba(0,0,0,0.9),
    0 0 25px rgba(255,215,0,0.5),
    0 0 80px rgba(255,215,0,0.15);

  display: flex;
  flex-direction: column;
  gap: 14px;

  min-width: 300px;

  transform: translateY(20px) scale(0.85);
  opacity: 0;

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* POP IN */
.contact-overlay.active .contact-menu {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* =========================
   GOLD SHIMMER EFFECT
========================= */

.contact-menu::before {
  content: "";
  position: absolute;
  inset: -2px;

  border-radius: 22px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,215,0,0.4),
    transparent
  );

  opacity: 0.4;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* =========================
   GOLD AURA
========================= */

.contact-menu::after {
  content: "";
  position: absolute;
  inset: -15px;

  border-radius: 25px;

  background: radial-gradient(
    circle,
    rgba(255,215,0,0.25),
    transparent 70%
  );

  z-index: -1;
}

/* =========================
   LINKS – PREMIUM BUTTONS
========================= */

.contact-menu a {
  display: block;

  text-decoration: none;
  color: white;

  padding: 14px 16px;
  border-radius: 12px;

  background: linear-gradient(
    145deg,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
  );

  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.25s ease;
}

/* HOVER MAGIC */
.contact-menu a:hover {
  background: rgba(255,215,0,0.2);

  transform: translateX(8px) scale(1.02);

  box-shadow:
    0 5px 20px rgba(255,215,0,0.3);
}

/* =========================
   CLOSE BUTTON
========================= */

.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;

  font-size: 20px;
  cursor: pointer;

  transition: 0.2s;
}

.close-btn:hover {
  transform: scale(1.2);
  color: #f4c430;
}

/* =========================
   MICRO FLOAT (alive feeling)
========================= */

.contact-menu {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/* CSS Document */

