/* ==========================================================================
   Furscale Pet Shop - Coming Soon
   ========================================================================== */

:root {
  --orange: #ff6b35;
  --green: #4caf50;
  --gray: #64748b;
  --dark: #1e293b;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: #fff;
  overflow: hidden;
}

/* Page */
.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Two-column layout */
.layout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 3rem;
  min-height: 0;
}

/* Left column */
.col-illustration {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-image {
  height: min(62vh, 420px);
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  animation: fadeIn 0.8s ease both;
}

/* Right column */
.col-content {
  flex: 0 0 auto;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.logo {
  width: min(240px, 60vw);
  height: auto;
  max-width: 100%;
  display: block;
  animation: fadeIn 0.8s ease 0.1s both;
}

.logo-mobile {
  display: none;
}

.title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  animation: fadeIn 0.8s ease 0.2s both;
}

.subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  animation: fadeIn 0.8s ease 0.3s both;
}

.divider {
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0.4rem 0;
  animation: fadeIn 0.8s ease 0.35s both;
}

/* Contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: fadeIn 0.8s ease 0.4s both;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--dark);
  text-decoration: none;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
  background: #f8fafc;
  transform: translateX(3px);
  color: var(--orange);
}

.contact-item i {
  color: var(--orange);
  width: 16px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Footer */
.footer {
  text-align: center;
  padding: 0.75rem;
  font-size: 0.78rem;
  color: var(--gray);
  border-top: 1px solid #f1f5f9;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive — stack on mobile
   ========================================================================== */

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .logo-mobile {
    display: block;
    width: min(200px, 55vw);
    margin: 0.75rem auto 0;
  }

  .logo-desktop {
    display: none;
  }

  .layout {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1.25rem 0.5rem;
    align-items: center;
  }

  .store-image {
    height: min(38vh, 240px);
  }

  .col-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .title {
    font-size: 1.4rem;
  }

  .divider {
    margin: 0.3rem auto;
  }

  .contact-item:hover {
    transform: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
