/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif; /* Main text font */
    background-color: #fff;
  }
  
  /* Navbar Container */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 86px; /* Adjusted for accurate height */
    padding: 0 2rem;
    background-color: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #444; /* Subtle border for separation */
    font-weight:normal!important;
  }
  
  /* Logo Section */
  .navbar-logo a {
    text-decoration: none;
    font-family: 'Cinzel','Cormorant Garamond', serif; /* Elegant logo font */
    line-height:normal;
    font-size: 30px;
    color: #fff;
    font-weight: 400;
  }
  
  /* Links Section */
  .navbar-links {
    display: flex;
    gap: 2.5rem; /* Adjusted spacing between links */
  }
  
  .navbar-links a {
    text-decoration: none;
    font-family: 'Montserrat','Arial','Roboto', Sans-Serif;
    font-size: 14px;
    /* font-weight: 600; */
    color: #fff;
    font-weight:100;
    text-transform: none;
    transition: color 0.3s ease;
  }
  
  .navbar-links a:hover {
    color: #9b9b9b; /* Highlight color */
  }
  
  /* Mobile Toggle Button */
  .navbar-toggle {
    display: none;
    flex-direction: column;
  }

  .bg-black{
    background-color:#000;
  }
  