/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Space Grotesk', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  
 /* Header Section */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 80px; /* Increased height for the navbar */
    display: flex;
    align-items: center; /* Ensures items are vertically centered */
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 120px; /* Default logo size */
    width: auto; /* Maintain aspect ratio */
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    transition: max-height 0.3s ease; /* Smooth toggle effect */
    overflow: hidden; /* Prevent items from spilling out when hidden */
  }
  
  .nav-links li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1rem; /* Adjust font size for better balance */
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #e60023;
  }
  
  /* Hamburger Menu */

.hamburger {
    display: none; /* Hide hamburger menu by default */
    cursor: pointer;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .hamburger .bar {
    width: 30px;
    height: 3px;
    background: black;
  }
  
  /* Carousel Section */
  .carousel {
    margin-top: 120px; /* Adjust to avoid overlap with navbar */
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1600px;
    height: 500px; /* Match video and image heights */
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  
  .carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
  }
  
  .carousel-slide img,
  .carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images and video fit without distortion */
  }
  
  /* Optional: Styling for the Video */
  .carousel-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Hero Section */
 * Hero Section */
 .hero {
   text-align: center;
   padding: 2rem;
   background-color: #f9f9f9; /* Optional: Light background for contrast */
 }
 
 .hero-text {
   margin-bottom: 2rem; /* Space between text and image */
   color: black;
 }
 
 .hero-text h1 {
   font-size: 3rem;
 }
 
 .hero-text p {
   margin-top: 1rem;
   font-size: 1.2rem;
 }
 
 /* Large Image Beneath Hero Text */
 .hero-image-link {
   display: block;
   margin: 0 auto;
   width: 100%;
   max-width: 1200px; /* Matches carousel width */
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .hero-image {
   width: 100%; /* Ensures the image spans the container */
   height: 300px; /* Matches carousel height */
   object-fit: cover; /* Ensures image scales without distortion */
 }
 
 .hero-image-link:hover {
   transform: scale(1.03); /* Slight zoom on hover */
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
 }
 
  
  /* Artists Section */
.artists {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .artists h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
  }
  
  .artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    margin: 0 auto; /* Center the artist card */
  }
  
  .artist-card img {
    width: 100%;
    border-radius: 8px;
  }
  
  .artist-card h3 {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    text-align: center;
  }

  /* News Section */
  .news {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .news h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
  }
  
  .news-list article {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  
  .news-list h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e60023;
  }
  
  /* Mailing List Section */
.mailing-list {
    text-align: center;
    padding: 4rem 1rem;
    background-color: #f9f9f9;
  }
  
  .mailing-list h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .mailing-list p {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #666;
  }
  
  .mailing-list form {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .form-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .form-row input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .subscribe-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 0.8rem;
    background-color: #e60023;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .subscribe-btn:hover {
    background-color: #c4001d;
  }
  
  .required-note,
  .privacy-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
  }
  
  .privacy-note {
    margin-top: 0.5rem;
  }
  
  /* Responsive Design for Mailing List */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column; /* Stack input fields vertically */
      gap: 1rem; /* Maintain consistent spacing */
    }
  
    .mailing-list h2 {
      font-size: 1.8rem; /* Slightly smaller heading for mobile */
    }
  
    .mailing-list p {
      font-size: 0.9rem; /* Adjust paragraph text size */
    }
  
    .form-row input {
      font-size: 0.9rem; /* Smaller font size for inputs */
      padding: 0.7rem; /* Adjust padding for mobile */
    }
  
    .subscribe-btn {
      font-size: 0.9rem; /* Smaller button font size */
      padding: 0.7rem; /* Adjust padding for button */
    }
  }
  
  /* Footer Section */
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2rem;
  }
  
  footer .social-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
  }
  
  footer .social-links a:hover {
    color: #ff4081;
  }
  
 
  
/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  
    .hamburger {
      display: flex;
    }
  }
    .carousel {
      height: 200px;
    }
  
    .carousel-caption {
      bottom: 8%;
      padding: 0.5rem 1rem;
    }
  
    .carousel-caption h2 {
      font-size: 1.2rem;
    }
  
    .carousel-caption p {
      font-size: 0.8rem;
    }
  
    .hero {
      height: 300px;
    }
  
    .hero-text h1 {
      font-size: 2rem;
    }
  
    .hero-text p {
      font-size: 1rem;
    }
    .hero-image {
        height: 200px; /* Smaller height for mobile */
      }
      .artists h2 {
        font-size: 1.8rem; /* Slightly smaller heading on mobile */
      }
    
      .artist-card {
        max-width: 250px; /* Reduce card size on smaller screens */
      }
    
      .artist-card h3 {
        font-size: 1rem;
      }
      .nav-links {
        display: none; /* Hide menu by default */
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff; /* Background for mobile menu */
        position: absolute;
        top: 80px; /* Position below the navbar */
        right: 0;
        width: 100%; /* Full width for mobile menu */
        padding: 1rem;
        border-top: 1px solid #ddd; /* Optional: border for separation */
      }
    
      .nav-links.show {
        display: flex; /* Show menu when toggled */
      }
    
      .hamburger {
        display: flex; /* Show hamburger menu on mobile */
      }
      .logo-img {
        height: 80px; /* Increased logo size for mobile */
        width: auto; /* Maintain aspect ratio */
      }