:root {
  --primary-rose: #B26D69;
  --primary-rose-light: #FFD9DE;
  --background-warm: #EBDFC5;
  --surface-warm: #F5F0E6;
  --on-background: #201A1B;
  --on-surface-muted: #4A4544;
  --outline-warm: #D4C4B0;
  --tertiary-brown: #7D5A50;
  --sage: #6B705C;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background-color: var(--background-warm);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* Parallax background layers */
.parallax-bg {
  position: fixed;
  left: 0;
  top: 60%;
  transform: translateY(-30%);
  width: 100%;
  height: 400px;
  pointer-events: none;
  overflow: hidden;
  border-bottom: 3px solid var(--outline-warm);
}

.parallax-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.parallax-layer svg {
  flex-shrink: 0;
}

.parallax-svg-back {
  width: 100%;
  height: 300px;
}

.parallax-svg-mid {
  width: 100%;
  height: 280px;
}

.parallax-svg-front {
  width: 100%;
  height: 180px;
}

.layer-back {
  opacity: 0.12;
  animation: drift-slow 120s linear infinite;
}

.layer-mid {
  opacity: 0.15;
  animation: drift-mid 80s linear infinite;
}

.layer-front {
  opacity: 0.1;
  animation: drift-fast 60s linear infinite;
}

@keyframes drift-slow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes drift-mid {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes drift-fast {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.coming-soon-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Decorative floating elements */
.decoration {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
}

.decoration-1 {
  top: 8%;
  left: 5%;
  animation: float 4s ease-in-out infinite;
}

.decoration-2 {
  top: 12%;
  right: 8%;
  animation: float 3.5s ease-in-out infinite reverse;
}

.decoration-3 {
  bottom: 12%;
  left: 8%;
  animation: float 4.5s ease-in-out infinite 0.5s;
}

.decoration-4 {
  bottom: 20%;
  right: 5%;
  animation: float 3s ease-in-out infinite 0.3s;
}

.decoration-5 {
  top: 25%;
  left: 15%;
  animation: float 5s ease-in-out infinite 1s;
}

.decoration-6 {
  top: 35%;
  right: 12%;
  animation: float 4s ease-in-out infinite 0.8s reverse;
}

.decoration-7 {
  bottom: 35%;
  left: 3%;
  animation: float 3.5s ease-in-out infinite 0.2s;
}

.decoration-8 {
  bottom: 8%;
  right: 15%;
  animation: float 4.2s ease-in-out infinite 1.2s;
}

.decoration-9 {
  top: 5%;
  left: 40%;
  animation: float 3.8s ease-in-out infinite 0.6s;
}

.decoration-10 {
  top: 18%;
  right: 25%;
  animation: float 4.8s ease-in-out infinite 0.4s reverse;
}

.decoration-11 {
  bottom: 28%;
  left: 20%;
  animation: float 3.2s ease-in-out infinite 0.9s;
}

.decoration-12 {
  top: 45%;
  right: 3%;
  animation: float 4.5s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(3deg); }
  50% { transform: translateY(-25px) rotate(-2deg); }
  75% { transform: translateY(-10px) rotate(2deg); }
}

/* Main content animations */
.logo {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-rose);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: fadeInDown 0.8s ease-out;
  text-shadow: 0 2px 20px rgba(178, 109, 105, 0.2);
}

.compass-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-out 0.3s both, spin-slow 20s linear infinite;
}

.compass-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-wrapper {
  position: relative;
}

.card {
  background-color: rgba(245, 240, 230, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  max-width: 520px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 12px 48px rgba(178, 109, 105, 0.1);
  border: 1px solid var(--outline-warm);
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.card-adornment {
  position: absolute;
  pointer-events: none;
  animation: fadeIn 1s ease-out 0.5s both;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  z-index: 10;
}

.adornment-heart {
  top: -20px;
  right: -25px;
  transform: rotate(15deg);
  animation: fadeIn 1s ease-out 0.6s both, pulse 3s ease-in-out infinite;
}

.adornment-journal {
  bottom: -15px;
  left: -30px;
  transform: rotate(-10deg);
  animation: fadeIn 1s ease-out 0.7s both;
}

.adornment-satchel {
  top: 50%;
  right: -35px;
  transform: translateY(-50%) rotate(8deg);
  animation: fadeIn 1s ease-out 0.8s both;
}

.adornment-map {
  top: -25px;
  left: -30px;
  transform: rotate(-15deg);
  animation: fadeIn 1s ease-out 0.65s both;
}

.adornment-tickets {
  bottom: -20px;
  right: -20px;
  transform: rotate(12deg);
  animation: fadeIn 1s ease-out 0.85s both;
}

@keyframes pulse {
  0%, 100% { transform: rotate(15deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.1); }
}

/* Flying plane */
.flying-plane {
  position: fixed;
  top: 15%;
  left: -260px;
  width: 240px;
  height: 100px;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
}

.flying-plane.flying {
  animation: flyAcross 12s linear forwards, bobbing 2s ease-in-out infinite;
}

.flying-plane.flying-reverse {
  animation: flyAcrossReverse 12s linear forwards, bobbing 2s ease-in-out infinite;
}

.flying-plane.flying-reverse svg {
  transform: scaleX(-1);
}

@keyframes flyAcross {
  0% {
    left: -260px;
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    left: calc(100% + 260px);
    opacity: 0;
  }
}

@keyframes flyAcrossReverse {
  0% {
    left: calc(100% + 260px);
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    left: -260px;
    opacity: 0;
  }
}

@keyframes bobbing {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Signup form styles */
.signup-form {
  margin-top: 1.5rem;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
}

.signup-input-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1rem;
  border: 2px solid var(--outline-warm);
  border-radius: 12px;
  background-color: #FAF7F2;
  font-size: 1rem;
  color: var(--on-background);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.signup-input:focus {
  outline: none;
  border-color: var(--primary-rose);
  box-shadow: 0 0 0 3px rgba(178, 109, 105, 0.15);
}

.signup-input::placeholder {
  color: #9A8F85;
}

.signup-button {
  padding: 0.875rem 1.5rem;
  background-color: var(--primary-rose);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  white-space: nowrap;
}

.signup-button:hover {
  background-color: #9A5854;
}

.signup-button:active {
  transform: scale(0.98);
}

.signup-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--on-surface-muted);
}

.signup-error {
  color: #BA1A1A;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: #FFDAD6;
  border-radius: 8px;
}

.signup-success {
  text-align: center;
  padding: 1rem;
}

.success-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: bounce 0.6s ease-out;
}

.success-message {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-rose);
  margin: 0;
}

.success-submessage {
  font-size: 0.9rem;
  color: var(--on-surface-muted);
  margin: 0.25rem 0 0 0;
}

@keyframes bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-rose), transparent);
  border-radius: 2px;
}

.heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--on-background);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.divider-line {
  width: 40px;
  height: 2px;
  background-color: var(--outline-warm);
  border-radius: 1px;
}

.divider-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-rose);
  border-radius: 50%;
}

.description {
  font-size: 1.15rem;
  color: var(--on-surface-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-text {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--tertiary-brown);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--outline-warm);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 600px) {
  .logo {
    font-size: 2.5rem;
  }

  .card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .heading {
    font-size: 1.8rem;
  }

  .decoration {
    display: none;
  }

  .compass-icon {
    width: 60px;
    height: 60px;
  }

  .parallax-bg {
    height: 300px;
  }

  .card-adornment {
    display: none;
  }

  .signup-input-group {
    flex-direction: column;
  }

  .signup-input {
    min-width: auto;
    width: 100%;
  }

  .signup-button {
    width: 100%;
  }
}
