/* Global styles */
:root {
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
  --accent-color: #d4a251;
  --muted-color: rgba(0, 0, 0, 0.65);
  --border-subtle: rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  background: radial-gradient(circle at top, #f7f2eb 0, #ffffff 70%);
  color: var(--text-color);
  overflow-x: hidden;
}

/* Background SVG symbol */
.background-logo-wrapper {
  position: fixed;
  inset: -20% 0 -20% -35%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  pointer-events: none;
}

.background-logo {
  width: 140vmin;
  opacity: 0.6;
  filter: blur(18px);
}

/* Main content */
.main-wrapper {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 5rem;
}

.logo-parallax-wrapper {
  width: min(52vw, 360px);
  margin: auto;
  perspective: 1000px;
}

.coming-title {
  letter-spacing: 0.22em;
  font-weight: 600;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.6rem 0.75rem;
  z-index: 10;
}

.social-links a {
  color: var(--text-color);
}

.whatsapp-widget {
  position: fixed;
  bottom: 4.75rem;
  right: 1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 11;
}


/* Enhanced social links hover styles */
.social-links a {
  color: var(--text-color);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.social-links a:hover {
  color: #ffffff;
  background-color: var(--accent-color);
  border-color: rgba(212, 162, 81, 0.65);
  transform: translateY(-1px);
}


/* Adjust background slightly right */
.background-logo-wrapper {
  inset: -20% 0 -20% -20% !important;
}

/* Remove underline from all links */
a {
  text-decoration: none !important;
}

/* Bigger WhatsApp icon */
.whatsapp-widget {
  width: 4.2rem !important;
  height: 4.2rem !important;
}

.whatsapp-widget i {
  font-size: 2.1rem !important;
}


/* WhatsApp tooltip bubble */
.whatsapp-widget {
  position: fixed;
  bottom: 4.75rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.whatsapp-tooltip { font-size: 1rem !important;
  position: absolute;
  right: 115%;
  bottom: 50%;
  transform: translateY(50%);
  background: #ffffff;
  color: var(--text-color);
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 50%;
  transform: translateY(50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
  filter: drop-shadow(-1px 1px 1px rgba(0,0,0,0.06));
}


  10% {
    opacity: 0.95;
  }
  50% {
    transform: translateY(45%);
    opacity: 0.98;
  }
  90% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(50%);
    opacity: 0.0;
  }
}

/* Hide tooltip on very small screens to avoid crowding */
@media (max-width: 575.98px) {
  .whatsapp-tooltip { font-size: 1rem !important;
    display: none;
  }
}


/* Larger two-line tooltip */
.whatsapp-tooltip {
  font-size: 1.15rem !important;
  padding: 0.75rem 1.1rem !important;
  line-height: 1.35 !important;
  text-align: right !important;
  white-space: normal !important;
  width: max-content !important;
  max-width: 220px !important;
}


/* Reposition WhatsApp tooltip above the button and improve layout */
.whatsapp-tooltip {
  position: absolute !important;
  right: auto !important;
  left: 50% !important;
  bottom: 120% !important;
  transform: translateX(-50%) !important;
  background: #ffffff;
  color: var(--text-color);
  padding: 0.85rem 1.4rem !important;
  font-size: 1.05rem !important;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  white-space: normal !important;
  max-width: 280px !important;
  text-align: center !important;
  line-height: 1.4 !important;
}

/* Tooltip arrow now points downward */
.whatsapp-tooltip::after {
  content: "" !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 7px !important;
  border-style: solid !important;
  border-color: #ffffff transparent transparent transparent !important;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.08)) !important;
}

/* Slightly adjust widget position so tooltip doesn't collide with bottom bar */
.whatsapp-widget {
  bottom: 5.2rem !important;
}


/* Refine WhatsApp tooltip so it doesn't cut off on the right */
.whatsapp-tooltip {
  left: auto !important;
  right: 0.2rem !important;
  transform: translateX(0) !important;
  max-width: 260px !important;
  text-align: left !important;
}

.whatsapp-tooltip::after {
  left: auto !important;
  right: 1.5rem !important;
  transform: translateX(0) !important;
}

/* Contact chips under description */
.contact-chips {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.contact-label {
  color: var(--muted-color);
}

.contact-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  color: var(--text-color);
  font-size: 0.9rem;
  text-decoration: none !important;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.contact-chip i {
  font-size: 0.9rem;
}

.contact-chip:hover {
  background-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}


/* Increase font size for contact chips */
.contact-chip {
  font-size: 1.05rem !important;
  padding: 0.45rem 0.9rem !important;
}

.contact-chip i {
  font-size: 1.05rem !important;
}
