/* ============================================
   GetMenuWise.com — Shared Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --black: #0A0A0A;
  --gray-900: #1A1A1A;
  --gray-700: #444444;
  --gray-500: #888888;
  --gray-300: #CCCCCC;
  --gray-100: #F2F2F2;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--black);
}

/* ============================================
   Coming Soon Page
   ============================================ */

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 24px;
  text-align: center;
}

.logo-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.brand-name {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--black);
  line-height: 1.1;
}

.tagline {
  font-size: 22px;
  font-weight: 500;
  color: var(--gray-900);
  margin-top: 20px;
  letter-spacing: -0.3px;
}

.description {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-500);
  margin-top: 14px;
  max-width: 420px;
  line-height: 1.7;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 28px;
  background: var(--black);
  color: var(--white);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-store-badge:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.app-store-badge svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.badge-text-small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
}

.badge-text-large {
  font-size: 17px;
  font-weight: 600;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--gray-100);
}

.coming-soon .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border: none;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
}

.footer-links a {
  color: var(--gray-500);
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--black);
}

.footer-dot {
  color: var(--gray-300);
  user-select: none;
}

/* ============================================
   Legal Pages (Privacy & Terms)
   ============================================ */

.legal-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-header {
  margin-bottom: 48px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 32px;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: var(--black);
}

.legal-header h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--black);
}

.legal-header .last-updated {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 8px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.legal-content p {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--black);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gray-300);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  text-decoration-color: var(--black);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 640px) {
  .brand-name {
    font-size: 36px;
  }

  .tagline {
    font-size: 18px;
  }

  .description {
    font-size: 15px;
  }

  .legal-header h1 {
    font-size: 28px;
  }

  .legal-content h2 {
    font-size: 18px;
  }
}
