/* Setting Hooks Landing Page Styles */
/* Using the exact same color scheme as the app */

:root {
  /* App Theme Colors */
  --primary-dark: #0B1426;
  --primary-900: #0F1B2E;
  --primary-800: #1A2332;
  --primary-700: #243040;
  --primary-600: #2E3D4E;
  --primary-500: #384A5C;
  --accent-500: #00D4AA;
  --accent-400: #1ADBB1;
  --accent-300: #33E2B8;
  --neutral-white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: #B0BEC5;
  --text-tertiary: #78909C;
  
  /* Gradients */
  --main-gradient: linear-gradient(135deg, #00D4AA 0%, #1ADBB1 50%, #33E2B8 100%);
  --dark-gradient: linear-gradient(135deg, #0B1426 0%, #1A2332 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--primary-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 20, 38, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--primary-700);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-500);
}

.nav-btn {
  background: var(--main-gradient);
  color: var(--neutral-white);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: var(--dark-gradient);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary, .btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--main-gradient);
  color: var(--neutral-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-600);
}

.btn-secondary:hover {
  border-color: var(--accent-500);
  color: var(--accent-500);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-500);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: var(--primary-800);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--primary-600);
}

.app-screenshot {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--primary-900);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--primary-800);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--primary-600);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-500);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--main-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon .material-icons {
  font-size: 28px;
  color: var(--neutral-white);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
  padding: 100px 0;
  background: var(--primary-dark);
}

.screenshots-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.screenshot-item {
  text-align: center;
}

.screenshot-img {
  width: 200px;
  height: 400px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
  object-fit: cover;
  border: 2px solid var(--primary-600);
}

.screenshot-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.screenshot-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--primary-900);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--primary-800);
  border: 2px solid var(--primary-600);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--accent-500);
  background: linear-gradient(135deg, var(--primary-800) 0%, rgba(0, 212, 170, 0.05) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-gradient);
  color: var(--neutral-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-500);
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-savings {
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent-500);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-secondary);
}

.pricing-features .material-icons {
  color: var(--accent-500);
  font-size: 20px;
}

.pricing-btn {
  width: 100%;
  background: var(--main-gradient);
  color: var(--neutral-white);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Download Section */
.download {
  padding: 100px 0;
  background: var(--dark-gradient);
  text-align: center;
}

.download-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.download-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.download-btn img {
  height: 60px;
  width: auto;
  max-width: 200px;
  transition: transform 0.3s ease;
}

/* Ensure consistent badge sizing */
#google-play img,
#app-store img {
  height: 60px;
  width: auto;
}

.download-btn:hover img {
  transform: scale(1.05);
}

.coming-soon {
  background: var(--primary-800);
  border: 2px solid var(--primary-600);
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto;
}

.coming-soon p:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.coming-soon p:last-of-type {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.email-signup {
  display: flex;
  gap: 12px;
}

.email-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--primary-600);
  border-radius: 8px;
  background: var(--primary-700);
  color: var(--text-primary);
  font-size: 1rem;
}

.email-input:focus {
  outline: none;
  border-color: var(--accent-500);
}

.signup-btn {
  background: var(--main-gradient);
  color: var(--neutral-white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: var(--primary-900);
  border-top: 1px solid var(--primary-700);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--primary-700);
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent-500);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .screenshots-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .email-signup {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .screenshots-carousel {
    grid-template-columns: 1fr;
  }
  
  .screenshot-img {
    width: 180px;
    height: 360px;
  }
}

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

.feature-card,
.pricing-card,
.screenshot-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-800);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-400);
}
