/*
 * Responsive styles for Almog Shtaigmann's Portfolio
 * Uses mobile-first approach with breakpoints for larger screens
 */

/* Small devices - phones (up to 576px) */
/* Base styles are already mobile-first in main.css */

/* Medium devices - tablets (576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: var(--container-sm);
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
}

/* Large devices - laptops/desktops (768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
  
  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .profile-section {
    gap: var(--spacing-xxl);
  }
  
  .profile-photo {
    width: 220px;
    height: 220px;
  }
}

/* Extra large devices - large desktops (992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: var(--container-lg);
  }
  
  .grid-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .profile-photo {
    width: 250px;
    height: 250px;
  }
}

/* XXL devices (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  
  .site-title {
    margin-bottom: var(--spacing-md);
  }
  
  .nav-main {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
  }
  
  .menu-toggle {
    display: block;
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
  }
  
  .nav-main.collapsed {
    display: none;
  }
  
  .contact-fab {
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 50px;
    height: 50px;
  }
  
  .contact-fab a img {
    width: 25px;
    height: 25px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .profile-section {
    flex-direction: column;
    text-align: center;
  }
}

/* Small phone devices */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .card {
    padding: var(--spacing-md);
  }
  
  .profile-photo {
    width: 180px;
    height: 180px;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin-bottom: var(--spacing-md);
  }
  
  .social-links {
    justify-content: center;
  }
} 