/* General Reset */
:root {
    --primary-color: #ff4500;
    --text-color: #fff;
    --bg-color: #333;
    --border-radius: 8px;
  }



  
  /* Import custom graffiti font */
@font-face {
    font-family: 'Graffiti';
    src: url('assets/graffiti-font.woff') format('woff');
}
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  /* Basic Body Styling */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    cursor: url('cursor.png'), auto;
    justify-content: space-between;
    

  }

 /* Main content fills available space between header and footer */
main {
    flex-grow: 1;
  }
    
/* Desktop Header (Visible only on Desktop) */
.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #053afa;
    color: white;
    height: 100px;
    position: relative;
}

.desktop-header .logo img {
    width: 170px; /* Adjust logo size */
}

.desktop-header .nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.desktop-header .nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.desktop-header .nav-links ul li a:hover {
    color: #f4d03f;
}

.desktop-header .social-icons {
    display: flex;
    gap: 20px;
}

.desktop-header .social-icons a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.desktop-header .social-icons a:hover {
    color: #f4d03f;
}

/* Mobile Header (Visible only on Mobile) */
.mobile-header {
    display: none; /* Initially hidden */
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #002aff;
    color: white;
}

.mobile-header .logo img {
    width: 150px;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: none;
    background-color: #676869;
    padding: 0px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.mobile-active {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.mobile-dropdown .nav-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mobile-dropdown .nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 30px;
}

.mobile-dropdown .dropdown-social-icons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.dropdown-social-icons a{
    color: #fff;
    font-size: 30px;
    margin-top: 2rem;
}

/* Media Queries */
@media (max-width: 768px) {
    /* Show mobile header and hamburger menu on mobile */
    .mobile-header {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    /* Show the dropdown when hamburger menu is clicked */
    .mobile-dropdown {
        display: block;
    }

    /* Hide the desktop header on mobile */
    .desktop-header {
        display: none;
    }
}

@media (min-width: 769px) {
    /* Hide mobile header and dropdown on desktop */
    .mobile-header {
        display: none;
    }

    .mobile-dropdown {
        display: none;
    }
}
 

  
/* Hero Section */
.hero {
    background: url('img/6g.jpg') no-repeat center center/cover;
    height: 100vh;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden; /* Prevents overflow for smaller screens */
  }
  
/* Optional: Add a dark overlay for better text readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero h1 {
    font-size: 4vw;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeIn 2s ease-in-out;
    z-index: 2; /* Ensure the text is above the overlay */
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .hero .btn {
    background: #0b2be2;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.3s;
    animation: pulse 2s infinite;
    z-index: 20000; /* Keep button above the overlay */
  }
  
  .hero .btn:hover {
    background: #ffffff;
    color: rgb(17, 28, 231);
    transform: scale(1.1);
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  /* Mobile Optimization */
@media (max-width: 768px) {
    /* Hero section heading adjustment */
    .hero h1 {
      font-size: 10vw; /* Use viewport width for responsive font sizing */
      line-height: 2.2; /* Add line-height to make it more readable on small screens */
      margin: 0 10px; /* Add some margin for padding on mobile */
    }

    /* Button optimization */
    .hero .btn {
        position: relative; /* Ensure button is within the natural flow */
        padding: 12px 25px;
        font-size: 1rem;
        z-index: 20000; /* Ensure button stays above other elements */
        cursor: pointer;
      }

 /* Overlay (if any) needs lower z-index */
 .hero::before, .hero::after {
    z-index: 1; /* Set the overlay layers to lower z-index to avoid covering button */
  }

     /* Ensure hero section and content do not cover the button */
     .hero {
        position: relative;
        padding: 20px 15px;
        z-index: 1000; /* Ensure it's above the base layers */
      }

    /* Further optimization for smaller text */
    .hero p {
      font-size: 1.2rem; /* Smaller paragraph text for mobile */
      margin: 0 15px; /* Ensure text doesn't touch screen edges */
    }
}

/*********************************************************************** Music Section ****************************************************************/
  
  /* Featured Mix Section */
  .featured-mix {
    padding: 60px 20px;
    background: linear-gradient(#053afae6, rgb(255, 255, 255)), url('img/logowht.JPG') no-repeat center center/cover;
    color: var(--text-color);
    text-align: center;
    padding-top: 80px; /* Adjust this if necessary for spacing */
  }
  
  .featured-mix h2 {
    margin-bottom: 20px;
    font-size: 36px;
  }
  
  .featured-mix iframe {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  /* Mix Grid */
  .mix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background-color: #fff;
  }
  
  .mix-item {
    background-color:#0548f3;
    color: var(--text-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
  }
  
  .mix-item h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .mix-item iframe {
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
    /* General section styling */
    .subscribe-section {
        background: linear-gradient(rgb(255, 255, 255), rgba(3, 77, 235, 0.501));
        padding: 40px 20px;
        text-align: center;
        color: #fff;
      }
    
      .subscribe-section h2 {
        margin-bottom: 20px;
        font-size: 24px;
        color: #053afa;
      }
    
      /* Form layout */
      form {
        max-width: 400px;
        margin: 0 auto;
      }
    
      .form-group {
        margin-bottom: 15px;
      }
    
      .form-group input[type="text"],
      .form-group input[type="email"] {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        background-color: #053afa;
        color: #fff;
        outline: none;
        transition: background-color 0.3s ease;
      }
    
      .form-group input::placeholder {
        color: #ffffff;
      }
    
      .form-group input:focus {
        background-color: #444;
      }
    
      /* Checkbox group */
      .checkbox-group {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 20px;
        color: #fff;
        font-size: 14px;
      }
    
      .checkbox-group input[type="checkbox"] {
        margin-right: 10px;
        width: 18px;
        height: 18px;
      }
    
      /* Button styling */
      button {
        width: 100%;
        padding: 10px;
        background-color: #002aff;
        color: #fff;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
    
      button:hover {
        background-color: #817c7e;
      }
    
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .subscribe-section h2 {
          font-size: 20px;
        }
    
        .form-group input,
        button {
          font-size: 14px;
        }
    
        .checkbox-group {
          font-size: 12px;
        }
      }
 
  /******************************************************************** Events Section ****************************************************************/
 /* Hero Section with Parallax Effect */
.events-hero {
    height: 80vh;
    background: url('img/7g.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-attachment: fixed; /* Parallax effect */
}

.events-hero-content {
    animation: fadeIn 2s ease-in-out;}

.events-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.events-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-cta {
    background-color: #002aff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
}

.btn-cta:hover {
    background-color: #64666e;
}

/* Centered Search Bar */
.filter-container {
    display: flex;             /* Flexbox layout */
    justify-content: center;   /* Horizontally center the search bar */
    align-items: center;       /* Vertically center the search bar */
    margin-bottom: 2rem;
}

#search-bar {
    padding: 0.75rem;
    width: 80%;
    max-width: 500px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;  /* Center the text inside the search bar */
}

/* Parallax Off for Mobile */
@media (max-width: 768px) {
    .events-hero {
        background-attachment: scroll; /* Disable parallax on mobile */
        height: 40vh; /* Slightly reduce hero height for mobile */
    }

    .events-hero-content h1 {
        font-size: 2rem; /* Reduce font size for smaller screens */
    }

    .events-hero-content p {
        font-size: 1rem;
    }

    .btn-cta {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem; /* Smaller padding for better tap area */
    }
}

/* Events Section */
.events-section {
    padding: 2rem;
    background-color: #f9f9f9;
}

.events-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Event Card */
.event-card {
    background-color: #fff;
    margin: 1rem 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.event-card img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-right: 0.75rem;
}

.event-info {
    flex-grow: 1;
    font-size: 0.95rem;
}

.event-btn-tickets {
    background-color: #0739ff;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
}

.event-btn-tickets:hover {
    background-color: #716e6d;
}

/* Mobile Layout for Event Cards */
@media (max-width: 768px) {
    .event-cards-container {
        display: grid;
        grid-template-columns: 1fr; /* Full-width cards for mobile */
        gap: 20px;
        padding: 1rem;
    }

    .event-card {
        flex-direction: column; /* Stack the image and text */
        align-items: flex-start;
    }

    .event-card img {
        width: 100%; /* Make the image full width */
        height: auto;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .event-info {
        font-size: 0.9rem; /* Slightly smaller text on mobile */
    }

    .event-btn-tickets {
        width: 100%; /* Full-width button on mobile */
        margin-left: 0;
    }
}

/* Contact Section */
#contact {
    padding: 50px 0;
    text-align: center;
}

/* Responsive Button for Mobile */
@media (max-width: 768px) {
    /* Event Cards Container */
    .event-cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
        gap: 20px;
        padding: 20px;
    }

    /* Individual Event Card */
    .event-card {
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    /* Event Image */
    .event-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    /* Event Info */
    .event-info {
        padding: 15px;
        text-align: left;
    }

    .event-info h3 {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .event-info p {
        margin-bottom: 5px;
        font-size: 0.9rem;
        color: #555;
    }

    /* Event Button */
    .event-btn {
        text-align: center;
        padding: 10px;
        background-color: #002aff;
        color: white;
        text-decoration: none;
        font-size: 1rem;
        border-radius: 0 0 8px 8px;
        transition: background-color 0.3s ease;
    }

    .event-btn:hover {
        background-color: #6d6562;
    }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .event-btn {
        font-size: 0.85rem; /* Smaller font for very small screens */
        padding: 15px 20px; /* Increased padding for better tap area */
        width: 100%; /* Full width on small screens */
    }

    .event-info h3 {
        font-size: 0.9rem;
    }

    .event-info p {
        font-size: 0.8rem;
    }
}

/******************************************************************** booking Section ****************************************************************/
/* General Button Styles */
.dj-booking-cta, .dj-booking-cta-hero, .dj-booking-cta-card {
    display: inline-block;
    padding: 10px 20px;
    background-color: #002aff;
    color: white;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
    margin-top: 1rem;
    text-decoration: none;
}

.dj-booking-cta:hover, .dj-booking-cta-hero:hover, .dj-booking-cta-card:hover {
    transform: scale(1.05);
    background-color: #696363;
}

/* Hero Section */
.dj-booking-hero {
    height: 50vh;
    background: url('img/event2.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.dj-booking-hero-content {
    animation: fadeIn 2s ease-in-out;
}

.dj-booking-hero-content h1 {
    font-size: 2.5rem; /* Larger heading for large screens */
    margin-bottom: 1rem;
}

.dj-booking-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Responsive tweaks for hero section */
@media screen and (max-width: 768px) {
    .dj-booking-hero-content h1 {
        font-size: 2rem; /* Resize heading for tablets */
    }

    .dj-booking-hero-content p {
        font-size: 1rem; /* Resize paragraph text for tablets */
    }
}

@media screen and (max-width: 480px) {
    .dj-booking-hero-content h1 {
        font-size: 6vw; /* Further reduce font size for mobile */
    }

    .dj-booking-hero-content p {
        font-size: 4vw; /* Reduce paragraph size for mobile */
    }
}

/* Event Specialties */
.dj-booking-event-specialties {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
}

.dj-booking-event-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.dj-booking-event-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform: translateY(20px);
}

.dj-booking-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.dj-booking-event-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.dj-booking-event-card p {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows the text area to grow, pushing the button to the bottom */
}

.dj-booking-event-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #002aff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 20px auto 0; /* Centers the button horizontally */
}

.dj-booking-event-card a:hover {
    background-color: #7f7a7a;
}

/* Media Query for mobile responsiveness */
@media screen and (max-width: 768px) {
    .dj-booking-event-cards {
        flex-direction: column;
        align-items: center;
    }

    .dj-booking-event-card {
        width: 100%;
        max-width: 350px;
    }
}

/* General Section Styling */
.dj-booking-form-section {
    background-color: #002aff; /* Dark background for contrast */
    color: #fff; /* White text */
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .dj-booking-form-section h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #ffffff; /* Vibrant highlight color */
  }
  
  /* Form Input Styling */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between inputs */
  }
  
  label {
    text-align: left;
    font-size: 16px;
  }
  
  input, select, textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    width: 100%;
  }
  
  textarea {
    resize: none;
  }
  
  input::placeholder, textarea::placeholder {
    color: #827e7e;
  }
  
  input:focus, select:focus, textarea:focus {
    outline: none;
    background-color: #ffffff;
  }
  
  /* Button Styling */
  .dj-booking-cta-form {
    background-color: #8d8787;
    color: #002aff;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dj-booking-cta-form:hover {
    background-color: #ffffff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .dj-booking-form-section {
      padding: 20px 15px;
    }
  
    .dj-booking-form-section h2 {
      font-size: 24px;
    }
  
    input, select, textarea {
      font-size: 14px;
    }
  
    .dj-booking-cta-form {
      font-size: 16px;
    }
  }
  
/* Testimonials */
.dj-booking-testimonials {
    background: linear-gradient(rgb(255, 255, 255),rgba(3, 77, 235, 0.406));
    padding: 50px 60px;
    text-align: center;
}

.dj-booking-testimonial-carousel {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.dj-booking-testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive testimonial adjustments */
@media screen and (max-width: 768px) {
    .dj-booking-testimonial-carousel {
        flex-direction: column;
       
    }

    .dj-booking-testimonial-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }
}

/******************************************************************** contact Section ****************************************************************/
/* Contact Info Section */
.dj-contact-info {
    background: linear-gradient(#053afaa8, rgb(255, 255, 255)), url('img/logowht.JPG') no-repeat center center/cover;
    padding: 50px 20px;
    text-align: center;
}

.dj-contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.dj-contact-info h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.dj-contact-info p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #4b4646;
    text-shadow: 2px 2px 5px #fff;
}

.dj-contact-details {
    margin-bottom: 40px;
}

.dj-contact-details p {
    font-size: 1.1em;
}

.dj-contact-details a {
    color: #090dff;
    text-decoration: none;
}

.dj-contact-details a:hover {
    text-decoration: underline;
}

/* Social Media Links */
.dj-social-media {
    margin-bottom: 40px;
    text-align: center;
    background-color: #fff;
}

.dj-social-media h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #053afa;

}

.dj-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    font-size: 2rem;
  
    
}
.dj-social-links a {
    color: #002aff;
}

/* Video Section */
.dj-video-section {
    text-align: center;
    padding: 10px;
  }

  .dj-video-container {
    position: relative;
    width: 100%;
    max-width: 100%; /* Ensure it takes the full width of the parent container */
    height: auto;
  }

  video {
    width: 50%; /* Make the video width 100% of its container */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure video scales within its container */
    border-radius: 8px; /* Optional: Adds a little style */
  }

  @media (max-width: 768px) {
    .dj-video-container {
      padding: 0; /* Remove any extra padding on smaller screens */
    }
    
    video {
      border-radius: 0; /* Make the video edges square for full width display */
      width: 100%; /* Make the video width 100% of its container */
      margin-top: 6rem;
    }
  }



/******************************************************************** footer Section ****************************************************************/

/* Main content area */
.content {
    flex: 1;
}

/* Footer Styling */
.footer-booking {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    width: 100%;
    flex-shrink: 0; /* Prevent footer from shrinking */
    position: relative;
    bottom: 0;
}

.footer-social-links {
    margin-bottom: 15px;
}

.footer-social-links a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    color: #ff007f;
}

.footer-booking p {
    margin: 0;
    font-size: 14px;
    color: #bbb;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-social-links a {
        margin: 0 5px;
        font-size: 20px;
    }

    .footer-booking {
        font-size: 12px;
    }
}