/* ---- Basic reset ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

/* ---- Page background: photo, light overlay so it's bright and clear ---- */
body {
  min-height: 100vh;
  font-family: Georgia, 'Times New Roman', serif;

  /* Photo background — just a very light neutral dim, not a colored curtain */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* ---- Content grouped together in one compact glass panel ---- */
.card {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

/* ---- "Coming Soon" — elegant cursive script, gold ---- */
.coming-soon {
  font-family: 'Great Vibes', cursive;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #f5e6c4;
  margin-bottom: 4px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
  white-space: nowrap;
}

/* ---- Gold divider ---- */
.divider {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0b565, transparent);
  margin: 0 auto 16px;
  box-shadow: 0 0 8px rgba(224, 181, 101, 0.5);
}

/* ---- Description text ---- */
.description {
  font-size: 16px;
  line-height: 1.7;
  color: #eef2fb;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ---- Services list — one single row ---- */
.services {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* old Edge/IE */
}

.services::-webkit-scrollbar {
  display: none;               /* Chrome, Safari */
}

.services span {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(224, 181, 101, 0.65);
  color: #f3e0b0;
  padding: 7px 12px;
  border-radius: 22px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(20, 30, 58, 0.55), rgba(8, 17, 40, 0.55));
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Diamond-glint sweep: a bright diagonal streak that slides across
   the pill on hover, like light catching a gem facet */
.services span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 240, 200, 0.75) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.services span:hover::before {
  left: 130%;
}

.services span:hover svg {
  stroke: #fff3d6;
  filter: drop-shadow(0 0 4px rgba(255, 220, 150, 0.9));
}

.services span:hover {
  background: rgba(224, 181, 101, 0.16);
  border-color: #e0b565;
  transform: translateY(-2px);
}

.services svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: #e0b565;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke 0.3s ease, filter 0.3s ease;
}

/* ---- Contact button ---- */
.contact-button {
  position: relative;
  display: inline-block;
  border: 1px solid #e0b565;
  color: #f5e6c4;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 12px;
  letter-spacing: 0.03em;
  background: rgba(8, 17, 40, 0.4);
  backdrop-filter: blur(3px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.15s ease;
}

/* Lightning-flash burst + soft gold glow — background stays the
   same dark tone, only a glow appears around the edge */
.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px 2px rgba(224, 181, 101, 0.55), 0 0 36px 8px rgba(224, 181, 101, 0.3);
}

/* Water-ripple rings expanding outward from the button, like a
   droplet landing on still water — two rings, staggered timing */
.contact-button::before,
.contact-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(224, 181, 101, 0.85);
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  pointer-events: none;
}

.contact-button:hover::before {
  animation: rippleOut 1.3s ease-out infinite;
}

.contact-button:hover::after {
  animation: rippleOut 1.3s ease-out infinite;
  animation-delay: 0.5s;
}

@keyframes rippleOut {
  0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1.9); opacity: 0; }
}

/* ---- Footer ---- */
.footer {
  margin-top: 18px;
  font-size: 11px;
  color: #dfe6f5;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}/* ---- Company logo image ---- */
/* mix-blend-mode: screen makes the black background of the logo
   image disappear against the page background, leaving only the
   gold and blue artwork visible — no more black square. */
.logo-mark {
  width: 460px;
  max-width: 88vw;
  height: auto;
  margin: 0 auto 8px;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}


/* ---- Small screens (phones): let the service pills wrap onto
   two lines instead of overflowing off the edge of the screen ---- */
@media (max-width: 480px) {
  .services {
    flex-wrap: wrap;
    overflow-x: visible;
    row-gap: 8px;
  }

  /* iOS Safari has a known bug: background-attachment:fixed causes
     the page to glitch/not snap back correctly when scrolling.
     Switch to normal scroll attachment on phones to fix it. */
  body {
    background-attachment: scroll;
  }
}
