/* BuildPeak Landing Page Styles - Standalone CSS for Coming Soon Page */
/* Extracted from main application styles */

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

:root {
  /* BuildPeak Construction Solutions - Warm Professional Palette */
  
  /* Brand Colors */
  --orange-primary: #ff860b;      /* Logo orange - primary CTAs */
  --orange-dark: #e6780a;         /* Darker orange - hover states */
  --orange-light: #fed7aa;        /* Light orange - accents */
  
  /* Neutral Colors */
  --text-primary: #111827;        /* Dark gray - primary text */
  --text-secondary: #6b7280;      /* Medium gray - secondary text */
  --text-muted: #9ca3af;          /* Light gray - muted text */
  
  --bg-page: #fafafa;             /* Page background */
  --bg-surface: #ffffff;          /* Card/surface background */
  
  --border-primary: #e5e7eb;      /* Primary borders */
  
  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #3b82f6;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
  
  /* Mapped variables */
  --primary-color: #ff860b;
  --surface: #ffffff;
  --text: #111827;
}

/* Base Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
}

/* Landing Page Layout */
.landing-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), 
              url('images/Untitled (3).png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.landing-container {
  max-width: 750px;
  width: 100%;
}

.landing-content {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

/* Logo Section */
.logo-large {
  margin-bottom: 0.5rem;
}

.landing-logo-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Tagline */
.tagline {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  margin-bottom: 2rem;
}

.tagline em {
  font-style: italic;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.feature {
  text-align: center;
}

.feature h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: #ff860b;
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #e6780a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 134, 11, 0.3);
}

/* Subtitle */
.subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

/* Email Signup Form (for coming soon page) */
.signup-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.signup-form input[type="email"] {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-primary);
  border-radius: 6px;
  font-size: 1rem;
  min-width: 280px;
  outline: none;
  transition: border-color 0.2s ease;
}

.signup-form input[type="email"]:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 134, 11, 0.1);
}

.signup-form button {
  display: inline-block;
  background: #ff860b;
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.signup-form button:hover {
  background: #e6780a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 134, 11, 0.3);
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0E285C 0%, #1a3a7c 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  html, body {
    overflow: hidden;
    height: 100%;
  }
  
  .landing-page {
    padding: 0.75rem;
    align-items: center;
    justify-content: center;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    padding-bottom: 2rem;
  }
  
  .landing-container {
    max-width: 95%;
    margin-top: -2rem;
  }
  
  .landing-content {
    padding: 1.25rem 1rem;
  }
  
  .logo-large {
    margin-bottom: 0.25rem;
  }
  
  .landing-logo-image {
    max-width: 200px;
  }
  
  .tagline {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .feature h3 {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
  }
  
  .feature p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .cta-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
  
  .signup-form {
    flex-direction: column;
    align-items: center;
  }
  
  .signup-form input[type="email"] {
    min-width: 100%;
  }
}

/* Footer */
.landing-footer {
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  background: transparent;
  margin-top: 1rem;
}
