/* Responsive Styles - Media Queries */

/* Gallery Grid Responsive */
@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Header Responsive */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 16px;
    gap: 12px;
  }
  
  .header-nav {
    gap: 2px;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .token-display {
    display: none; /* Скрываем токены на мобильных */
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
  }
  
  .header-nav {
    order: 3;
    width: 100%;
    margin-top: 8px;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  
  .header-actions {
    flex: 1;
    justify-content: flex-end;
  }
  
  .creation-sidebar {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .btn-create,
  .btn-signin,
  .btn-profile {
    width: 100%;
  }
}

/* Social Feed Responsive */
@media (max-width: 960px) {
  .social-feed {
    grid-template-columns: 1fr;
  }
}

/* Landing Page Responsive */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero-primary, 
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-subtitle-carousel {
    height: 80px;
  }
}

/* Mobile Menu styles are in mobile-menu.css */
/* Toast responsive styles are in toast.css */
