/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE STYLES
   Mobile-first breakpoints
   ═══════════════════════════════════════════════════════════════ */

/* ── Tablets & Below (≤ 1024px) ───────────────────────────────── */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 30px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-name {
    font-size: 2.8rem;
  }

  .hero-tagline {
    font-size: 1.6rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    width: 250px;
    height: 250px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    display: flex;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-terminal {
    max-width: 500px;
    margin: 0 auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    flex-wrap: wrap;
  }

  .section-line {
    display: none;
  }
}

/* ── Large Phones (≤ 768px) ───────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
    --nav-height: 60px;
  }

  .container {
    width: 92%;
    padding: 0 15px;
  }

  .hero-name {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .cards-grid,
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 2rem;
  }

  .page-header {
    padding: 120px 0 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .blog-post-header h1 {
    font-size: 1.7rem;
  }

  .blog-post-content p {
    font-size: 0.95rem;
  }

  .blog-post-images {
    grid-template-columns: 1fr;
  }

  .mobile-menu {
    width: 80%;
  }
}

/* ── Small Phones (≤ 480px) ───────────────────────────────────── */
@media (max-width: 480px) {
  .navbar {
    padding: 0 20px;
  }

  .hero-name {
    font-size: 1.8rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-image-wrapper {
    width: 200px;
    height: 200px;
  }

  .about-terminal {
    font-size: 0.75rem;
  }

  .terminal-body {
    padding: 14px;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.82rem;
  }

  .btn-lg {
    padding: 14px 36px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .footer-socials {
    gap: 16px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .tech-tags {
    gap: 6px;
  }

  .tech-tag {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .mobile-menu {
    width: 85%;
  }
}

/* ── Desktop (≥ 1025px) ───────────────────────────────────────── */
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-overlay,
  .hamburger {
    display: none !important;
  }
}
