/* ==========================================================
   RESPONSIVE BREAKPOINTS - Enhanced
   ========================================================== */

/* Tablet and below */
@media screen and (max-width: 1024px) {
  .profile-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .profile-buttons {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .name {
    font-size: 2.75rem;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: left;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .blob-1 { width: 350px; height: 350px; }
  .blob-2 { width: 280px; height: 280px; }
  .blob-3 { width: 250px; height: 250px; }

  .profile-pic-container {
    width: 264px;
    height: 264px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  #desktop-nav {
    display: none;
  }

  #hamburger-nav {
    display: block;
  }

  section {
    padding: 4rem 1.25rem;
  }

  .name {
    font-size: 2.25rem;
  }

  .tagline {
    font-size: 1.063rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .profile-pic-container {
    width: 236px;
    height: 236px;
  }

  .about-pic-container {
    width: 250px;
    height: 300px;
  }

  .profile-buttons {
    flex-direction: column;
    align-items: center;
  }

  .profile-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 340px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .experience-tabs {
    gap: 0.75rem;
  }

  .tab-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .about-content {
    gap: 2.5rem;
  }

  .wave-divider svg {
    height: 50px;
  }

  .cursor-glow {
    display: none;
  }

  .blob-1 { width: 250px; height: 250px; }
  .blob-2 { width: 200px; height: 200px; }
  .blob-3 { width: 180px; height: 180px; }
}

/* Small mobile */
@media screen and (max-width: 480px) {
  .name {
    font-size: 1.875rem;
  }

  .greeting {
    font-size: 1rem;
  }

  .tagline {
    font-size: 0.938rem;
  }

  .profile-pic-container {
    width: 196px;
    height: 196px;
  }

  .about-pic-container {
    width: 220px;
    height: 260px;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-dot {
    left: -1.5rem;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .project-img-wrapper {
    height: 180px;
  }

  .wave-divider svg {
    height: 35px;
  }
}