/* RESET & BASE */
* {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f7f7f7;
  }
  
  /* NAVIGATION */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 0 1rem;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
  }
  
  /* LEFT SIDE (LOGO/NAME) */
  .nav-left {
    display: flex;
    align-items: center;
  }
  .logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
  }
  
  /* HAMBURGER ICON - hidden on large screens */
  .hamburger {
    display: none;  /* We'll show on mobile via media query */
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }
  
  /* NAV LINKS (desktop default) */
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav li {
    margin: 0 1rem;
  }
  nav a {
    text-decoration: none;
    color: #333;
  }
  
  /* SOCIAL MEDIA ICONS */
  .social-media {
    display: flex;
    align-items: center;
  }
  .social-media a {
    margin-left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.4rem;
    width: 32px;
    height: 32px;
  }
  .social-media a:hover {
    color: #0077cc;
  }
  
  /* MAIN CONTAINER */
  main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  /* 3-COLUMN GRID ON DESKTOP */
  section {
    display: grid;
    grid-template-columns: 1fr minmax(600px, 600px) 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
  }
  
  /* TEXT IN MIDDLE COLUMN */
  .text {
    grid-column: 2;
  }
  
  /* IMAGE CAN GO LEFT/RIGHT */
  .image {
    text-align: center;
  }

  .me-img {
    max-width: 50%;
    align-items: center;
  }

  .image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Minor text styles */
  h1, h2 {
    margin-top: 0;
  }
  p {
    line-height: 1.6;
    margin: 0 0 1rem;
  }
  a {
    color: #0077cc;
  }
  
  /* MEDIA QUERY FOR MOBILE (<= 768px) */
  @media (max-width: 768px) {
    /* Show hamburger, hide desktop nav */
    .hamburger {
      display: block;
    }
  
    /* Hide the nav links by default on mobile */
    nav ul {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;  /* just below the navbar */
      left: 0;
      background-color: #f5f5f5;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 1rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    nav ul.open {
      display: flex;
    }

    .nav-item {
      border-radius: 8px;
      padding: 8px;
    }
  
    /* OPTIONAL: hide or reposition social icons on mobile */
    /* .social-media { display: none; } */
  
    /* Single-column for sections on mobile */
    section {
      display: block; /* or use grid-template-columns: 1fr; either is fine */
      padding: 1.5rem;
    }
    .image, .text {
      margin-bottom: 1rem;
    }
  }