/* Responsive Styles */

/* Mobile First Approach */
/* Base styles are in styles.css */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-5);
  }
  
  .hero-text {
    flex: 1;
    margin-bottom: 0;
  }
  
  .hero-image {
    flex: 1;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .screenshots-slider {
    max-width: 400px;
  }
  
  .footer-links {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .screenshots-slider {
    max-width: 500px;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-logo {
    margin-bottom: 0;
  }
  
  .footer-links {
    flex: 1;
    margin-left: var(--space-6);
  }
}

/* Mobile (767px and down) */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: white;
    width: 80%;
    height: calc(100vh - 70px);
    padding: var(--space-4);
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: var(--space-3) 0;
    width: 100%;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}