/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .nav-links { 
    display: none;
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links.show {
    display: flex;
}
  .nav-links a {
    text-decoration: none;
    color: #000; /* Adjust color as needed */
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c9ac68; /* Highlight on hover */
    text-decoration: underline;
}
 #menu-toggle {
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 1000;
    }

    #sidebar {
      position: fixed;
      left: -250px;
      top: 0;
      width: 250px;
      height: 100%;
      background-color: #fff;
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
      transition: left 0.3s ease-in-out;
      z-index: 999;
    }

    #sidebar.active {
      left: 0;
    }

    #sidebar ul {
      list-style: none;
      padding: 20px;
      margin: 0;
    }

    #sidebar ul li {
      margin: 20px 0;
    }

    #sidebar ul li a {
      text-decoration: none;
      color: #333;
      font-size: 18px;
    }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #F5F1E7;
    color: #333;
  }
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background-color: #f3ebce;
    margin: 0;
  }
  
  .menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #000; /* Adjust color */
    margin: 4px 0;

  }
  
  h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Section Styles */
  section {
    padding: 2rem 1rem;
    margin: 1.5rem auto;
    max-width: 800px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Timeline Section */
  #timeline ul {
    list-style: none;
    padding: 0;
  }
  
  #timeline li {
    padding: 0.5rem 0;
    border-left: 4px solid #3498db;
    margin-left: 1.5rem;
    padding-left: 1rem;
  }
  
  #timeline li strong {
    color: #3498db;
    font-weight: bold;
  }
  
  /* Cast Section */
  #cast ul {
    list-style: none;
    padding: 0;
  }
  
  #cast li {
    margin-bottom: 1rem;
  }
  
  #cast li strong {
    font-weight: bold;
    color: #e74c3c;
  }
  
  /* FAQ Section */
  #faq ul {
    list-style: none;
    padding: 0;
  }
  
  #faq li {
    margin-bottom: 1.5rem;
  }
  
  #faq li strong {
    font-weight: bold;
    color: #9b59b6;
  }
  
  #faq p {
    margin-top: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
  }
  
  /* Additions for Accessibility and Aesthetic */
  section ul li {
    transition: background-color 0.3s ease;
  }
  
  section ul li:hover {
    background-color: #f0f8ff;
    border-radius: 4px;
  }
  
  section ul li p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #555;
  }
  
  /* Navigation */
  .responsive-nav {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    background: #f4f4f4;
    padding: 20px;
  }
  
  .hero-image {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
  }
  
  /* Intro Section */
  .intro {
    text-align: center;
    padding: 20px;
  }
  
  /* Artifacts Section */
  .recommendations-grid {
    padding: 20px;
    background-color: #f9f9f9;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px;
  }
  
  .product-card {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
  }

  .product-card img{
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .item-title {
    font-weight: bold;
    margin-top: 10px;
  }
  model-viewer {
    width: 100%;
    height: 400px;
    margin: auto;
    display: block;
}

  @media screen and (min-width: 768px) and (max-width: 992px) {
    .menu-icon {
      display: flex; /* Show hamburger */
    }
    .nav-links.active {
      display: flex; /* Show menu when active */
    }
  
    .nav-links li {
      padding: 10px 0;
      text-align: center;
    }
    
  /* Footer */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 20px;
    width: 80%;  
    margin-left: auto;  
    margin-right: auto;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);

