/* Mobile menu toggle styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
  }
  
  .burger-icon {
    width: 40px;
    height: 40px;
  }
  
  /* Mobile side navigation */
  .mobile-side-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background-color: #c7baba;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  }
  
  .mobile-side-nav.open {
    right: 0;
  }
  
  .mobile-side-nav ul {
    list-style: none;
    margin-top: 50px;
  }
  
  .mobile-side-nav li {
    margin-bottom: 20px;
  }
  
  .mobile-side-nav a {
    text-decoration: none;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .mobile-side-nav a:hover {
    color: #E32D30;
  }
  
  .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    /* Home section adjustments */
    .home-container {
      grid-template-columns: 1fr;
      padding: 20px;
      text-align: center;
    }
    
    .intro {
      text-indent: 0;
      margin-bottom: 30px;
    }
    
    .highlight {
      padding-left: 0;
    }
    
    .actions {
      flex-direction: column;
      gap: 1rem;
    }
    
    /* About section adjustments */
    .about-container h2,
    .projects-container h2,
    .skills-container h2,
    .contact-container h2 {
      margin-left: 0;
      text-align: center;
      font-size: 3rem;
    }
    
    .about-content {
      width: 100%;
      padding: 20px;
    }
    
    .about-image {
      position: relative;
      right: auto;
      top: auto;
      margin: 20px auto;
    }
    
    /* Projects and skills grid adjustments */
    .projects-grid,
    .skills-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .stack,
    .stack-skills {
      max-width: 100%;
    }
    
    /* Contact form adjustments */
    #contact-form {
      width: 100%;
      padding: 20px;
    }
  }
  
  @media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet-specific adjustments */
    .home-container {
      grid-template-columns: 1fr 1fr;
    }
    
    .projects-grid,
    .skills-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }