.header {
    background-color: #000; 
    padding: 10px 20px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
}


.container4 {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
}


.branding {
    display: flex;
    align-items: center; 
    gap: 10px;
}

.branding img {
    height: 50px; 
    width: auto; 
}

.text-content h1 {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Press Start 2P', cursive; 
    color: #fff; 
}

.text-content .tagline {
    margin: 0;
    font-size: 0.9rem;
    font-family: 'Press Start 2P', cursive; 
    color: #bbb; 
    font-style: normal; 
}

.nav-links {
    display: flex;
    gap: 20px; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.nav-link {
    text-decoration: none;
    font-size: 0.9rem; 
    font-family: 'Press Start 2P', cursive; 
    color: #fff; 
    transition: color 0.3s ease; 
}

.nav-link:hover {
    color: #1DB954; 
}

body {
    margin: 0;
    font-family: 'Cinzel', serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
  }
  
  .decorative-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
  }
  
  .decorative-header::before,
  .decorative-header::after {
    content: '';
    display: block;
    height: 2px;
    width: 100px;
    background: #f5f5f5;
    margin: 0 10px;
  }
  
  .decorative-header h1 {
    font-size: 2.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #f5c518;
  }
  
  .carousel-wrapper {
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  /* Carousel */
  .carousel {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 30px 0;
  }
  
  .carousel-card {
    flex: 0 0 auto;
    width: 250px;
    padding: 20px;
    background: #2e2e2e;
    border: 1px solid #444;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
    opacity: 0.85;
  }
  
  .carousel-card img {
    max-width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .carousel-card h2 {
    margin: 10px 0;
    color: #f5c518;
    font-size: 1.5rem;
  }
  
  .carousel-card p {
    color: #f5f5f5;
    font-size: 1rem;
    opacity: 0.8;
  }
  

  .carousel-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    opacity: 1;
  }
  
  .carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .carousel-wrapper {
   
  
  .decorative-footer {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .decorative-footer::before,
  .decorative-footer::after {
    content: '';
    display: block;
    height: 2px;
    width: 100px;
    background: #f5f5f5;
    margin: 0 10px;
  }
