/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    color: white;
    padding-top: 5rem;
  }
  
  .hero-content {
    max-width: 800px;
    margin-inline: auto;
  }
  
  .hero h1 {
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero h2 {
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-text {
    margin-bottom: 2rem;
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .btn-outline:hover {
    background: white;
    color: var(--dark);
  }
  
  /* ===== ABOUT SECTION ===== */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 400px;
    margin-inline: auto;
  }
  
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .skills-section {
    margin-top: 2rem;
  }
  
  .skills-section h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .skill-category {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .skill-category h4 {
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .skills-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .skills-list li::before {
    content: '•';
    color: var(--primary);
  }
  
  /* ===== INTERESTS SECTION ===== */
  .bg-light {
    background-color: var(--light-gray);
  }
  
  .interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .interest-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
  }
  
  .interest-card:hover {
    transform: translateY(-5px);
  }
  
  .interest-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .interest-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
  }
  
  /* ===== PROJECTS SECTION ===== */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .project-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
  
  .project-icon {
    width: 6rem;
    height: 6rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
  
  .project-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
  }
  
  .tech-stack {
    margin: 1rem 0;
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  .project-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
  }
  
  .btn-outline-primary:hover {
    background: var(--primary);
    color: white;
  }
  
  .btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
  }
  
  .btn-primary:hover {
    background: var(--primary-dark);
    color: white;
  }
  
  /* ===== MEDIA QUERIES ===== */
  @media (min-width: 768px) {
    .about-grid {
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
    }
    
    .about-image {
      margin-inline: 0;
    }
    
    .skills-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .hero {
      text-align: left;
    }
    
    .hero-buttons {
      justify-content: flex-start;
    }
    
    .hero-content {
      margin-inline: 0;
    }
  }