/* Responsive Styles */

/* Tablet and below */
@media (max-width: 1024px) {
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-2xl);
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    margin-bottom: var(--space-6);
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .app-logo {
    margin: 0 auto var(--space-3);
  }

  .screenshot-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    height: 70px;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--color-background);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-6);
    transition: right var(--transition-normal);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: var(--space-3) 0;
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: var(--space-6);
  }
  
  .hero-text h1 {
    font-size: var(--font-size-2xl);
  }
  
  .hero-text p {
    font-size: var(--font-size-md);
  }
  
  .screenshot-gallery {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  .footer-links ul {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  section {
    padding: var(--space-6) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-4);
  }
}

/* Wide screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-content {
    gap: var(--space-8);
  }
}

/* Dark mode preferences */
@media (prefers-color-scheme: dark) {
  :root {
    /* --color-background: #121212;
    --color-background-alt: #222222; */
    /* --color-text-primary: #F8F9FA;
    --color-text-secondary: #CED4DA;
    --color-text-tertiary: #ADB5BD;
    --color-border: #444444; */
  }
  
  .header {
    background-color: rgba(18, 18, 18, 0.95);
  }
  
  .feature-card {
    background-color: rgba(255, 255, 255, 0.05);
  }
}