/* === General Styles === */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* For smooth scroll offset (if you have a fixed header) */
  }
  body {
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
  }
  
  h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Bold weight for headings */
    color: #ffffff;
  }
  div.hover-info h3{
    color: white;
  }
  
  h3{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: black;
  }
  
  h2 {
    color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  p {
    color:#ffff
  }
  p.description{
    color: black;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  h1.title{
    color: black;
  }
  
  h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  /* === Navigation Bar === */
  header {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo img {
    width: 100px;
    height: auto;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center; /* Align menu items in a row */
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #007BFF;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  /* === Dropdown Menu === */
  .dropdown {
    position: relative;
  }
  
  .dropdown > a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
  }
  
  /* The dropdown menu */
  .dropdown-menu {
    display: none;  /* Hidden by default */
    position: absolute;
    top: 100%;  /* Position the dropdown menu below the Shop link */
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .dropdown-menu li {
    width: 200px; /* Optional: You can adjust the width of the dropdown */
  }
  
  /* Style for the dropdown menu items */
  .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.3s ease;
  }
  
  /* Hover effect on dropdown items */
  .dropdown-menu li a:hover {
    background-color: #f0f0f0;
    color: #007BFF;
  }
  
  /* Show the dropdown menu when hovering the parent */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  /* === Responsive Design === */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: white;
      flex-direction: column;
      width: 100%;
      align-items: center;
      gap: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
  
    .nav-links.active {
      transform: translateX(0);
      transition: transform 0.3s ease-in-out;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
  
    /* Adjust the dropdown menu for small screens */
    .dropdown-menu {
      position: static;
      width: 100%;
      box-shadow: none; /* Remove shadow for mobile */
      border: none; /* Remove border on mobile */
    }
  
    .nav-links {
      flex-direction: column; /* Stack the nav items on mobile */
      gap: 15px;
    }
  
    .dropdown-menu li a {
      padding: 12px 20px; /* Increase padding for better mobile tap area */
      text-align: center; /* Center align text for a cleaner look */
    }
  
    /* Make the dropdown appear under the Shop menu item on smaller screens */
    .dropdown {
      width: 100%;
    }
  
    .dropdown-menu li a {
      padding-left: 15px; /* Add padding for better spacing */
      padding-right: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .dropdown-menu li a {
      font-size: 0.9em; /* Slightly smaller font size for very small screens */
      padding: 10px 15px; /* Adjust padding for smaller screens */
    }
  }
  
  