@font-face {
  font-family: 'ashford';
  src: url('./fonts/ashford-bold.otf') format('opentype');
}

@font-face {
  font-family: 'lekton';
  src: url(./fonts/lekton005_l.otf);
}

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

html {
  background-color: white;
}

body {
  font-family: 'DM Sans', Georgia, sans-serif;
  background-color: white;
  color: #2a2118;
  min-height: 100vh;
}

.page-wrapper {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1.5rem;
}

.logo-container {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out both;
}

.logo-img {
  width: clamp(180px, 40vw, 260px);
  height: auto;
}

.brand-name {
  font-family: 'ashford', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: #2a6f90;
  margin-bottom: 0.4rem;
  /* padding-top: -10px; */
  animation: fadeUp 0.8s ease-out both;
}

.tagline {
  font-family: 'lekton', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #014765;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease-out 0.15s both;
}

.description {
  max-width: 420px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #014765;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.description strong {
  color: #2a2118;
}

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

.links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 380px;
  margin-bottom: 3rem;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.4rem;
  border-radius: 60px;
  text-decoration: none;
  font-family: 'DM Sans', Georgia, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 33, 24, 0.12);
}

.link-btn .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-btn .icon svg {
  width: 20px;
  height: 20px;
}

.link-btn .arrow {
  margin-left: auto;
  opacity: 0.4;
  transition: all 0.35s ease;
  font-size: 1.1rem;
}

.link-btn:hover .arrow {
  opacity: 0.8;
  transform: translateX(3px);
}

.link-btn.instagram {
  background-color: #73bedc;
  color: white;
  /* border: 1px solid #d9c4ab; */
  animation: fadeUp 0.6s ease-out 0.4s both;
}

.link-btn.facebook {
  background-color: #68aacd;
  color: white;
  /* border: 1px solid #d0c7bc; */
  animation: fadeUp 0.6s ease-out 0.5s both;
}

.link-btn.tiktok {
  background-color: #2a6f90;
  color: white;
  /* border: 1px solid #2a2118; */
  animation: fadeUp 0.6s ease-out 0.6s both;
}

.link-btn.pinterest {
  background-color: #014765;
  color: white;
  /* border: 1px solid #d4bfaf; */
  animation: fadeUp 0.6s ease-out 0.7s both;
}

.link-btn.community {
  background-color: white;
  color: #014765;
  border: 1px solid #014765;
  font-weight: 600;
  animation: fadeUp 0.6s ease-out 0.8s both;
}

.link-btn.community:hover {
  box-shadow: 0 8px 28px #014765(212, 101, 74, 0.3);
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 380px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease-out 0.85s both;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #2a6f90;
}

.divider span {
  font-family: 'lekton', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: #2a6f90;
  white-space: nowrap;
}

.signup-section {
  width: 100%;
  max-width: 380px;
  text-align: center;
  animation: fadeUp 0.6s ease-out 0.95s both;
}

.signup-section p {
  font-size: 0.85rem;
  color: #2a6f90;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.signup-form {
  display: flex;
  gap: 0.5rem;
}

.signup-form form {
  flex: 1;
}

.signup-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border-radius: 60px;
  border: 1.5px solid #68aacd;
  background-color: #ffffff;
  font-family: 'DM Sans', Georgia, sans-serif;
  font-size: 0.9rem;
  color: #68aacd;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.signup-form input::placeholder {
  color: #68aacd;
}

.signup-form input:focus {
  border-color: #2a6f90;
  box-shadow: 0 0 0 3px rgba(123, 152, 231, 0.1);
}

.signup-form button {
  padding: 0.85rem 1.4rem;
  border-radius: 60px;
  border: none;
  background-color: #2a6f90;
  color: white;
  font-family: 'DM Sans', Georgia, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.signup-form button:hover {
  background-color: #2a6f90;
  transform: translateY(-1px);
}

.signup-section.beta {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.footer {
  margin-top: 3rem;
  text-align: center;
  animation: fadeUp 0.6s ease-out 1.1s both;
}

.footer p {
  font-size: 0.75rem;
  color: #2a6f90;
  letter-spacing: 0.06em;
}

.footer .coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding: 0.4rem 1rem;
  background-color: #ebf0e7;
  border-radius: 20px;
  font-family: 'DM Sans', Georgia, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4a5b40;
  letter-spacing: 0.04em;
}

.footer .coming-soon .dot {
  width: 6px;
  height: 6px;
  background-color: #7a8b6f;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding: 2rem 1.25rem;
  }
  .signup-form {
    flex-direction: column;
  }
  .signup-form button {
    padding: 0.85rem;
  }
}
