/* style.css - Mobile-first responsive styling with hamburger menu */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap');
 *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    padding-top: 70px;
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
  }
  
  .logo img {
    height: 40px;
    filter:brightness();
  }
  
  /* Menu icon (hamburger) */
  .menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Navigation bar */
  .navbar {
    display: flex;
    gap: 20px;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 10px;
    transition: background 0.3s ease;
  }
  
  .navbar a:hover {
    background-color: #333;
    border-radius: 4px;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .menu-icon {
      display: block;
    }
  
    .navbar {
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #111;
      width: 100%;
      display: none;
    }
  
    .navbar a {
      padding: 12px;
      border-top: 1px solid #333;
      width: 100%;
    }
  
    .navbar.show {
      display: flex;
    }
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  .site-footer {
    background-color: #111;
    color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 14px;
    flex-wrap: wrap;
  }
  .footer-left {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    text-align: right;
  }
  .footer-right a {
    color: #ccc;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-right a:hover {
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .site-footer {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
    .footer-right {
      text-align: center;
    }
  }
  