/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #111;
  }
  
  .logo img {
    width: 100px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #e2b878;
  }
  
  /* Portfolio Section */
  #portfolio {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #e2b878, #222);
    color: #fff;
  }
  
  #portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #portfolio p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .portfolio-item {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .portfolio-item:hover {
    transform: translateY(-10px);
  }
  
  .portfolio-item img {
    max-width: 100%;
    border-radius: 5px;
  }
  
  .portfolio-item-content h3 {
    font-size: 1.8rem;
    margin: 20px 0;
  }
  
  .portfolio-item-content p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
  }
  
  .portfolio-item .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #000;
    background-color: #e2b878;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .portfolio-item .btn:hover {
    background-color: #d9a45d;
  }
  
  /* Additional Information Section */
  #portfolio-details {
    padding: 80px 20px;
    text-align: center;
    background-color: #222; /* Matches the dark theme */
    color: #fff; /* Ensures text is readable on a dark background */
  }
  
  
  #portfolio-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #portfolio-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd; /* Light grey for better readability */
  }
  
  
  .details-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }
  
  .detail {
    max-width: 300px;
  }
  
  .detail h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .detail p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  #portfolio-details .btn {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 20px;
    color: #000;
    background-color: #e2b878;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  #portfolio-details .btn:hover {
    background-color: #d9a45d;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #fff;
    font-size: 0.9rem;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .portfolio-container {
      grid-template-columns: 1fr;
    }
  
    .details-container {
      flex-direction: column;
      align-items: center;
    }
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  
    .nav-links {
        flex-direction: column;
        margin-top: 10px;
    }
  
    .nav-links li {
        margin: 10px;
    }
  }
  