.elementor-12 .elementor-element.elementor-element-318516f{--display:flex;--justify-content:center;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-f39a5b7 */@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;500&display=swap');

:root {
  --white: #ffffff;
  --green: #00ff73;
}

.apple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--white);
  position: relative;
}

/* Center Flip */
.name-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.name-flip {
  width: 180px;
  height: 70px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.name-wrapper:hover .name-flip {
  transform: rotateY(180deg);
}

/* Common Flip Sides */
.name-front, .name-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

/* Front Text */
.name-front {
  z-index: 2;
  opacity: 1;
}

.name-wrapper:hover .name-front {
  opacity: 0;
  z-index: 1;
}

.name-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
}

.subtitle {
  font-size: 0.78rem;
  opacity: 0.7;
  margin-top: 0.2rem;
  font-weight: 400;
}

/* Back Memoji */
.name-back {
  transform: rotateY(180deg);
  z-index: 1;
  opacity: 0;
}

.name-wrapper:hover .name-back {
  z-index: 2;
  opacity: 1;
}

.name-back img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

/* Available Button */
.availability {
  display: flex;
  align-items: center;
}

.available-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
}

.available-dot {
  width: 10px;
  height: 10px;
  background-color: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 100, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(0, 255, 100, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 100, 0); }
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-left: 1rem;
}

.social-icons a {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.social-icons svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* MOBILE — hide left/right */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .apple-header {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .name-text {
    font-size: 1rem;
  }

  .subtitle {
    font-size: 0.75rem;
  }

  .name-back img {
    width: 64px;
    height: 64px;
  }
}/* End custom CSS */
/* Start custom CSS */.apple-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1240px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #fff;
  font-family: 'SF Pro Display', 'Inter', sans-serif;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 6px 30px rgba(0,0,0,0.2);
  pointer-events: auto !important;
}

/* Fixed size container for name/image */
.name-wrapper {
  position: relative;
  width: 150px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

/* Text and image stacked in same space */
#header-name,
#header-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.4s ease;
  white-space: nowrap;
}

/* Name default visible */
#header-name {
  opacity: 1;
  font-size: 18px;
  font-weight: 700;
}

#header-img {
  opacity: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* Toggle logic */
#header-name.hidden {
  opacity: 0;
}

#header-img.visible {
  opacity: 1;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}/* End custom CSS */