/* ==========================================================================
   LABTO COOKING - MINIMAL COMING SOON PAGE
   Brand Color: #1DBF73
   Font Family: Montserrat
   ========================================================================== */

:root {
  --brand-primary: #1DBF73;
  --brand-glow: rgba(29, 191, 115, 0.45);
  --brand-glow-light: rgba(29, 191, 115, 0.15);
  
  --bg-outer: #E9ECEF;
  --bg-card: #F4F6F8;
  
  --text-dark: #111827;
  --text-medium: #4B5563;
  --text-light: #6B7280;
  
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Layout Centering */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100vh;
  font-family: var(--font-family);
  background-color: var(--bg-outer);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.coming-soon-container {
  position: relative;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -3.5rem;
}

/* Glowing Emerald Aura behind the Dome */
.arch-glow {
  position: absolute;
  top: -30px;
  width: 520px;
  height: 420px;
  background: radial-gradient(circle, rgba(29, 191, 115, 0.55) 0%, rgba(29, 191, 115, 0.25) 45%, rgba(29, 191, 115, 0) 75%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: pulseAura 7s infinite alternate ease-in-out;
}

@keyframes pulseAura {
  0% { transform: scale(0.95); opacity: 0.75; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* Arch Dome Card (Transparent, Borderless & Minimal) */
.arch-dome {
  position: relative;
  z-index: 2;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: none;
  backdrop-filter: none;
}

/* Lottie Animation */
.lottie-wrapper {
  width: 440px;
  height: 440px;
  margin-top: 0;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lottie-box {
  width: 100%;
  height: 100%;
  filter: hue-rotate(122deg) saturate(1.3);
}

/* Friendly Headline */
.arch-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

/* Short Description */
.arch-description {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 1.8rem;
}

/* Subscribe Input Box */
.subscribe-box {
  width: 100%;
  max-width: 420px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.input-wrapper:focus-within {
  border-color: var(--brand-primary);
  box-shadow: none;
}

.input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: transparent;
}

.input-wrapper input::placeholder {
  color: var(--text-muted);
}

.notify-btn {
  background-color: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  outline: none;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  box-shadow: none;
}

.notify-btn:hover {
  background-color: #179b5c;
  box-shadow: none;
}

.feedback-msg {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  min-height: 1.2rem;
  font-weight: 500;
}

.feedback-msg.success {
  color: var(--brand-primary);
  font-weight: 600;
}

.feedback-msg.error {
  color: #EF4444;
  font-weight: 600;
}

/* Responsive Media Queries for Mobile Devices */
@media (max-width: 640px) {
  html, body {
    height: auto;
    min-height: 100vh;
    padding: 1.5rem 1rem;
    overflow-y: auto;
  }

  .coming-soon-container {
    margin-top: 0;
    max-width: 100%;
  }

  .arch-glow {
    width: 320px;
    height: 260px;
    top: -10px;
    filter: blur(30px);
  }

  .lottie-wrapper {
    width: 280px;
    height: 280px;
  }

  .arch-title {
    font-size: 1.95rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }

  .arch-description {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .subscribe-box {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .lottie-wrapper {
    width: 230px;
    height: 230px;
  }

  .arch-title {
    font-size: 1.7rem;
  }

  .input-wrapper {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 0.6rem;
  }

  .input-wrapper input {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .input-wrapper input:focus {
    border-color: var(--brand-primary);
  }
}

/* React Hot Toast Style Component (Global) */
.toast-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-25px) scale(0.9);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.35s ease;
}

.toast-container.show {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.toast-content {
  background: #FFFFFF;
  color: #363636;
  padding: 10px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--font-family);
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: nowrap;
}

.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
  animation: toastIconPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastIconPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.toast-text {
  font-weight: 500;
  color: #2D3748;
}

@media (max-width: 480px) {
  .toast-container {
    width: calc(100% - 32px);
    max-width: 360px;
    top: 12px;
  }
  .toast-content {
    white-space: normal;
    font-size: 0.85rem;
    padding: 10px 14px;
  }
}
