/* ============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================ */

/* Tablet - Large */
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }

  .hero-content {
    gap: 3rem;
  }

  .intro {
    font-size: 1.75rem;
  }

  .profile-img {
    width: 260px;
    height: 330px;
  }

  .section-layout {
    grid-template-columns: 180px 1fr;
    gap: 3rem;
  }

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

/* Tablet - Medium */
@media screen and (max-width: 992px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 2rem;
  }

  #hero {
    padding: 3rem 0;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .greeting {
    font-size: 2rem;
  }

  .intro {
    font-size: 1.5rem;
  }

  .profile-img {
    width: 220px;
    height: 280px;
  }

  .section-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .skills-layout {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }

  .section-icon {
    display: none;
  }

  .section-content {
    text-align: center;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
  }

  .skill-category {
    text-align: center;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile - Large */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .greeting {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .intro {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
  }

  .cta {
    font-size: 1rem;
  }

  .profile-img {
    width: 200px;
    height: 260px;
  }

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

  .section-content p {
    font-size: 0.95rem;
    text-align: left;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .skill-category-title {
    font-size: 0.7rem;
  }

  .skill-list a {
    font-size: 0.9rem;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cv-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Mobile - Small */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 2.5rem 0;
  }

  #hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .greeting {
    font-size: 1.5rem;
  }

  .intro {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .profile-img {
    width: 180px;
    height: 230px;
    border-width: 3px;
  }

  .section-content p {
    font-size: 0.9rem;
  }

  .skills-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .skill-list li {
    margin-bottom: 0.35rem;
  }

  .skill-list a {
    font-size: 0.85rem;
  }

  .project-image {
    height: 180px;
  }

  .project-description {
    padding: 1.25rem;
    font-size: 0.9rem;
  }

  .contact-intro {
    font-size: 1rem;
  }

  footer {
    padding: 2rem 0;
  }

  footer p {
    font-size: 0.8rem;
  }
}
