
.background-image {
    background-image: url('livemp.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  

  .hero {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #000;
  }
  
 
  body {
    font-family: 'Arial', sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  

  .header {
    background-color: #000;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .nav-brand .logo {
    width: 120px;
    transition: transform 0.3s ease-in-out;
  }
  
  .nav-brand .logo:hover {
    transform: scale(1.1);
    cursor: pointer;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }
  
  .hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-link {
    color: #fff;
    padding: 10px 15px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .nav-link:hover {
    background-color: #f3c1d3;
    color: #000;
    border-radius: 5px;
  }
  
  
  .footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 20px;
  }
  
  .footer .footer-link {
    color: #f3c1d3;
    font-weight: bold;
  }
  
  .footer .footer-link:hover {
    text-decoration: underline;
  }
  

  .cta-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  
  .cta-button:hover {
    background-color: #f3c1d3;
    color: #000;
  }

  .box-section {
    background: #bb9dea;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .merch-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  

  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #000;
      position: absolute;
      top: 60px;
      right: 20px;
      width: 200px;
      border-radius: 8px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-link {
      padding: 15px;
      text-align: center;
    }
  }
  

  @media (max-width: 600px) {
    .box-section {
      padding: 15px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .cta-button {
      font-size: 0.9rem;
      padding: 8px 15px;
    }
  }
  