/* FUM Australia — Jump / Relocation Page
   Styled to match the look and feel of fumaustralia.com.au
   FROM: cornico.com.au  →  TO: fumaustralia.com.au
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Jost:wght@300;400;500&display=swap');

:root {
  --fum-bg: #f4f1ec;
  --fum-bg-deep: #ece7df;
  --fum-stone: #e3dccf;
  --fum-ink: #2b2926;
  --fum-ink-soft: #6b645c;
  --fum-gold: #b08d57;
  --fum-gold-dark: #8f7042;
  --fum-line: rgba(43, 41, 38, 0.14);
  --fum-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  color: var(--fum-ink);
  background-color: var(--fum-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle marble vein texture behind content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(176, 141, 87, 0.06), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(43, 41, 38, 0.05), transparent 55%),
    linear-gradient(180deg, var(--fum-bg) 0%, var(--fum-bg-deep) 100%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23b08d57' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M0 120 Q100 60 200 110 T400 90'/%3E%3Cpath d='M0 220 Q120 180 210 230 T400 200'/%3E%3Cpath d='M0 320 Q90 280 200 330 T400 300'/%3E%3Cpath d='M60 0 Q40 120 110 200 T160 400'/%3E%3Cpath d='M300 0 Q320 130 250 210 T290 400'/%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
  opacity: 0.7;
  pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--fum-line);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.site-header .logo-wrap {
  display: inline-flex;
}

.site-header .logo-wrap img {
  height: 64px;
  width: auto;
  max-width: 100%;
  filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(540%) hue-rotate(355deg) brightness(96%) contrast(88%);
  opacity: 0.92;
}

/* ---------- Main / Card ---------- */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.relocate-card {
  width: 100%;
  max-width: 720px;
  background: var(--fum-white);
  border: 1px solid var(--fum-line);
  border-radius: 2px;
  box-shadow: 0 24px 60px -28px rgba(43, 41, 38, 0.28);
  padding: 3.25rem 3rem;
  text-align: center;
  position: relative;
}

.relocate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--fum-gold);
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fum-gold-dark);
  margin-bottom: 1.25rem;
}

.relocate-card h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  line-height: 1.15;
  color: var(--fum-ink);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.relocate-card h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--fum-gold-dark);
}

.relocate-card p.lead {
  font-size: 1.02rem;
  color: var(--fum-ink-soft);
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-weight: 300;
}

/* Domain transition visual */
.domain-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 2.25rem;
}

.domain-chip {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--fum-line);
  border-radius: 2px;
  background: var(--fum-bg);
  color: var(--fum-ink-soft);
  white-space: nowrap;
}

.domain-chip.from {
  text-decoration: line-through;
  text-decoration-color: rgba(107, 100, 92, 0.5);
  opacity: 0.75;
}

.domain-chip.to {
  color: var(--fum-ink);
  border-color: var(--fum-gold);
  background: rgba(176, 141, 87, 0.07);
  font-weight: 500;
}

.arrow {
  color: var(--fum-gold);
  font-size: 1.4rem;
  line-height: 1;
}

/* ---------- CTA Button ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fum-white);
  background: var(--fum-ink);
  padding: 1.1rem 2.6rem;
  border: 1px solid var(--fum-ink);
  border-radius: 2px;
  transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  cursor: pointer;
}

.cta:hover,
.cta:focus {
  background: var(--fum-gold-dark);
  border-color: var(--fum-gold-dark);
  color: var(--fum-white);
  transform: translateY(-2px);
  outline: none;
}

.cta .arrow-right {
  font-size: 1rem;
  transition: transform 0.35s ease;
}

.cta:hover .arrow-right {
  transform: translateX(4px);
}

/* Secondary inline link */
.inline-link {
  color: var(--fum-gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 141, 87, 0.4);
  font-weight: 500;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.inline-link:hover {
  color: var(--fum-ink);
  border-bottom-color: var(--fum-ink);
}

/* Auto-redirect notice */
.auto-note {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--fum-ink-soft);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.auto-note .countdown {
  font-weight: 500;
  color: var(--fum-ink);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--fum-line);
  background: rgba(255, 255, 255, 0.35);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.site-footer p {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--fum-ink-soft);
  font-weight: 300;
}

.site-footer p + p {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  opacity: 0.75;
}

/* Site by EIS Australia credit */
.site-by {
  margin-top: 1.1rem !important;
  font-size: 0.7rem !important;
  opacity: 1 !important;
}

.eis-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--fum-ink-soft);
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
  padding-top: 0.5rem;
  border-top: 1px solid var(--fum-line);
  margin-top: 0.25rem;
}

.eis-link:hover,
.eis-link:focus {
  color: var(--fum-gold-dark);
  outline: none;
}

.eis-label {
  font-weight: 300;
  opacity: 0.85;
}

.eis-brand {
  font-weight: 500;
  letter-spacing: 0.1em;
}

.eis-icon {
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.eis-link:hover .eis-icon {
  opacity: 1;
  transform: translate(1px, -1px);
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .relocate-card {
    padding: 2.5rem 1.6rem;
  }
  .site-header .logo-wrap img {
    height: 50px;
  }
  .domain-row {
    gap: 0.85rem;
  }
  .arrow {
    transform: rotate(90deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
