/* Theme-Aware Project Page Styles */

:root {
    --primary_color: #28e98c;
  }
  
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
    color: #999;
    background: #1f1f1f;
    line-height: 1.7;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    color: var(--primary_color);
    transition: color 0.3s;
  }
  
  a:hover {
    color: #fff;
  }
  
  .wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .hero {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border: 1px solid #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
  }
  
  .container {
    display: flex;
    border: 1px solid #333;
    background: #2b2b2b;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .sidebar {
    width: 250px;
    position: sticky;
    top: 20px;
    margin-right: 40px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .back-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--primary_color);
    color: #000;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    border: 2px solid var(--primary_color);
    margin-bottom: 10px;
  }
  
  .back-btn:hover {
    background: none;
    color: var(--primary_color);
  }
  
  .sidebar-box {
    border: 1px solid #444;
    background: #1f1f1f;
    padding: 15px;
    margin: 0;
    border-radius: 6px;
  }
  
  .sidebar-box h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
  }
  
  .sidebar-box ul li a {
    color: #ccc;
    display: block;
    padding: 6px 0;
    font-weight: 500;
    padding-left: 5px;
    border-left: 2px solid transparent;
  }
  
  .sidebar-box ul li a:hover {
    color: var(--primary_color);
    border-left: 2px solid var(--primary_color);
  }
  
  .sidebar-box ul li ul {
    margin-top: 5px;
    padding-left: 10px;
  }
  
  .sidebar-box ul li ul li a {
    font-size: 14px;
    padding-left: 12px;
    opacity: 0.85;
  }
  
  .content {
    flex: 1;
    color: #ccc;
    min-width: 0;
    padding-top: 3px;
  }
  
  .content h2 {
    margin-top: 0;
    border-bottom: 1px solid #444;
    padding-bottom: 8px;
    color: var(--primary_color);
    font-size: 24px;
  }
  
  .content h3 {
    margin-top: 30px;
    font-size: 18px;
    color: white;
  }
  
  .content p, .content li {
    margin-top: 10px;
    color: #bbb;
    font-size: 15px;
  }
  
  .content ul {
    padding-left: 20px;
  }
  
  .content ul li {
    padding-left: 10px;
    margin-bottom: 8px;
  }
  
  /* Responsive Layout */
  @media (max-width: 991px) {
    .container {
      flex-direction: column;
    }
  
    .sidebar {
      width: 100%;
      position: static;
      margin-right: 0;
      margin-bottom: 30px;
    }
  
    .sidebar-box {
      margin-bottom: 15px;
    }
  
    .content {
      width: 100%;
    }
  
    .content h2 {
      font-size: 20px;
    }
  
    .content h3 {
      font-size: 16px;
    }
  
    .content p, .content li {
      font-size: 14px;
    }
  }
  